/*
Theme Name: فروج الجميلي - Starter Theme
Theme URI: https://frouj-aljamele.com
Author: Golden Damascus
Author URI: https://goldendamascus.com
Description: قالب ووردبريس احترافي لمحل فروج الجميلي - تصميم Lovable محول لووردبريس مع دعم كامل للتخصيص من لوحة التحكم
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: frouj-starter
Tags: rtl-language-support, custom-logo, custom-menu, featured-images, theme-options, one-page

فروج الجميلي - أطيب دجاج في حلب
تصميم مبني على Lovable.dev ومحول لووردبريس
*/

/* Google Fonts - Cairo */
@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700;800&display=swap");

/* ===================================
   CSS Variables - نظام الألوان
   =================================== */
:root {
    /* الألوان الأساسية */
    --primary: hsl(0, 70%, 35%);
    --primary-light: hsl(0, 65%, 45%);
    --primary-dark: hsl(0, 75%, 25%);
    --primary-foreground: hsl(45, 100%, 95%);
    
    /* الألوان الثانوية - ذهبي */
    --secondary: hsl(45, 90%, 55%);
    --secondary-light: hsl(45, 100%, 70%);
    --secondary-dark: hsl(40, 85%, 40%);
    --secondary-foreground: hsl(0, 70%, 20%);
    
    /* ألوان الخلفية */
    --background: hsl(30, 20%, 97%);
    --foreground: hsl(0, 20%, 15%);
    --card: hsl(30, 30%, 98%);
    --card-foreground: hsl(0, 20%, 15%);
    --muted: hsl(30, 15%, 90%);
    --muted-foreground: hsl(0, 10%, 40%);
    
    /* ألوان إضافية */
    --border: hsl(30, 20%, 85%);
    --ring: hsl(0, 70%, 35%);
    --whatsapp: #25D366;
    --whatsapp-hover: #128C7E;
    
    /* الظلال */
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-gold: 0 10px 40px -10px hsla(45, 90%, 55%, 0.4);
    --shadow-crimson: 0 10px 40px -10px hsla(0, 70%, 35%, 0.4);
    
    /* الخطوط */
    --font-sans: 'Cairo', ui-sans-serif, system-ui, sans-serif;
    
    /* الحواف */
    --radius: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
}

/* ===================================
   Reset & Base Styles
   =================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    background-color: var(--background);
    color: var(--foreground);
    direction: rtl;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

/* ===================================
   Container
   =================================== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
    .container { padding: 0 2rem; }
}

/* ===================================
   Icons
   =================================== */
.icon,
svg.icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle;
}

.btn svg,
.btn .icon {
    width: 20px !important;
    height: 20px !important;
    flex-shrink: 0;
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius);
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--secondary-foreground);
}

.btn-secondary:hover {
    background: var(--secondary-dark);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary);
}

.btn-outline:hover {
    background: var(--secondary);
    color: var(--secondary-foreground);
}

.btn-whatsapp {
    background: var(--whatsapp) !important;
    color: white !important;
}

.btn-whatsapp:hover {
    background: var(--whatsapp-hover) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* ===================================
   Header - Top Bar
   =================================== */
.top-bar {
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

.top-bar-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-bar-item svg {
    width: 1rem;
    height: 1rem;
}

.top-bar-item a:hover {
    color: var(--secondary);
}

/* ===================================
   Header - Main Navigation
   =================================== */
.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    background: var(--card);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.header-main {
    padding: 1rem 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-full);
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    overflow: hidden;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-text h1 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.logo-text span {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

/* Desktop Navigation */
.main-nav {
    display: none;
}

@media (min-width: 768px) {
    .main-nav {
        display: flex;
        align-items: center;
        gap: 2rem;
    }
}

.main-nav a {
    font-weight: 500;
    color: var(--foreground);
    padding: 0.5rem 0;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.main-nav a:hover {
    color: var(--primary);
}

/* Header CTA Button */
.header-cta {
    display: none;
}

@media (min-width: 768px) {
    .header-cta {
        display: block;
    }
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--foreground);
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    padding: 1rem 0;
    border-top: 1px solid var(--border);
}

.mobile-nav.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.mobile-nav a {
    display: block;
    padding: 0.75rem 0;
    font-weight: 500;
    color: var(--foreground);
}

.mobile-nav a:hover {
    color: var(--primary);
}

.mobile-nav .btn {
    width: 100%;
    margin-top: 1rem;
    justify-content: center;
}

.mobile-nav .btn svg,
.mobile-nav a svg {
    width: 20px !important;
    height: 20px !important;
    flex-shrink: 0;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 8rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, 
        hsla(0, 75%, 25%, 0.95), 
        hsla(0, 70%, 35%, 0.8), 
        hsla(0, 75%, 25%, 0.95)
    );
}

/* Decorative Elements */
.hero-decor {
    position: absolute;
    border-radius: var(--radius-full);
    background: hsla(45, 90%, 55%, 0.2);
    filter: blur(60px);
    animation: float 6s ease-in-out infinite;
}

.hero-decor-1 {
    top: 5rem;
    left: 2.5rem;
    width: 8rem;
    height: 8rem;
}

.hero-decor-2 {
    bottom: 5rem;
    right: 2.5rem;
    width: 10rem;
    height: 10rem;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 56rem;
    margin: 0 auto;
    padding: 0 1rem;
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: hsla(45, 90%, 55%, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid hsla(45, 90%, 55%, 0.3);
    border-radius: var(--radius-full);
    padding: 0.5rem 1.5rem;
    margin-bottom: 2rem;
}

.hero-badge-emoji {
    font-size: 1.5rem;
}

.hero-badge-text {
    color: var(--secondary);
    font-weight: 500;
}

/* Hero Title */
.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-foreground);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-title span {
    color: var(--secondary);
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 5rem;
    }
}

/* Hero Description */
.hero-desc {
    font-size: 1.25rem;
    color: hsla(45, 100%, 95%, 0.9);
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

@media (min-width: 768px) {
    .hero-desc {
        font-size: 1.5rem;
    }
}

/* Hero Features */
.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: hsla(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-full);
    padding: 0.5rem 1rem;
}

.hero-feature svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--secondary);
}

.hero-feature span {
    color: var(--primary-foreground);
    font-weight: 500;
}

/* Hero Buttons */
.hero-btns {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .hero-btns {
        flex-direction: row;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator-inner {
    width: 2rem;
    height: 3rem;
    border: 2px solid hsla(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 0.5rem;
}

.scroll-indicator-dot {
    width: 0.375rem;
    height: 0.75rem;
    background: var(--secondary);
    border-radius: var(--radius-full);
    animation: pulse 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ===================================
   Section Base Styles
   =================================== */
.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    color: var(--secondary);
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.section-title span {
    color: var(--primary);
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-desc {
    color: var(--muted-foreground);
    font-size: 1.125rem;
    max-width: 42rem;
    margin: 0 auto;
}

/* ===================================
   Products Section
   =================================== */
.products {
    background: var(--background);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Product Card */
.product-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.product-card:hover {
    border-color: hsla(0, 70%, 35%, 0.5);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.product-icon {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1rem;
    background: hsla(0, 70%, 35%, 0.1);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: transform 0.3s ease;
}

.product-card:hover .product-icon {
    transform: scale(1.1);
}

.product-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.product-desc {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.product-badge {
    display: inline-block;
    background: hsla(45, 90%, 55%, 0.2);
    color: var(--secondary-foreground);
    padding: 0.25rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.product-btn {
    width: 100%;
}

/* ===================================
   Marinades Section
   =================================== */
.marinades {
    background: var(--muted);
}

.marinades-legend {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.marinades-legend span {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.spice-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid;
}

.spice-mild {
    background: hsl(120, 40%, 90%);
    color: hsl(120, 60%, 30%);
    border-color: hsl(120, 40%, 80%);
}

.spice-medium {
    background: hsl(45, 90%, 90%);
    color: hsl(45, 80%, 30%);
    border-color: hsl(45, 80%, 70%);
}

.spice-hot {
    background: hsl(25, 90%, 90%);
    color: hsl(25, 80%, 35%);
    border-color: hsl(25, 80%, 70%);
}

.spice-extra-hot {
    background: hsl(0, 80%, 92%);
    color: hsl(0, 70%, 40%);
    border-color: hsl(0, 70%, 80%);
}

.marinades-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .marinades-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .marinades-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Marinade Card */
.marinade-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.marinade-card:hover {
    border-color: hsla(45, 90%, 55%, 0.5);
    box-shadow: var(--shadow-lg);
}

.marinade-inner {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.marinade-icon {
    width: 4rem;
    height: 4rem;
    flex-shrink: 0;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    transition: transform 0.3s ease;
}

.marinade-card:hover .marinade-icon {
    transform: scale(1.1);
}

.marinade-icon.bg-amber { background: hsla(45, 90%, 50%, 0.1); }
.marinade-icon.bg-red { background: hsla(0, 80%, 50%, 0.1); }
.marinade-icon.bg-yellow { background: hsla(50, 100%, 50%, 0.1); }
.marinade-icon.bg-orange { background: hsla(25, 90%, 50%, 0.1); }
.marinade-icon.bg-green { background: hsla(120, 60%, 40%, 0.1); }

.marinade-content {
    flex: 1;
}

.marinade-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.marinade-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
}

.marinade-desc {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.marinade-btn {
    border: 1px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.marinade-btn:hover {
    background: var(--primary);
    color: var(--primary-foreground);
}

/* ===================================
   Features Section
   =================================== */
.features {
    background: var(--primary);
    color: var(--primary-foreground);
    position: relative;
    overflow: hidden;
}

.features-decor {
    position: absolute;
    border-radius: var(--radius-full);
    background: hsla(45, 90%, 55%, 0.1);
    filter: blur(60px);
}

.features-decor-1 {
    top: 0;
    left: 0;
    width: 16rem;
    height: 16rem;
}

.features-decor-2 {
    bottom: 0;
    right: 0;
    width: 20rem;
    height: 20rem;
}

.features .section-label {
    color: var(--secondary);
}

.features .section-title {
    color: var(--primary-foreground);
}

.features .section-title span {
    color: var(--secondary);
}

.features .section-desc {
    color: hsla(45, 100%, 95%, 0.8);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Feature Card */
.feature-card {
    text-align: center;
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    background: hsla(255, 255, 255, 0.05);
    border: 1px solid hsla(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: hsla(255, 255, 255, 0.1);
    border-color: hsla(45, 90%, 55%, 0.3);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    background: hsla(45, 90%, 55%, 0.2);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon svg {
    width: 2rem;
    height: 2rem;
    color: var(--secondary);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.feature-desc {
    color: hsla(45, 100%, 95%, 0.7);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* ===================================
   Contact Section
   =================================== */
.contact {
    background: var(--background);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Contact Info Cards */
.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: border-color 0.3s ease;
}

.contact-card:hover {
    border-color: hsla(0, 70%, 35%, 0.3);
}

.contact-card-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 3.5rem;
    height: 3.5rem;
    flex-shrink: 0;
    background: hsla(0, 70%, 35%, 0.1);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--primary);
}

.contact-info {
    flex: 1;
}

.contact-label {
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.contact-value {
    color: var(--muted-foreground);
}

/* WhatsApp CTA Box */
.whatsapp-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
}

.whatsapp-cta-icon {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1.5rem;
    background: var(--whatsapp);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-cta-icon svg {
    width: 2.5rem;
    height: 2.5rem;
    color: white;
}

.whatsapp-cta h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-foreground);
    margin-bottom: 1rem;
}

.whatsapp-cta p {
    color: hsla(45, 100%, 95%, 0.8);
    margin-bottom: 1.5rem;
    max-width: 20rem;
    margin-left: auto;
    margin-right: auto;
}

/* ===================================
   Footer
   =================================== */
.site-footer {
    background: var(--foreground);
    color: var(--background);
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Footer Brand */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-brand-icon {
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-full);
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.footer-brand h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-brand span {
    font-size: 0.875rem;
    opacity: 0.6;
}

.footer-section p {
    color: hsla(255, 255, 255, 0.7);
    font-size: 0.875rem;
    line-height: 1.8;
}

/* Footer Links */
.footer-section h4 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: hsla(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary);
}

/* Footer Contact */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: hsla(255, 255, 255, 0.7);
}

.footer-contact-item svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--secondary);
    flex-shrink: 0;
}

.footer-contact-item a:hover {
    color: var(--secondary);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid hsla(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: hsla(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* ===================================
   WhatsApp Float Button
   =================================== */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 999;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    background: var(--whatsapp);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.whatsapp-float a:hover {
    background: var(--whatsapp-hover);
    transform: scale(1.1);
}

.whatsapp-float svg {
    width: 1.75rem;
    height: 1.75rem;
    color: white;
}

/* Pulse animation */
.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-full);
    background: var(--whatsapp);
    animation: whatsapp-pulse 2s infinite;
    z-index: -1;
}

@keyframes whatsapp-pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* ===================================
   Utilities
   =================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
