/* ============================================
   EVOTIQ - ULTRA PREMIUM DESIGN SYSTEM
   Smart Home & Security Solutions
   ============================================ */

/* ============================================
   1. CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ============================================ */
:root {
    /* ===================
     BRAND COLORS (Logo-Derived)
     =================== */
    --color-gold-primary: #D4A553;
    --color-gold-light: #E8B86D;
    --color-gold-dark: #B8924A;
    --color-gold-deep: #A07D3A;

    /* Background Colors */
    --color-navy-deep: #0A1628;
    --color-navy-mid: #0D1B2A;
    --color-navy-light: #1B2838;
    --color-navy-surface: #162032;

    /* Neutrals */
    --color-white: #FFFFFF;
    --color-white-soft: #F8F9FA;
    --color-gray-100: #E9ECEF;
    --color-gray-200: #DEE2E6;
    --color-gray-300: #CED4DA;
    --color-gray-400: #ADB5BD;
    --color-gray-500: #6C757D;

    /* ===================
     GRADIENTS
     =================== */
    --gradient-gold: linear-gradient(135deg, #D4A553 0%, #E8B86D 50%, #D4A553 100%);
    --gradient-gold-radial: radial-gradient(circle, #E8B86D 0%, #D4A553 50%, #B8924A 100%);
    --gradient-gold-shine: linear-gradient(90deg, transparent 0%, rgba(232, 184, 109, 0.4) 50%, transparent 100%);
    --gradient-navy: linear-gradient(180deg, #0A1628 0%, #0D1B2A 50%, #1B2838 100%);
    --gradient-hero: radial-gradient(ellipse at 50% 0%, rgba(212, 165, 83, 0.15) 0%, transparent 60%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);

    /* ===================
     SHADOWS & GLOWS
     =================== */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.25);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.35);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.45);

    --glow-gold: 0 0 20px rgba(212, 165, 83, 0.4);
    --glow-gold-intense: 0 0 40px rgba(212, 165, 83, 0.6), 0 0 80px rgba(212, 165, 83, 0.3);
    --glow-gold-soft: 0 0 30px rgba(212, 165, 83, 0.25);
    --glow-white: 0 0 20px rgba(255, 255, 255, 0.15);

    /* ===================
     GLASSMORPHISM
     =================== */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-bg-strong: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-border-gold: rgba(212, 165, 83, 0.3);
    --blur-glass: blur(20px);
    --blur-glass-strong: blur(30px);

    /* ===================
     TYPOGRAPHY
     =================== */
    --font-primary: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Outfit', sans-serif;

    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
    --text-7xl: 4.5rem;
    --text-8xl: 6rem;

    /* ===================
     SPACING
     =================== */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;

    /* ===================
     TRANSITIONS
     =================== */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slower: 700ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

    /* ===================
     BORDERS
     =================== */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-3xl: 2rem;
    --radius-full: 9999px;
}

/* ============================================
   2. CSS RESET & BASE STYLES
   ============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    background: var(--color-navy-deep);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

ul,
ol {
    list-style: none;
}

/* ============================================
   3. KEYFRAME ANIMATIONS
   ============================================ */

/* Fade In Up */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade In Down */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade In Scale */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Float Animation */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Gentle Float */
@keyframes floatGentle {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(1deg);
    }
}

/* Pulse Glow */
@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: var(--glow-gold);
    }

    50% {
        box-shadow: var(--glow-gold-intense);
    }
}

/* Pulse Soft */
@keyframes pulseSoft {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

/* Shimmer Effect */
@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

/* Rotate */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Orbit */
@keyframes orbit {
    0% {
        transform: rotate(0deg) translateX(100px) rotate(0deg);
    }

    100% {
        transform: rotate(360deg) translateX(100px) rotate(-360deg);
    }
}

/* Particle Float */
@keyframes particleFloat {

    0%,
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0.5;
    }

    25% {
        transform: translateY(-30px) translateX(10px);
        opacity: 1;
    }

    50% {
        transform: translateY(-10px) translateX(-10px);
        opacity: 0.7;
    }

    75% {
        transform: translateY(-40px) translateX(5px);
        opacity: 0.9;
    }
}

/* Glow Pulse */
@keyframes glowPulse {

    0%,
    100% {
        filter: drop-shadow(0 0 10px rgba(212, 165, 83, 0.5));
    }

    50% {
        filter: drop-shadow(0 0 25px rgba(212, 165, 83, 0.8));
    }
}

/* Text Gradient Shift */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Scroll Indicator Bounce */
@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(10px);
        opacity: 0.5;
    }
}

/* Line Draw */
@keyframes lineDraw {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

/* Scale In */
@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Typewriter cursor blink */
@keyframes blink {

    0%,
    50% {
        border-color: var(--color-gold-primary);
    }

    51%,
    100% {
        border-color: transparent;
    }
}

/* Background pan */
@keyframes bgPan {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

/* ============================================
   4. UTILITY CLASSES
   ============================================ */

/* Text Colors */
.text-gold {
    color: var(--color-gold-primary);
}

.text-gold-light {
    color: var(--color-gold-light);
}

.text-white {
    color: var(--color-white);
}

.text-white-soft {
    color: var(--color-white-soft);
}

.text-gray {
    color: var(--color-gray-400);
}

/* Gradient Text */
.text-gradient {
    background: var(--gradient-gold);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 4s ease infinite;
}

/* Backgrounds */
.bg-navy {
    background: var(--color-navy-deep);
}

.bg-navy-mid {
    background: var(--color-navy-mid);
}

.bg-glass {
    background: var(--glass-bg);
    backdrop-filter: var(--blur-glass);
    -webkit-backdrop-filter: var(--blur-glass);
    border: 1px solid var(--glass-border);
}

.bg-glass-gold {
    background: var(--glass-bg);
    backdrop-filter: var(--blur-glass);
    -webkit-backdrop-filter: var(--blur-glass);
    border: 1px solid var(--glass-border-gold);
}

/* Container */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.container-lg {
    max-width: 1600px;
}

/* Section Spacing */
.section {
    padding: var(--space-24) 0;
}

.section-lg {
    padding: var(--space-32) 0;
}

/* Flex Utilities */
.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-2 {
    gap: var(--space-2);
}

.gap-4 {
    gap: var(--space-4);
}

.gap-6 {
    gap: var(--space-6);
}

.gap-8 {
    gap: var(--space-8);
}

/* Grid */
.grid {
    display: grid;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* ============================================
   5. COMPONENT STYLES
   ============================================ */

/* --------------------
   5.1 NAVIGATION
   -------------------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-4) 0;
    transition: var(--transition-base);
}

.navbar.scrolled {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: var(--blur-glass);
    -webkit-backdrop-filter: var(--blur-glass);
    border-bottom: 1px solid var(--glass-border-gold);
    padding: var(--space-3) 0;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.navbar-logo img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(212, 165, 83, 0.3));
    transition: var(--transition-base);
}

.navbar-logo:hover img {
    filter: drop-shadow(0 0 20px rgba(212, 165, 83, 0.5));
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.navbar-link {
    position: relative;
    font-size: var(--text-sm);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--color-white-soft);
    padding: var(--space-2) 0;
    transition: var(--transition-base);
}

.navbar-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: var(--transition-base);
}

.navbar-link:hover {
    color: var(--color-gold-primary);
}

.navbar-link:hover::after {
    width: 100%;
}

.navbar-cta {
    padding: var(--space-3) var(--space-6);
    background: var(--gradient-gold);
    color: var(--color-navy-deep);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-full);
    transition: var(--transition-base);
    box-shadow: var(--glow-gold-soft);
}

.navbar-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-gold-intense);
}

/* Mobile Menu Toggle */
.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: var(--space-2);
    cursor: pointer;
}

.navbar-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--color-gold-primary);
    border-radius: 2px;
    transition: var(--transition-base);
}

/* --------------------
   5.2 HERO SECTION
   -------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--color-navy-deep);
}

/* Hero Background Effects */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at 30% 20%, rgba(212, 165, 83, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(232, 184, 109, 0.05) 0%, transparent 40%);
    animation: bgPan 20s ease-in-out infinite alternate;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 22, 40, 0.3) 100%);
}

/* Particle Container */
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-gold-primary);
    border-radius: 50%;
    opacity: 0.6;
    animation: particleFloat 8s ease-in-out infinite;
}

.particle::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--color-gold-primary);
    border-radius: 50%;
    filter: blur(4px);
    opacity: 0.5;
}

/* Grid Lines Background */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212, 165, 83, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 165, 83, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--space-32) var(--space-6);
}

.hero-text {
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: var(--glass-bg);
    backdrop-filter: var(--blur-glass);
    -webkit-backdrop-filter: var(--blur-glass);
    border: 1px solid var(--glass-border-gold);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-gold-light);
    margin-bottom: var(--space-6);
    animation: fadeInDown 0.8s ease-out;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--color-gold-primary);
    border-radius: 50%;
    animation: pulseSoft 2s ease-in-out infinite;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--space-6);
    color: var(--color-white);
}

.hero-title .highlight {
    display: block;
    background: linear-gradient(135deg, #D4A553 0%, #E8B86D 25%, #D4A553 50%, #E8B86D 75%, #D4A553 100%);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 5s ease infinite;
    filter: drop-shadow(0 0 30px rgba(212, 165, 83, 0.4));
}

.hero-description {
    font-size: var(--text-lg);
    line-height: 1.8;
    color: var(--color-gray-300);
    margin-bottom: var(--space-8);
    max-width: 540px;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    margin-bottom: var(--space-10);
}

/* Primary CTA Button */
.btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-8);
    background: var(--gradient-gold);
    color: var(--color-navy-deep);
    font-size: var(--text-base);
    font-weight: 600;
    border-radius: var(--radius-full);
    overflow: hidden;
    transition: var(--transition-base);
    box-shadow: var(--glow-gold);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition-slow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-gold-intense);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary svg {
    width: 20px;
    height: 20px;
    transition: var(--transition-base);
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

/* Secondary CTA Button */
.btn-secondary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-8);
    background: transparent;
    color: var(--color-white);
    font-size: var(--text-base);
    font-weight: 600;
    border: 2px solid rgba(212, 165, 83, 0.5);
    border-radius: var(--radius-full);
    transition: var(--transition-base);
}

.btn-secondary:hover {
    background: rgba(212, 165, 83, 0.1);
    border-color: var(--color-gold-primary);
    transform: translateY(-3px);
    box-shadow: var(--glow-gold-soft);
}

.btn-secondary svg {
    width: 24px;
    height: 24px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: var(--space-8);
    padding-top: var(--space-8);
    border-top: 1px solid rgba(212, 165, 83, 0.2);
}

.hero-stat {
    text-align: left;
}

.hero-stat-value {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--color-gold-primary);
    line-height: 1;
    margin-bottom: var(--space-1);
}

.hero-stat-label {
    font-size: var(--text-sm);
    color: var(--color-gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInScale 1.2s ease-out 0.3s both;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
}

/* Glowing Orb Behind Image */
.hero-glow-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(212, 165, 83, 0.3) 0%, rgba(212, 165, 83, 0.1) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    animation: pulseSoft 4s ease-in-out infinite;
}

.hero-image {
    position: relative;
    width: 100%;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    animation: floatGentle 6s ease-in-out infinite;
}

.hero-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 165, 83, 0.2) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Floating Elements */
.hero-float-element {
    position: absolute;
    background: var(--glass-bg-strong);
    backdrop-filter: var(--blur-glass);
    -webkit-backdrop-filter: var(--blur-glass);
    border: 1px solid var(--glass-border-gold);
    border-radius: var(--radius-xl);
    padding: var(--space-4);
    box-shadow: var(--glow-gold-soft);
    animation: float 5s ease-in-out infinite;
}

.hero-float-element.element-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.hero-float-element.element-2 {
    bottom: 20%;
    left: -5%;
    animation-delay: -2s;
}

.hero-float-element.element-3 {
    bottom: 5%;
    right: 10%;
    animation-delay: -4s;
}

.float-icon {
    width: 40px;
    height: 40px;
    color: var(--color-gold-primary);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    color: var(--color-gray-400);
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease-out 1.5s both;
    z-index: 10;
}

.scroll-indicator-icon {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(212, 165, 83, 0.5);
    border-radius: var(--radius-full);
    position: relative;
}

.scroll-indicator-icon::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: var(--color-gold-primary);
    border-radius: var(--radius-full);
    animation: scrollBounce 2s ease-in-out infinite;
}

/* --------------------
   5.3 SECTION HEADERS
   -------------------- */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-16);
}

.section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-gold-primary);
    margin-bottom: var(--space-4);
}

.section-subtitle::before,
.section-subtitle::after {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--gradient-gold);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-white);
    margin-bottom: var(--space-4);
}

.section-description {
    font-size: var(--text-lg);
    color: var(--color-gray-400);
    line-height: 1.7;
}

/* --------------------
   5.4 SERVICE CARDS
   -------------------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-8);
}

.service-card {
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: var(--blur-glass);
    -webkit-backdrop-filter: var(--blur-glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    transition: var(--transition-slow);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-slow);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--glass-border-gold);
    box-shadow: var(--glow-gold-soft);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-card:hover .service-card-image img {
    transform: scale(1.1);
}

.service-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10, 22, 40, 0.9) 100%);
}

.service-card-content {
    padding: var(--space-6);
}

.service-card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 165, 83, 0.1);
    border: 1px solid var(--glass-border-gold);
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-4);
    transition: var(--transition-base);
}

.service-card:hover .service-card-icon {
    background: rgba(212, 165, 83, 0.2);
    box-shadow: var(--glow-gold);
}

.service-card-icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-gold-primary);
}

.service-card-title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: var(--space-3);
}

.service-card-description {
    font-size: var(--text-base);
    color: var(--color-gray-400);
    line-height: 1.7;
    margin-bottom: var(--space-4);
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-gold-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-base);
}

.service-card-link:hover {
    gap: var(--space-3);
}

.service-card-link svg {
    width: 16px;
    height: 16px;
    transition: var(--transition-base);
}

/* --------------------
   5.5 FEATURES SECTION
   -------------------- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

.feature-card {
    text-align: center;
    padding: var(--space-8);
    background: var(--glass-bg);
    backdrop-filter: var(--blur-glass);
    -webkit-backdrop-filter: var(--blur-glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-2xl);
    transition: var(--transition-slow);
}

.feature-card:hover {
    border-color: var(--glass-border-gold);
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-6);
    background: rgba(212, 165, 83, 0.1);
    border: 1px solid var(--glass-border-gold);
    border-radius: 50%;
    transition: var(--transition-base);
}

.feature-card:hover .feature-icon {
    background: rgba(212, 165, 83, 0.15);
    box-shadow: var(--glow-gold);
    animation: pulseGlow 2s ease-in-out infinite;
}

.feature-icon svg {
    width: 36px;
    height: 36px;
    color: var(--color-gold-primary);
}

.feature-title {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: var(--space-3);
}

.feature-description {
    font-size: var(--text-sm);
    color: var(--color-gray-400);
    line-height: 1.6;
}

/* --------------------
   5.6 STATS SECTION
   -------------------- */
.stats-section {
    position: relative;
    padding: var(--space-20) 0;
    background: linear-gradient(180deg, var(--color-navy-mid) 0%, var(--color-navy-deep) 100%);
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(212, 165, 83, 0.05) 0%, transparent 60%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: var(--space-8);
    background: var(--glass-bg);
    backdrop-filter: var(--blur-glass);
    -webkit-backdrop-filter: var(--blur-glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-2xl);
    transition: var(--transition-base);
}

.stat-item:hover {
    border-color: var(--glass-border-gold);
    box-shadow: var(--glow-gold-soft);
}

.stat-value {
    font-family: var(--font-display);
    font-size: var(--text-5xl);
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: var(--space-2);
}

.stat-label {
    font-size: var(--text-base);
    color: var(--color-gray-400);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* --------------------
   5.7 CTA SECTION
   -------------------- */
.cta-section {
    position: relative;
    padding: var(--space-24) 0;
    background: linear-gradient(135deg, var(--color-navy-mid) 0%, var(--color-navy-deep) 100%);
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(212, 165, 83, 0.1) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-4);
}

.cta-description {
    font-size: var(--text-lg);
    color: var(--color-gray-300);
    margin-bottom: var(--space-8);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}

/* --------------------
   5.8 FOOTER
   -------------------- */
.footer {
    background: var(--color-navy-deep);
    border-top: 1px solid var(--glass-border);
    padding: var(--space-16) 0 var(--space-8);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-12);
    margin-bottom: var(--space-12);
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    height: 50px;
    margin-bottom: var(--space-4);
    filter: drop-shadow(0 0 10px rgba(212, 165, 83, 0.3));
}

.footer-description {
    font-size: var(--text-sm);
    color: var(--color-gray-400);
    line-height: 1.7;
    margin-bottom: var(--space-6);
}

.footer-social {
    display: flex;
    gap: var(--space-3);
}

.footer-social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--color-gray-400);
    transition: var(--transition-base);
}

.footer-social-link:hover {
    background: rgba(212, 165, 83, 0.1);
    border-color: var(--glass-border-gold);
    color: var(--color-gold-primary);
}

.footer-social-link svg {
    width: 20px;
    height: 20px;
}

.footer-column-title {
    font-family: var(--font-display);
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: var(--space-6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer-link {
    font-size: var(--text-sm);
    color: var(--color-gray-400);
    transition: var(--transition-base);
}

.footer-link:hover {
    color: var(--color-gold-primary);
    padding-left: var(--space-2);
}

.footer-bottom {
    padding-top: var(--space-8);
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: var(--text-sm);
    color: var(--color-gray-500);
}

.footer-credit {
    font-size: var(--text-sm);
    color: var(--color-gray-500);
    margin-top: var(--space-2);
}

.footer-legal {
    display: flex;
    gap: var(--space-6);
}

.footer-legal-link {
    font-size: var(--text-sm);
    color: var(--color-gray-500);
    transition: var(--transition-base);
}

.footer-legal-link:hover {
    color: var(--color-gold-primary);
}

/* ============================================
   6. ANIMATIONS FOR SCROLL REVEAL
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Staggered delays */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

.delay-6 {
    transition-delay: 0.6s;
}

/* ============================================
   7. RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1200px) {
    .hero-content {
        gap: var(--space-10);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 140px;
    }

    .hero-text {
        order: 2;
    }

    .hero-visual {
        order: 1;
        margin-bottom: var(--space-8);
    }

    .hero-image-wrapper {
        max-width: 450px;
        margin: 0 auto;
    }

    .hero-description {
        margin: 0 auto var(--space-8);
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-float-element {
        display: none;
    }

    .navbar-menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 22, 40, 0.98);
        backdrop-filter: var(--blur-glass-strong);
        -webkit-backdrop-filter: var(--blur-glass-strong);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: var(--space-8);
        z-index: 999;
    }

    .navbar-menu.active {
        display: flex;
    }

    .navbar-toggle {
        display: flex;
    }

    .navbar-link {
        font-size: var(--text-xl);
    }
}

@media (max-width: 768px) {
    :root {
        --space-24: 4rem;
        --space-32: 5rem;
    }

    .container {
        padding: 0 var(--space-4);
    }

    .section-title {
        font-size: var(--text-2xl);
    }

    .hero-title {
        font-size: var(--text-3xl);
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--space-6);
        padding-top: var(--space-6);
    }

    .hero-stat {
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

    .stat-value {
        font-size: var(--text-4xl);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
        text-align: center;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-4);
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }

    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: var(--text-2xl);
    }

    .hero-description {
        font-size: var(--text-base);
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

/* ============================================
   8. CUSTOM SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-navy-deep);
}

::-webkit-scrollbar-thumb {
    background: var(--color-gold-dark);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold-primary);
}

/* Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--color-gold-dark) var(--color-navy-deep);
}

/* ============================================
   9. SELECTION STYLES
   ============================================ */
::selection {
    background: rgba(212, 165, 83, 0.3);
    color: var(--color-white);
}

::-moz-selection {
    background: rgba(212, 165, 83, 0.3);
    color: var(--color-white);
}

/* ============================================
   10. TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    background: linear-gradient(180deg, var(--color-navy-deep) 0%, var(--color-navy-mid) 50%, var(--color-navy-deep) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center top, rgba(212, 165, 83, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    position: relative;
    z-index: 1;
}

.testimonial-card {
    position: relative;
    padding: var(--space-8);
    background: var(--glass-bg);
    backdrop-filter: var(--blur-glass);
    -webkit-backdrop-filter: var(--blur-glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-2xl);
    transition: var(--transition-slow);
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    opacity: 0;
    transition: var(--transition-base);
}

.testimonial-card::after {
    content: '"';
    position: absolute;
    top: var(--space-4);
    right: var(--space-6);
    font-size: 6rem;
    font-family: Georgia, serif;
    color: rgba(212, 165, 83, 0.1);
    line-height: 1;
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--glass-border-gold);
    box-shadow: var(--glow-gold-soft);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-stars {
    display: flex;
    gap: var(--space-1);
    margin-bottom: var(--space-4);
}

.testimonial-stars svg {
    width: 20px;
    height: 20px;
    color: var(--color-gold-primary);
    filter: drop-shadow(0 0 4px rgba(212, 165, 83, 0.5));
}

.testimonial-text {
    font-size: var(--text-base);
    line-height: 1.8;
    color: var(--color-gray-300);
    margin-bottom: var(--space-6);
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--glass-border-gold);
    box-shadow: var(--glow-gold-soft);
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: var(--space-1);
}

.testimonial-role {
    font-size: var(--text-sm);
    color: var(--color-gold-light);
}

/* ============================================
   11. CONTACT FORM SECTION
   ============================================ */
.contact-section {
    background: var(--color-navy-mid);
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: start;
}

.contact-info {
    padding-right: var(--space-8);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
    padding: var(--space-4);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    transition: var(--transition-base);
}

.contact-info-item:hover {
    border-color: var(--glass-border-gold);
    box-shadow: var(--glow-gold-soft);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 165, 83, 0.1);
    border: 1px solid var(--glass-border-gold);
    border-radius: var(--radius-lg);
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-gold-primary);
}

.contact-info-content h4 {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: var(--space-1);
}

.contact-info-content p,
.contact-info-content a {
    font-size: var(--text-base);
    color: var(--color-gray-400);
    line-height: 1.6;
}

.contact-info-content a:hover {
    color: var(--color-gold-primary);
}

.contact-form-wrapper {
    background: var(--glass-bg);
    backdrop-filter: var(--blur-glass);
    -webkit-backdrop-filter: var(--blur-glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-5);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.form-group label {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-gray-300);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: var(--space-4);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: var(--text-base);
    transition: var(--transition-base);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-gray-500);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--color-gold-primary);
    box-shadow: 0 0 0 3px rgba(212, 165, 83, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23D4A553' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right var(--space-4) center;
    background-size: 16px;
    padding-right: var(--space-12);
}

.form-group select option {
    background: var(--color-navy-deep);
    color: var(--color-white);
}

.form-submit {
    margin-top: var(--space-4);
}

/* ============================================
   12. ENHANCED SERVICES GRID (Fixed Layout)
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

/* Enhanced Service Card Hover Effects */
.service-card {
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: var(--blur-glass);
    -webkit-backdrop-filter: var(--blur-glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(212, 165, 83, 0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--glass-border-gold);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), var(--glow-gold-soft);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    opacity: 1;
}

.service-card-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-card-image img {
    transform: scale(1.15);
    filter: brightness(1.1);
}

.service-card-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 22, 40, 0) 0%, rgba(10, 22, 40, 0.4) 50%, rgba(10, 22, 40, 0.95) 100%);
    z-index: 1;
    transition: var(--transition-base);
}

.service-card:hover .service-card-image::before {
    background: linear-gradient(180deg, rgba(10, 22, 40, 0) 0%, rgba(10, 22, 40, 0.3) 50%, rgba(10, 22, 40, 0.9) 100%);
}

.service-card-content {
    padding: var(--space-6) var(--space-6) var(--space-8);
    position: relative;
    z-index: 2;
}

.service-card-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 165, 83, 0.1);
    border: 1px solid var(--glass-border-gold);
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-card-icon {
    background: rgba(212, 165, 83, 0.2);
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--glow-gold);
}

.service-card-icon svg {
    width: 32px;
    height: 32px;
    color: var(--color-gold-primary);
    transition: var(--transition-base);
}

.service-card:hover .service-card-icon svg {
    color: var(--color-gold-light);
}

.service-card-title {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: var(--space-3);
    transition: var(--transition-base);
}

.service-card:hover .service-card-title {
    color: var(--color-gold-light);
}

.service-card-description {
    font-size: var(--text-base);
    color: var(--color-gray-400);
    line-height: 1.7;
    margin-bottom: var(--space-5);
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-gold-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.service-card-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
}

.service-card-link:hover {
    gap: var(--space-4);
    color: var(--color-gold-light);
}

.service-card-link:hover::after {
    width: 100%;
}

.service-card-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.service-card-link:hover svg {
    transform: translateX(5px);
}

/* ============================================
   13. ENHANCED FEATURE CARDS
   ============================================ */
.feature-card {
    text-align: center;
    padding: var(--space-8);
    background: var(--glass-bg);
    backdrop-filter: var(--blur-glass);
    -webkit-backdrop-filter: var(--blur-glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-2xl);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 165, 83, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.feature-card:hover {
    border-color: var(--glass-border-gold);
    transform: translateY(-10px);
    box-shadow: var(--glow-gold-soft);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-6);
    background: rgba(212, 165, 83, 0.1);
    border: 2px solid var(--glass-border-gold);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.feature-icon::after {
    content: '';
    position: absolute;
    inset: -5px;
    border: 1px solid rgba(212, 165, 83, 0.2);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    background: rgba(212, 165, 83, 0.2);
    transform: scale(1.1);
    box-shadow: var(--glow-gold);
}

.feature-card:hover .feature-icon::after {
    opacity: 1;
    inset: -10px;
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    color: var(--color-gold-primary);
    transition: var(--transition-base);
}

.feature-card:hover .feature-icon svg {
    color: var(--color-gold-light);
    transform: scale(1.1);
}

/* ============================================
   14. RESPONSIVE UPDATES FOR NEW SECTIONS
   ============================================ */
@media (max-width: 1200px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-card:last-child {
        grid-column: span 2;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-10);
    }

    .contact-info {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card:last-child {
        grid-column: auto;
        max-width: none;
    }

    .testimonial-card {
        padding: var(--space-6);
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}