:root {
    /* Color Palette - Satva Googleteq Premium */
    --primary: #d19100;
    /* Deep Gold/Amber */
    --primary-hover: #b88000;
    --primary-foreground: #ffffff;

    --secondary: #001845;
    /* Navy Blue */
    --secondary-hover: #001233;
    --secondary-foreground: #ffffff;

    --accent: #d5e6f0;
    /* Soft Sky Blue */
    --accent-foreground: #001845;

    --background: #ffffff;
    --foreground: #001845;

    --muted: #f8fafc;
    --muted-foreground: #64748b;

    --border: #e2e8f0;
    --input: #f1f5f9;

    --card: #ffffff;
    --card-foreground: #001845;

    /* Spacing & Radius */
    --radius: 0.75rem;
    --radius-sm: 0.5rem;
    --radius-lg: 1rem;

    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--foreground);
    background-color: var(--background);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

/* Base Components */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    gap: 0.5rem;
    font-size: 0.9375rem;
}

.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--secondary-foreground);
}

.btn-secondary:hover {
    background: var(--secondary-hover);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--primary-foreground);
}

/* Glassmorphism */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.section-padding {
    padding: 5rem 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 3.5rem 0;
    }

    .nav-desktop {
        display: none !important;
    }

    #main-nav.mobile-menu-active {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--background);
        padding: 2rem;
        border-bottom: 2px solid var(--primary);
        box-shadow: var(--shadow-lg);
        z-index: 1001;
        gap: 1.5rem !important;
    }

    .mobile-toggle {
        display: block !important;
    }

    /* Stack buttons and layout on mobile */
    .flex-mobile-column {
        flex-direction: column !important;
        gap: 2rem !important;
    }

    .btn-group-mobile {
        flex-direction: column;
        width: 100%;
        gap: 1rem !important;
    }

    .btn-group-mobile .btn {
        width: 100%;
    }

    /* Responsive Font Sizes */
    .text-h1-mobile {
        font-size: 2.25rem !important;
    }

    .text-h2-mobile {
        font-size: 1.75rem !important;
    }

    .text-p-mobile {
        font-size: 1rem !important;
    }

    /* Grid adjustments */
    .grid-cols-mobile-1 {
        grid-template-columns: 1fr !important;
    }

    /* Form adjustments */
    .form-cols-mobile-1 {
        grid-template-columns: 1fr !important;
    }

    .form-cols-mobile-1>div {
        grid-column: span 1 !important;
    }
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--foreground);
    cursor: pointer;
}