/* ===================================
   RAMI INTERNATIONAL - Design System
   =================================== */

:root {
    /* Colors */
    --background: hsl(40 20% 98%);
    --foreground: hsl(150 10% 15%);
    --card: hsl(0 0% 100%);
    --card-foreground: hsl(150 10% 15%);
    --primary: hsl(145 45% 28%);
    --primary-foreground: hsl(40 20% 98%);
    --secondary: hsl(40 60% 50%);
    --muted: hsl(40 15% 92%);
    --muted-foreground: hsl(150 8% 45%);
    --border: hsl(40 15% 85%);
    --gold: hsl(40 75% 55%);
    --gold-light: hsl(40 80% 70%);
    --green-dark: hsl(145 50% 20%);
    --charcoal: hsl(150 10% 20%);
    --cream: hsl(40 30% 96%);

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, hsl(145 45% 28%) 0%, hsl(145 50% 20%) 90%, hsl(40 60% 50% / 0.1) 100%);
    --gradient-gold: linear-gradient(135deg, hsl(40 75% 55%) 0%, hsl(40 80% 65%) 100%);

    /* Shadows */
    --shadow-sm: 0 2px 8px hsl(150 10% 15% / 0.06);
    --shadow-md: 0 4px 20px hsl(150 10% 15% / 0.1);
    --shadow-lg: 0 8px 40px hsl(150 10% 15% / 0.12);
    --shadow-gold: 0 4px 30px hsl(40 75% 55% / 0.3);

    /* Spacing */
    --container-max: 1280px;
    --section-padding: 5rem;
}

/* ===================================
   Reset & Base
   =================================== */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

button {
    cursor: pointer;
    font-family: inherit;
}

/* ===================================
   Utilities
   =================================== */

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-gradient {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-primary {
    color: var(--primary);
}

/* ===================================
   Animations
   =================================== */

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes blob {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.5; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }

.float-animation {
    animation: float 6s ease-in-out infinite;
}

/* ===================================
   Buttons
   =================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.75rem;
    border: none;
    transition: all 0.3s ease;
}

.btn .icon {
    width: 1.25rem;
    height: 1.25rem;
}

.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
}

.btn-primary:hover {
    background: hsl(145 45% 35%);
    transform: translateY(-2px);
}

.btn-gold {
    background: var(--gold);
    color: var(--charcoal);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.btn-secondary {
    background: hsl(255 255% 255% / 0.05);
    color: var(--primary-foreground);
    border: 1px solid hsl(255 255% 255% / 0.1);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: hsl(255 255% 255% / 0.2);
}

.btn-outline {
   background: hsl(90, 78%, 36%);   /* softer green */
    color: hsl(145 40% 20%); 
    color: var(--primary-foreground);
    border: 1px solid hsl(255 255% 255% / 0.2);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: hsl(255 255% 255% / 0.2);
}

.btn-full {
    width: 100%;
}

/* ===================================
   Section Headers
   =================================== */

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: hsl(145 45% 28% / 0.1);
    border-radius: 9999px;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
}

.section-title {
    font-size: 1.875rem;
    margin-bottom: 0.75rem;
}

.section-title-lg {
    font-size: clamp(1.875rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 600px;
    margin: 0 auto;
}

/* ===================================
   Hero Section
   =================================== */

.hero {
    position: relative;
    min-height: 100vh;
    background: var(--gradient-hero);
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg-elements {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.2;
}

.bg-blob-1 {
    width: 24rem;
    height: 24rem;
    background: hsl(40 75% 55% / 0.1);
    top: -10rem;
    right: -10rem;
    animation: blob 8s ease-in-out infinite;
}

.bg-blob-2 {
    width: 18rem;
    height: 18rem;
     background: hsl(40 65% 55% / 0.08);
    top: 50%;
    left: -5rem;
    animation: blob 6s ease-in-out infinite reverse;
}

.bg-blob-3 {
    width: 16rem;
    height: 16rem;
    background: hsl(255 255% 255% / 0.05);
    bottom: 5rem;
    right: 25%;
    animation: float 10s ease-in-out infinite;
}

.grid-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-container {
    position: relative;
    z-index: 10;
    padding-top: 2rem;
    padding-bottom: 4rem;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(30, 60, 40, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo {
    width: 3rem;
    height: 3rem;
    background: var(--gold);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.nav-title {
    font-size: 1.25rem;
    color: var(--primary-foreground);
}

.nav-subtitle {
    font-size: 0.75rem;
    color: hsl(255 255% 255% / 0.7);
    letter-spacing: 0.15em;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: hsl(255 255% 255% / 0.8);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-foreground);
}

.nav-btn {
    padding: 0.625rem 1.25rem;
    background: var(--gold);
    color: var(--charcoal);
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: var(--gold-light);
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--primary-foreground);
    transition: 0.3s;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
    .mobile-menu-btn {
        display: none;
    }
}

/* Hero Grid */
.hero-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.hero-content {
    color: var(--primary-foreground);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: hsl(255 255% 255% / 0.05);
    border-radius: 9999px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    font-size: 0.875rem;
    font-weight: 500;
}

.pulse-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: clamp(2.25rem, 6vw, 3.75rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.125rem;
    color: hsl(255 255% 255% / 0.8);
    margin-bottom: 2rem;
    max-width: 36rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-value {
    font-size: 1.875rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: var(--gold);
}

.stat-label {
    font-size: 0.875rem;
    color: hsl(255 255% 255% / 0.7);
}

.stat-divider {
    width: 1px;
    background: hsl(255 255% 255% / 0.2);
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.visual-card {
    position: relative;
    background: hsl(255 255% 255% / 0.02);
    border-radius: 1.5rem;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid hsl(255 255% 255% / 0.03);
}

.visual-badge {
    position: absolute;
    top: -1rem;
    right: -1rem;
    padding: 0.5rem 1rem;
    background: var(--gold);
    color: var(--charcoal);
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: 0.5rem;
}

.visual-content {
    aspect-ratio: 1;
    background: linear-gradient(135deg, hsl(255 255% 255% / 0.1) 0%, transparent 100%);
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.visual-icon {
    font-size: 6rem;
    margin-bottom: 1rem;
}

.visual-text {
    color: hsl(255 255% 255% / 0.6);
    font-weight: 500;
}

.visual-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
    justify-content: center;
}

.pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border-radius: 9999px;
    color: hsl(255 255% 255% / 0.8);
    font-size: 0.875rem;
    flex: 0 1 calc(50% - 0.5rem);
}

.pill:nth-child(3) {
    margin: 0 auto;
}

.pill-icon {
    width: 1rem;
    height: 1rem;
    color: hsl(255 255% 255% / 0.8);
}

@media (min-width: 768px) {
    .pill {
        flex: 0 1 auto;
    }
    
    .pill:nth-child(3) {
        margin: 0;
    }
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.hero-wave svg {
    width: 100%;
    display: block;
}

/* ===================================
   Trust Badges
   =================================== */

.trust-badges {
    padding: var(--section-padding) 0;
    background: var(--background);
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .badges-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.badge-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: var(--card);
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    border: 1px solid hsl(40 15% 85% / 0.5);
    transition: all 0.3s ease;
}

.badge-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.badge-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: hsl(145 45% 28% / 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.badge-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--primary);
}

.badge-value {
    font-size: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.badge-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    text-align: center;
    line-height: 1.3;
}

/* ===================================
   Products Section
   =================================== */

.products {
    padding: var(--section-padding) 0;
    background: var(--cream);
}

.products-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.product-card {
    position: relative;
    background: var(--card);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
}

.product-featured {
    background: var(--primary);
    color: var(--primary-foreground);
    transform: scale(1.02);
    border: none;
}

.featured-badge {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.5rem 1rem;
   background: hsl(42, 73%, 53%); /* softer gold */
    color: hsl(145 40% 18%);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 0 0 0 0.75rem;
}

.product-content {
    padding: 2rem;
}

.product-header {
    margin-bottom: 1.5rem;
}

.product-model {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: hsl(145 45% 28% / 0.1);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 9999px;
    margin-bottom: 0.75rem;
}

.product-featured .product-model {
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(6px);
    font-weight: 600;
    letter-spacing: 0.4px;
}

.product-title {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.product-subtitle {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.product-featured .product-subtitle {
    color: hsl(255 255% 255% / 0.7);
}

.product-capacity {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.product-featured .product-capacity {
    border-color: hsl(255 255% 255% / 0.2);
}

.capacity-value {
    font-size: 2.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}

.capacity-unit {
    font-size: 1.125rem;
    color: var(--muted-foreground);
}

.product-featured .capacity-unit {
    color: hsl(255 255% 255% / 0.7);
}

.product-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.spec {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--muted);
    border-radius: 0.75rem;
}

.product-featured .spec {
     background: hsl(145 45% 35%);
}

.spec-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--secondary);
}

.spec-icon.gold {
    color: var(--gold);
}

.spec-label {
    display: block;
    font-size: 0.75rem;
    opacity: 0.7;
}

.spec-value {
    display: block;
    font-weight: 600;
}

.product-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-featured .product-description {
    color: hsl(255 255% 255% / 0.8);
}

.product-features {
    margin-bottom: 1.5rem;
}

.product-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.check-icon {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.check-icon::after {
    content: '✓';
    color: white;
    font-size: 0.75rem;
}

.check-icon.gold {
    background: var(--gold);
}

.check-icon.gold::after {
    color: var(--charcoal);
}

.product-best-for {
    padding: 1rem;
    background: var(--muted);
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
}

.product-best-for.featured {
     background: hsl(145 45% 35%);
}

.best-for-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
}

.best-for-header svg {
    width: 1rem;
    height: 1rem;
    color: var(--secondary);
}

.product-featured .best-for-header svg {
    color: var(--gold);
}

.product-best-for ul {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.product-featured .product-best-for ul {
    color: hsl(255 255% 255% / 0.8);
}

.product-best-for li {
    margin-bottom: 0.25rem;
}

/* ===================================
   Comparison Table
   =================================== */

.comparison {
    padding: var(--section-padding) 0;
    background: var(--background);
}

.table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    background: var(--card);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border-collapse: collapse;
    border: 1px solid var(--border);
}

.comparison-table th,
.comparison-table td {
    padding: 1rem 1.25rem;
    text-align: center;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
}

.comparison-table thead tr {
    background: var(--primary);
    color: var(--primary-foreground);
}

.th-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.th-capacity {
    font-size: 1.125rem;
    color: var(--gold);
}

.th-model {
    font-size: 0.875rem;
    opacity: 0.7;
}

.th-featured {
    background: var(--gold) !important;
    color: var(--charcoal) !important;
}

.th-featured .th-capacity {
    color: var(--charcoal);
}

.comparison-table tbody tr {
    border-top: 1px solid var(--border);
}

.comparison-table tbody tr.alt {
    background: hsl(40 15% 92% / 0.3);
}

.comparison-table td {
    color: var(--muted-foreground);
}

.td-featured {
    background: hsl(40 75% 55% / 0.05);
    color: var(--foreground) !important;
}

.icon-check {
    color: var(--primary);
    font-weight: bold;
}

.icon-x {
    color: var(--muted-foreground);
}

/* ===================================
   Features Section
   =================================== */

.features {
    padding: var(--section-padding) 0;
    background: var(--cream);
}

.features-grid {
    display: grid;
    gap: 2rem;
}

@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 {
    padding: 2rem;
    background: var(--card);
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    border: 1px solid hsl(40 15% 85% / 0.5);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    transform: scale(1.1);
}

.feature-card:hover .feature-icon svg {
    color: var(--primary-foreground);
}

.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: hsl(145 45% 28% / 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--primary);
    transition: color 0.3s ease;
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-description {
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* ===================================
   CTA Section
   =================================== */

.cta {
    position: relative;
    padding: var(--section-padding) 0;
    background: var(--gradient-hero);
    overflow: hidden;
}

.cta-bg-elements {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.cta .bg-blob-1 {
    width: 24rem;
    height: 24rem;
    background: hsl(40 75% 55% / 0.1);
    top: -10rem;
    right: -10rem;
}

.cta .bg-blob-2 {
    width: 18rem;
    height: 18rem;
    background: hsl(40 80% 70% / 0.1);
    bottom: 5rem;
    left: -5rem;
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 48rem;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(1.875rem, 5vw, 3rem);
    color: var(--primary-foreground);
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.125rem;
    color: hsl(255 255% 255% / 0.8);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

.cta-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    color: hsl(255 255% 255% / 0.8);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-icon {
    font-size: 1.5rem;
}

/* ===================================
   Footer
   =================================== */

.footer {
    padding: 3rem 0;
    background: var(--charcoal);
    color: var(--primary-foreground);
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo h3 {
    font-size: 1.25rem;
}

.footer-logo p {
    font-size: 0.875rem;
    color: hsl(255 255% 255% / 0.7);
}

.footer-description {
    color: hsl(255 255% 255% / 0.7);
    max-width: 28rem;
    line-height: 1.6;
}

.footer-links h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: hsl(255 255% 255% / 0.7);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid hsl(255 255% 255% / 0.1);
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    color: hsl(255 255% 255% / 0.5);
    font-size: 0.875rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background: hsl(255 255% 255% / 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gold);
    transform: scale(1.1);
}
/* ===================================
   Performance Optimized Classes
   =================================== */

/* Navbar scrolled state */
#navbar.scrolled {
    background: rgba(30, 60, 40, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.75rem 0;
    transition: all 0.3s ease;
}

/* Button hover states */
.btn.btn-hover {
    transform: translateY(-2px);
    transition: transform 0.2s ease;
}

.btn.btn-active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
}

/* Card hover states */
.card-hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}