/* 
   The Golden Enterprise - Main Public CSS
   Design System: Soft UI Evolution
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

/* CSS Variables for Light / Dark Mode */
:root {
    /* Colors - Light Mode (Default) */
    --color-primary: #D4AF37; /* Premium Gold */
    --color-primary-fore: #000000; /* Dark text on gold */
    --color-secondary: #C5A017; /* Deeper gold */
    --color-background: #FFFFFF; /* White */
    --color-foreground: #111111; /* Black text */
    --color-card: #FFFFFF;
    --color-muted: #F8F8F8;
    --color-muted-fore: #666666;
    --color-border: #E5E5E5;
    --color-accent: #000000; /* Black CTA */
    --color-accent-fore: #FFFFFF;
    --color-gold: #D4AF37;
    --color-destructive: #EF4444;
    
    /* Layout & Styling */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    
    /* Shadows - Soft UI Evolution */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    
    /* Typography */
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-normal: 250ms ease-in-out;
    --transition-bounce: 400ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dark-mode {
    /* Colors - Dark Mode */
    --color-primary: #D4AF37;
    --color-primary-fore: #000000;
    --color-secondary: #E5C158; /* Lighter gold for dark mode contrast */
    --color-background: #000000; /* Deep Black */
    --color-foreground: #FFFFFF; /* White Text */
    --color-card: #111111; /* Very dark gray/black */
    --color-muted: #222222;
    --color-muted-fore: #AAAAAA;
    --color-border: #333333;
    --color-accent: #FFFFFF;
    --color-accent-fore: #000000;
    --color-gold: #D4AF37;
    
    --shadow-md: 0 4px 6px -1px rgba(212, 175, 55, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(212, 175, 55, 0.15);
}

/* Base Reset & Typography */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-background);
    color: var(--color-foreground);
    line-height: 1.6;
    transition: background-color var(--transition-normal), color var(--transition-normal);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5em;
    color: var(--color-foreground);
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

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

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

/* Section Spacing */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 48px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--color-primary);
}

.section-title p {
    color: var(--color-muted-fore);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid System */
.grid {
    display: grid;
    gap: 24px;
}
.grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }

.col-span-1 { grid-column: span 1; }
.col-span-2 { grid-column: span 2; }
.col-span-3 { grid-column: span 3; }
.col-span-4 { grid-column: span 4; }

@media (max-width: 1024px) {
    .grid-cols-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-cols-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
    /* Stack elements early on tablets to avoid squeezing */
    .grid-cols-2 { grid-template-columns: repeat(1, 1fr); }
    .col-span-2 { grid-column: span 1 !important; }
}

@media (max-width: 768px) {
    .grid-cols-4, .grid-cols-3, .grid-cols-2 { grid-template-columns: repeat(1, 1fr); }
    .col-span-2, .col-span-3, .col-span-4 { grid-column: span 1 !important; }
    section { padding: 60px 0; }
    .section-title h2 { font-size: 2rem; }
}

/* Components - Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
    outline: none;
    gap: 8px;
}

.btn:focus-visible {
    box-shadow: 0 0 0 3px var(--color-muted), 0 0 0 5px var(--color-primary);
}

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

.btn-accent {
    background-color: var(--color-accent);
    color: var(--color-accent-fore);
    box-shadow: var(--shadow-md);
}
.btn-accent:hover {
    background-color: #ea580c;
    color: var(--color-accent-fore);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

/* Components - Cards */
.card {
    background-color: var(--color-card);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), background-color var(--transition-normal), border-color var(--transition-normal);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Header & Top Nav */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    transition: background-color var(--transition-normal), border-color var(--transition-normal);
}

.dark-mode .header {
    background-color: rgba(15, 23, 42, 0.9);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary);
}
.logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--color-foreground);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.theme-toggle {
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-foreground);
    border-radius: var(--radius-full);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.theme-toggle:hover {
    background-color: var(--color-muted);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 70px; /* Offset for header */
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
    opacity: 0.1;
    border-radius: 50%;
    z-index: -1;
}

.dark-mode .hero::before {
    opacity: 0.15;
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--color-primary);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero h1 span {
    color: var(--color-primary);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--color-muted-fore);
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.hero-image-wrapper {
    position: relative;
    z-index: 5;
}

.hero-image {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.hero-floating-card {
    position: absolute;
    background: var(--color-card);
    padding: 16px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid var(--color-border);
    animation: float 6s ease-in-out infinite;
}

.float-1 { bottom: -20px; left: -20px; animation-delay: 0s; }
.float-2 { top: 40px; right: -20px; animation-delay: 2s; }

.floating-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(0, 0, 0, 0.1);
    color: var(--color-accent);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.floating-text h4 {
    margin: 0;
    font-size: 1.125rem;
}
.floating-text p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--color-muted-fore);
}

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

@media (max-width: 768px) {
    .hero {
        text-align: center;
        padding-top: 120px;
    }
    
    .hero-content h1 {
        font-size: 2.25rem;
    }
    
    .hero-floating-card {
        position: relative;
        left: 0 !important;
        right: 0 !important;
        top: 0 !important;
        bottom: 0 !important;
        margin: 15px auto;
        width: 100%;
        max-width: 320px;
        animation: slide-up 0.5s ease;
    }
}
@media (max-width: 992px) {
    .hero {
        text-align: center;
        padding-top: 100px;
    }
    .hero .grid {
        grid-template-columns: 1fr;
    }
    .hero-content {
        margin: 0 auto;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-floating-card {
        display: none;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
}

/* Service Cards */
.service-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--color-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 24px;
    transition: all var(--transition-normal);
}

.card:hover .service-icon {
    background-color: var(--color-primary);
    color: var(--color-primary-fore);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--color-muted-fore);
    margin-bottom: 20px;
}

.service-link {
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Jobs Section */
.job-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}
.job-type-badge {
    background-color: rgba(0, 0, 0, 0.1);
    color: var(--color-accent);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.job-title {
    font-size: 1.25rem;
    margin-bottom: 4px;
}
.job-company {
    color: var(--color-muted-fore);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
}
.job-details {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
    font-size: 0.875rem;
    color: var(--color-foreground);
}
.job-detail-item {
    display: flex;
    align-items: center;
    gap: 6px;
}
.job-card .btn {
    margin-top: auto;
    width: 100%;
}

/* Footer & WhatsApp */
footer {
    background-color: #0F172A;
    color: #F8FAFC;
    padding: 80px 0 40px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-logo {
    color: white;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.footer-desc {
    color: #94A3B8;
    margin-bottom: 24px;
}
.footer-title {
    font-size: 1.25rem;
    margin-bottom: 24px;
    color: white;
}
.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: #94A3B8;
}
.footer-links a:hover {
    color: var(--color-primary);
}
.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 24px;
    text-align: center;
    color: #94A3B8;
}

@media(max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media(max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Floating WhatsApp */
.wa-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: var(--shadow-lg);
    z-index: 100;
    transition: transform var(--transition-bounce);
}
.wa-float:hover {
    transform: scale(1.1) rotate(10deg);
    color: white;
}
@media (max-width: 768px) {
    .wa-float {
        bottom: 90px; /* Above mobile nav */
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 28px;
    }
}

/* Mobile Bottom Navigation */
.mobile-nav {
    display: none;
}

@media (max-width: 1024px) {
    .nav-links {
        display: none; /* Hide desktop nav */
    }
    
    .mobile-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 200;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-top: 1px solid var(--color-border);
        justify-content: space-around;
        align-items: center;
        padding: 4px 8px;
        padding-bottom: calc(4px + env(safe-area-inset-bottom));
        box-shadow: 0 -4px 10px rgba(0,0,0,0.05);
        transition: background-color var(--transition-normal), border-color var(--transition-normal);
    }
    
    .dark-mode .mobile-nav {
        background-color: rgba(15, 23, 42, 0.8);
        border-top: 1px solid rgba(212, 175, 55, 0.2);
        box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.4);
    }
    
    .dark-mode .mobile-nav-item.active {
        color: var(--color-primary);
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    }

    .dark-mode .mobile-nav-item.active::after {
        content: '';
        position: absolute;
        bottom: 2px;
        width: 4px;
        height: 4px;
        background: var(--color-primary);
        border-radius: 50%;
        box-shadow: 0 0 8px var(--color-primary);
    }
    
    .mobile-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1px;
        color: var(--color-muted-fore);
        font-size: 0.55rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0px;
        padding: 1px;
        border-radius: var(--radius-md);
        transition: all var(--transition-fast);
        flex: 1; /* evenly distribute */
    }
    
    .mobile-nav-item i {
        font-size: 1.1rem;
        margin-bottom: 0px;
        transition: transform var(--transition-bounce);
    }
    
    .mobile-nav-item.active, .mobile-nav-item:hover {
        color: var(--color-primary);
        background-color: transparent;
    }
    
    .mobile-nav-item.active i {
        transform: translateY(-2px);
    }

    /* Central Pop-up Action Button */
    .nav-action-btn {
        position: relative;
        top: -16px;
        flex: 1.2; /* take a bit more space */
    }
    
    .nav-action-icon {
        width: 48px;
        height: 48px;
        background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
        color: var(--color-background) !important; /* contrast against gold */
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
        border: 3px solid var(--color-background); /* blends with background card */
        margin-bottom: 2px;
        transition: transform var(--transition-bounce), box-shadow var(--transition-fast);
    }

    .nav-action-btn:hover .nav-action-icon, .nav-action-btn.active .nav-action-icon {
        transform: scale(1.05) translateY(-3px);
        box-shadow: 0 8px 18px rgba(212, 175, 55, 0.6);
    }
    
    .dark-mode .nav-action-icon {
        background: linear-gradient(135deg, #FFD700, #B8860B);
        box-shadow: 0 4px 25px rgba(212, 175, 55, 0.6);
        border: 2px solid rgba(255, 255, 255, 0.4);
        animation: pulseGold 2s infinite;
    }

    .dark-mode .nav-action-btn:hover .nav-action-icon {
        box-shadow: 0 0 40px rgba(212, 175, 55, 0.8);
    }

    @keyframes pulseGold {
        0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.6); }
        70% { box-shadow: 0 0 0 12px rgba(212, 175, 55, 0); }
        100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
    }

    .nav-action-btn .nav-action-icon i {
        font-size: 1.25rem;
        margin-bottom: 0;
        color: var(--color-background) !important;
    }
    
    body {
        padding-bottom: 75px; /* Space for scaled down mobile nav */
    }
}

/* Jobs Overlay Styling */
.mobile-jobs-overlay {
    position: fixed;
    bottom: -100%; /* Start hidden below */
    left: 0;
    right: 0;
    z-index: 300;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 30px 30px 0 0;
    padding: 30px 20px;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.15);
    transition: bottom 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.mobile-jobs-overlay.active {
    bottom: 0;
}

.dark-mode .mobile-jobs-overlay {
    background: rgba(15, 23, 42, 0.9);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.overlay-content {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.overlay-title {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--color-foreground);
    font-weight: 700;
}

.overlay-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.overlay-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid var(--color-border);
}

.overlay-card:active {
    transform: scale(0.97);
}

.apply-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border-color: rgba(212, 175, 55, 0.3);
}

.hire-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.05), rgba(30, 41, 59, 0.02));
}

.dark-mode .hire-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.overlay-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.apply-card .overlay-icon {
    background: var(--color-primary);
    color: white;
}

.hire-card .overlay-icon {
    background: var(--color-foreground);
    color: var(--color-background);
}

.overlay-text {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.overlay-text strong {
    font-size: 1rem;
    color: var(--color-foreground);
}

.overlay-text span {
    font-size: 0.8rem;
    color: var(--color-muted-fore);
}

.overlay-card i.fa-chevron-right {
    color: var(--color-gold);
    opacity: 0.5;
}

.overlay-close {
    position: absolute;
    top: -15px;
    right: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-card);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}
.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--color-foreground);
}
.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background-color: var(--color-card);
    color: var(--color-foreground);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}
textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Testimonials Marquee/Carousel */
.testimonial-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.testimonial-stars {
    color: var(--color-gold);
    margin-bottom: 16px;
}
.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 24px;
    color: var(--color-foreground);
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}
.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    background-color: var(--color-muted);
}
.testimonial-info h4 {
    margin: 0;
    font-size: 1rem;
}
.testimonial-info p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--color-muted-fore);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-primary { color: var(--color-primary); }
.text-accent { color: var(--color-accent); }
.mt-4 { margin-top: 16px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
.p-4 { padding: 16px; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-4 { gap: 16px; }
.w-full { width: 100%; }

/* Responsive Visibility Utilities */
.hidden { display: none !important; }
@media (min-width: 768px) {
    .md\:block { display: block !important; }
    .md\:flex { display: flex !important; }
    .md\:inline-flex { display: inline-flex !important; }
    .md\:grid { display: grid !important; }
}
@media (max-width: 768px) {
    .hide-on-mobile { display: none !important; }
}

/* ========================================================================= */
/* GLASSMORPHISM & ANIMATIONS (Responsive Upgrade) 
/* ========================================================================= */

.glass-panel {
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05) !important;
}

.dark-mode .glass-panel {
    background: rgba(17, 17, 17, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3) !important;
}

.glass-card {
    background: rgba(255, 255, 255, 0.4) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-fast) !important;
}

.dark-mode .glass-card {
    background: rgba(25, 25, 25, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.glass-card:hover {
    transform: translateY(-8px) scale(1.02) !important;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15) !important;
    border-color: rgba(212, 175, 55, 0.4) !important;
    z-index: 10;
}

/* Animations */
.animate-fade-in { animation: fadeIn 0.8s ease-out forwards; }
.animate-slide-up { animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; opacity: 0; }
.animate-slide-up-delay-1 { animation-delay: 0.1s; }
.animate-slide-up-delay-2 { animation-delay: 0.2s; }
.animate-slide-up-delay-3 { animation-delay: 0.3s; }

.glow-hover {
    transition: all 0.3s ease;
}
.glow-hover:hover {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.floating-element {
    animation: floatSmooth 5s ease-in-out infinite;
}

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

/* Base structural fixes for max-width on mobile */
@media (max-width: 992px) {
    .container {
        padding: 0 16px;
    }
}

/* Vision Card Styling */
.vision-card {
    position: relative;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.9), rgba(184, 134, 11, 0.95));
    border-radius: 2rem;
    padding: 3.5rem 2.5rem;
    color: white;
    box-shadow: 0 20px 50px rgba(184, 134, 11, 0.3);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 10;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(184, 134, 11, 0.4);
}

.vision-icon-float {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.2);
    transform: rotate(-15deg);
}

.vision-quote {
    font-size: 2.5rem;
    opacity: 0.4;
    display: block;
    margin-bottom: 1.5rem;
}

.vision-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.vision-text {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 3rem;
    font-weight: 400;
}

.founder-profile {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.founder-avatar {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.founder-info {
    display: flex;
    flex-direction: column;
}

.founder-name {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.2px;
}

.founder-title {
    font-size: 0.85rem;
    opacity: 0.8;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.vision-accent-dots {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 75%);
    border-radius: 50%;
}

@media (max-width: 1024px) {
    .vision-card {
        padding: 3rem 2rem;
    }
}

@media (max-width: 768px) {
    .vision-card {
        padding: 2.5rem 1.5rem;
        border-radius: 1.75rem;
    }
    .vision-title {
        font-size: 1.85rem;
    }
    .vision-text {
        font-size: 1.05rem;
        line-height: 1.7;
    }
    .founder-name {
        font-size: 1.2rem;
    }
}

