/* ================================================
   AADITRI INNOVATIONS - PREMIUM DESIGN SYSTEM
   Industry-Leading UI with Top-Notch Animations
   ================================================ */

/* ================================================
   CSS CUSTOM PROPERTIES
   ================================================ */
:root {
    /* Brand Colors */
    --white: #FFFFFF;
    --black: #0A0A0A;
    --gold: #D4AF37;
    --gold-light: #F4E4BC;
    --gold-dark: #B8972E;
    --gold-glow: rgba(212, 175, 55, 0.5);
    --navy: #1E3A5F;
    --navy-light: #2E4A6F;
    --navy-dark: #0D1B2A;
    --emerald: #2E8B57;
    --emerald-light: #3DA76A;
    --cream: #FDF8F0;

    /* Neutrals */
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #E5E5E5;
    --gray-300: #D4D4D4;
    --gray-400: #A3A3A3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F4E4BC 50%, #D4AF37 100%);
    --gradient-gold-shine: linear-gradient(135deg, #D4AF37 0%, #FFE5A0 25%, #D4AF37 50%, #FFE5A0 75%, #D4AF37 100%);
    --gradient-hero: linear-gradient(135deg, #0D1B2A 0%, #1E3A5F 50%, #2E4A6F 100%);
    --gradient-dark: linear-gradient(180deg, #0D1B2A 0%, #1E3A5F 100%);
    --gradient-light: linear-gradient(180deg, #FFFFFF 0%, #FDF8F0 100%);
    --gradient-radial-gold: radial-gradient(circle at center, rgba(212,175,55,0.15) 0%, transparent 70%);
    --gradient-mesh:
        radial-gradient(at 40% 20%, rgba(212,175,55,0.12) 0px, transparent 50%),
        radial-gradient(at 80% 0%, rgba(46,139,87,0.08) 0px, transparent 50%),
        radial-gradient(at 0% 50%, rgba(212,175,55,0.08) 0px, transparent 50%),
        radial-gradient(at 80% 80%, rgba(30,58,95,0.1) 0px, transparent 50%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-heading: 'Poppins', -apple-system, sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-mono: 'SF Mono', 'Fira Code', monospace;

    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --shadow-2xl: 0 25px 80px rgba(0,0,0,0.2);
    --shadow-inner: inset 0 2px 4px rgba(0,0,0,0.06);
    --shadow-glow: 0 0 60px rgba(212,175,55,0.4);
    --shadow-glow-sm: 0 0 30px rgba(212,175,55,0.3);
    --shadow-gold: 0 8px 32px rgba(212,175,55,0.35);
    --shadow-gold-lg: 0 16px 48px rgba(212,175,55,0.4);
    --shadow-emerald: 0 8px 32px rgba(46,139,87,0.3);

    /* Layout */
    --container: 1200px;
    --container-lg: 1400px;
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-2xl: 40px;

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-in: cubic-bezier(0.4, 0, 1, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-elastic: cubic-bezier(0.68, -0.6, 0.32, 1.6);
    --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);

    /* Z-index */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal-backdrop: 400;
    --z-modal: 500;
    --z-tooltip: 600;
    --z-toast: 700;
}

/* ================================================
   KEYFRAME ANIMATIONS - PREMIUM
   ================================================ */

/* Floating Animations */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(1deg); }
    50% { transform: translateY(-20px) rotate(0deg); }
    75% { transform: translateY(-10px) rotate(-1deg); }
}

@keyframes float-slow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(3deg); }
}

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

/* Glow & Pulse */
@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
        box-shadow: 0 0 20px rgba(212,175,55,0.4);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
        box-shadow: 0 0 40px rgba(212,175,55,0.6);
    }
}

@keyframes pulse-soft {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

@keyframes glow-pulse {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(212,175,55,0.4));
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(212,175,55,0.8));
    }
}

/* Gradient Animations */
@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes gradient-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes shine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

/* Rotation */
@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotate-reverse {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

/* Slide Animations */
@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slide-down {
    from {
        opacity: 0;
        transform: translateY(-60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slide-left {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slide-right {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scale Animations */
@keyframes scale-in {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes scale-up {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pop {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Text Animations */
@keyframes text-reveal {
    from { clip-path: inset(0 100% 0 0); }
    to { clip-path: inset(0 0 0 0); }
}

@keyframes text-blur-in {
    0% {
        filter: blur(12px);
        opacity: 0;
    }
    100% {
        filter: blur(0);
        opacity: 1;
    }
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

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

/* Line & Border Animations */
@keyframes line-grow {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

@keyframes line-grow-y {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}

@keyframes border-dance {
    0%, 100% { border-color: rgba(212,175,55,0.3); }
    50% { border-color: rgba(212,175,55,0.8); }
}

@keyframes border-flow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Blob & Morph */
@keyframes blob {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    25% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
    50% { border-radius: 50% 60% 30% 60% / 30% 60% 70% 40%; }
    75% { border-radius: 60% 40% 60% 30% / 70% 30% 50% 60%; }
}

@keyframes morph {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(20px, -30px) scale(1.1); }
    50% { transform: translate(-10px, 20px) scale(0.95); }
    75% { transform: translate(15px, 10px) scale(1.05); }
}

@keyframes morph-slow {
    0%, 100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: rotate(0deg) scale(1);
    }
    33% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
        transform: rotate(120deg) scale(1.1);
    }
    66% {
        border-radius: 50% 60% 30% 60% / 30% 60% 70% 40%;
        transform: rotate(240deg) scale(0.9);
    }
}

/* Scroll Indicator */
@keyframes scroll-down {
    0% { top: -20px; opacity: 0; }
    30% { opacity: 1; }
    100% { top: 60px; opacity: 0; }
}

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

/* Ripple Effect */
@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

/* Particle */
@keyframes particle-float {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(50px);
        opacity: 0;
    }
}

/* Reveal */
@keyframes reveal-up {
    from {
        clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
    }
    to {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}

/* Counter */
@keyframes count-up {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Magnetic hover */
@keyframes magnetic-pull {
    0% { transform: translate(0, 0); }
    100% { transform: translate(var(--tx, 0), var(--ty, 0)); }
}

/* ================================================
   RESET & BASE STYLES
   ================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Custom Selection */
::selection {
    background: var(--gold);
    color: var(--navy-dark);
}

::-moz-selection {
    background: var(--gold);
    color: var(--navy-dark);
}

/* Focus Styles */
:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* Media Defaults */
img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Form Elements */
input, button, textarea, select {
    font: inherit;
}

/* Link Defaults */
a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s var(--ease);
}

/* List Defaults */
ul, ol {
    list-style: none;
}

/* Button Reset */
button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ================================================
   TYPOGRAPHY
   ================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--navy);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

.text-gradient {
    background: var(--gradient-gold-shine);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s ease infinite;
}

.text-gold {
    color: var(--gold);
}

.text-navy {
    color: var(--navy);
}

.text-muted {
    color: var(--gray-500);
}

/* ================================================
   LAYOUT
   ================================================ */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.container-lg {
    max-width: var(--container-lg);
}

.section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.section-sm {
    padding: 80px 0;
}

.section-lg {
    padding: 160px 0;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 72px;
    position: relative;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(212,175,55,0.12) 0%, rgba(212,175,55,0.06) 100%);
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold-dark);
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.4s var(--ease);
}

.section-tag::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse-glow 2s ease-in-out infinite;
}

.section-tag:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-sm);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.section-title-line {
    position: relative;
    display: inline-block;
}

.section-title-line::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 4px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ================================================
   BUTTONS - PREMIUM
   ================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius);
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: none;
    text-decoration: none;
    white-space: nowrap;
}

/* Button Shine Effect */
.btn::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: left 0.6s var(--ease);
}

.btn:hover::before {
    left: 100%;
}

/* Button Icon */
.btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s var(--ease);
}

.btn:hover svg {
    transform: translateX(4px);
}

/* Button Sizes */
.btn-sm {
    padding: 12px 24px;
    font-size: 14px;
}

.btn-lg {
    padding: 20px 44px;
    font-size: 16px;
    border-radius: var(--radius-lg);
}

/* Primary Button */
.btn-primary {
    background: var(--gradient-gold);
    background-size: 200% 200%;
    color: var(--navy-dark);
    border: none;
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold-lg);
    animation: gradient-shift 2s ease infinite;
}

.btn-primary:active {
    transform: translateY(-2px);
}

/* Secondary Button */
.btn-secondary {
    background: var(--navy);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    background: var(--navy-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* Outline Button */
.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}

.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* White Button */
.btn-white {
    background: var(--white);
    color: var(--navy);
    border: none;
    box-shadow: var(--shadow-lg);
}

.btn-white:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* White Outline Button */
.btn-outline-white {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
    transform: translateY(-4px);
}

/* Ghost Button */
.btn-ghost {
    background: transparent;
    color: var(--navy);
    padding: 12px 0;
}

.btn-ghost:hover {
    color: var(--gold-dark);
}

/* Button with Ripple */
.btn-ripple {
    overflow: hidden;
}

.btn-ripple .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

/* ================================================
   NAVIGATION - PREMIUM
   ================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-fixed);
    padding: 20px 0;
    transition: all 0.4s var(--ease);
}

.navbar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(13,27,42,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    padding: 12px 0;
}

.navbar.scrolled::before {
    opacity: 1;
    border-bottom-color: rgba(212,175,55,0.1);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
}

.logo img {
    height: 52px;
    width: auto;
    border-radius: var(--radius);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: all 0.4s var(--ease);
    border: 2px solid rgba(212,175,55,0.3);
}

.logo:hover img {
    transform: scale(1.05) rotate(-2deg);
    border-color: var(--gold);
    box-shadow: var(--shadow-glow);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text .brand-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.logo-text .brand-tagline {
    font-size: 0.7rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 500;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    border-radius: var(--radius);
    position: relative;
    transition: all 0.3s var(--ease);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    border-radius: 2px;
    transition: width 0.3s var(--ease);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: calc(100% - 40px);
}

.nav-cta {
    margin-left: 20px;
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    border-radius: var(--radius);
    transition: all 0.3s var(--ease);
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
    transform-origin: center;
}

.nav-toggle:hover {
    background: rgba(255,255,255,0.1);
}

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

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

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

/* ================================================
   HERO SECTION - PREMIUM ANIMATED
   ================================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

/* Animated Background */
.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

/* Animated Orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: morph 25s ease-in-out infinite;
    will-change: transform;
}

.hero-orb-1 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212,175,55,0.25) 0%, transparent 70%);
    top: -30%;
    right: -15%;
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(46,139,87,0.2) 0%, transparent 70%);
    bottom: -25%;
    left: -15%;
    animation-delay: -8s;
}

.hero-orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, transparent 70%);
    top: 50%;
    left: 40%;
    animation-delay: -16s;
}

.hero-orb-4 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    top: 20%;
    left: 10%;
    animation-delay: -4s;
}

/* Grid Pattern */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212,175,55,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212,175,55,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
    animation: pulse-soft 10s ease-in-out infinite;
}

/* Floating Shapes */
.hero-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border: 2px solid rgba(212,175,55,0.2);
    animation: float 12s ease-in-out infinite;
    will-change: transform;
}

.hero-shape-1 {
    width: 100px;
    height: 100px;
    border-radius: 24px;
    top: 15%;
    right: 12%;
    animation-delay: 0s;
    transform: rotate(15deg);
    background: rgba(212,175,55,0.05);
}

.hero-shape-2 {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    top: 55%;
    right: 22%;
    animation-delay: -3s;
    background: rgba(212,175,55,0.1);
}

.hero-shape-3 {
    width: 140px;
    height: 140px;
    border-radius: 32px;
    bottom: 20%;
    left: 6%;
    animation-delay: -6s;
    transform: rotate(-15deg);
    animation-name: float-slow;
}

.hero-shape-4 {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    top: 28%;
    left: 18%;
    animation-delay: -4s;
    background: rgba(46,139,87,0.12);
    border-color: rgba(46,139,87,0.25);
}

.hero-shape-5 {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    top: 70%;
    left: 35%;
    animation-delay: -2s;
    background: rgba(212,175,55,0.08);
}

.hero-shape-6 {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    top: 40%;
    right: 8%;
    animation-delay: -5s;
    border-color: rgba(255,255,255,0.1);
    animation-name: float-reverse;
}

/* Particles */
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: particle-float 15s linear infinite;
}

.hero-particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.hero-particle:nth-child(2) { left: 20%; animation-delay: 2s; }
.hero-particle:nth-child(3) { left: 30%; animation-delay: 4s; }
.hero-particle:nth-child(4) { left: 40%; animation-delay: 6s; }
.hero-particle:nth-child(5) { left: 50%; animation-delay: 8s; }
.hero-particle:nth-child(6) { left: 60%; animation-delay: 1s; }
.hero-particle:nth-child(7) { left: 70%; animation-delay: 3s; }
.hero-particle:nth-child(8) { left: 80%; animation-delay: 5s; }
.hero-particle:nth-child(9) { left: 90%; animation-delay: 7s; }
.hero-particle:nth-child(10) { left: 15%; animation-delay: 9s; }

/* Hero Content */
.hero .container {
    position: relative;
    z-index: 10;
}

.hero-content {
    max-width: 760px;
}

/* Animated Elements */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    margin-bottom: 32px;
    opacity: 0;
    animation: slide-right 0.8s var(--ease-smooth) 0.2s forwards;
}

.hero-badge-dot {
    width: 12px;
    height: 12px;
    background: var(--emerald);
    border-radius: 50%;
    animation: pulse-glow 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(46,139,87,0.6);
}

.hero-badge span {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    letter-spacing: 0.02em;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 700;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 28px;
    opacity: 0;
    animation: slide-up 1s var(--ease-smooth) 0.3s forwards;
}

.hero-title .highlight {
    position: relative;
    display: inline-block;
    background: var(--gradient-gold-shine);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 12px;
    background: var(--gold);
    opacity: 0.25;
    z-index: -1;
    transform: skewX(-5deg) scaleX(0);
    transform-origin: left;
    animation: line-grow 0.8s var(--ease-smooth) 1.2s forwards;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    max-width: 580px;
    margin-bottom: 44px;
    opacity: 0;
    animation: slide-up 1s var(--ease-smooth) 0.4s forwards;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 64px;
    opacity: 0;
    animation: slide-up 1s var(--ease-smooth) 0.5s forwards;
}

/* Trust Section */
.hero-trust {
    opacity: 0;
    animation: slide-up 1s var(--ease-smooth) 0.6s forwards;
}

.hero-trust-label {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
}

.hero-trust-items {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 32px;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s var(--ease);
}

.hero-trust-item:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(212,175,55,0.3);
    transform: translateY(-2px);
}

.hero-trust-item svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
}

.hero-trust-item span {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
}

/* Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: slide-up 1s var(--ease-smooth) 0.8s forwards;
}

.hero-scroll span {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: var(--gold);
    animation: scroll-down 2s ease-in-out infinite;
}

/* ================================================
   SERVICES SECTION
   ================================================ */
.services {
    background: var(--gradient-light);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-mesh);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

/* Service Card */
.service-card {
    background: var(--white);
    padding: 44px 32px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: var(--shadow-sm);
    transition: all 0.5s var(--ease);
    position: relative;
    overflow: hidden;
}

.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 var(--ease);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212,175,55,0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s var(--ease);
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-16px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    opacity: 1;
}

/* Service Icon */
.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    border-radius: var(--radius-lg);
    margin-bottom: 28px;
    color: var(--navy-dark);
    position: relative;
    transition: all 0.4s var(--ease);
}

.service-icon::before {
    content: '';
    position: absolute;
    inset: -6px;
    background: var(--gradient-gold);
    border-radius: inherit;
    opacity: 0;
    filter: blur(20px);
    transition: opacity 0.4s var(--ease);
    z-index: -1;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
}

.service-card:hover .service-icon::before {
    opacity: 0.5;
}

.service-icon svg {
    width: 36px;
    height: 36px;
}

.service-title {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 14px;
    transition: color 0.3s var(--ease);
}

.service-card:hover .service-title {
    color: var(--gold-dark);
}

.service-desc {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.75;
    margin-bottom: 28px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    position: relative;
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.3s var(--ease);
}

.service-link:hover::after {
    width: 100%;
}

.service-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s var(--ease);
}

.service-link:hover svg {
    transform: translateX(6px);
}

/* ================================================
   TECH STACK SECTION
   ================================================ */
.tech-stack {
    background: var(--navy-dark);
    position: relative;
    overflow: hidden;
}

.tech-stack::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(212,175,55,0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(46,139,87,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.tech-stack .section-tag {
    background: rgba(212,175,55,0.15);
    border-color: rgba(212,175,55,0.3);
}

.tech-stack .section-title {
    color: var(--white);
}

.tech-stack .section-subtitle {
    color: rgba(255,255,255,0.6);
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.tech-category {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    padding: 36px 28px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.tech-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.4s var(--ease);
}

.tech-category:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(212,175,55,0.3);
    transform: translateY(-10px);
}

.tech-category:hover::before {
    transform: scaleX(1);
}

.tech-category h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 24px;
    font-weight: 600;
}

.tech-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.tech-item {
    padding: 10px 18px;
    background: rgba(255,255,255,0.08);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    transition: all 0.3s var(--ease);
    border: 1px solid transparent;
}

.tech-item:hover {
    background: var(--gold);
    color: var(--navy-dark);
    transform: scale(1.05);
    box-shadow: var(--shadow-gold);
}

/* ================================================
   WHY US SECTION
   ================================================ */
.why-us {
    background: var(--white);
    position: relative;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: center;
}

.why-us-content .section-tag,
.why-us-content .section-title,
.why-us-content .section-subtitle {
    text-align: left;
    margin-left: 0;
}

.why-us-content .section-subtitle {
    max-width: 100%;
}

.why-us-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* Feature Item */
.feature-item {
    display: flex;
    gap: 18px;
    padding: 32px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 1px solid transparent;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-gold);
    transform: scaleY(0);
    transition: transform 0.4s var(--ease);
}

.feature-item:hover {
    background: var(--white);
    border-color: var(--gray-200);
    box-shadow: var(--shadow-lg);
    transform: translateX(8px);
}

.feature-item:hover::before {
    transform: scaleY(1);
}

.feature-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    border-radius: var(--radius);
    color: var(--navy-dark);
    transition: all 0.4s var(--ease);
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: var(--shadow-gold);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-content h4 {
    font-size: 1.0625rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.feature-content p {
    font-size: 14px;
    color: var(--gray-500);
    margin: 0;
    line-height: 1.65;
}

/* ================================================
   PROCESS SECTION
   ================================================ */
.process-section {
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-mesh);
    opacity: 0.5;
    pointer-events: none;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    position: relative;
}

/* Process Line */
.process-grid::before {
    content: '';
    position: absolute;
    top: 56px;
    left: 8%;
    right: 8%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-light));
    border-radius: 10px;
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-number {
    width: 112px;
    height: 112px;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 4px solid var(--gold);
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    box-shadow: var(--shadow-lg);
    transition: all 0.5s var(--ease);
    position: relative;
}

.process-number::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px dashed rgba(212,175,55,0.35);
    animation: rotate-slow 30s linear infinite;
}

.process-number::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: var(--gradient-gold);
    opacity: 0;
    filter: blur(20px);
    z-index: -1;
    transition: opacity 0.4s var(--ease);
}

.process-step:hover .process-number {
    background: var(--gradient-gold);
    color: var(--navy-dark);
    transform: scale(1.15) rotate(-5deg);
    box-shadow: var(--shadow-gold-lg);
    border-color: var(--gold-light);
}

.process-step:hover .process-number::after {
    opacity: 0.6;
}

.process-step h4 {
    font-size: 1.0625rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 14px;
    color: var(--gray-500);
    margin: 0;
}

/* ================================================
   PORTFOLIO SECTION
   ================================================ */
.portfolio-preview {
    background: var(--white);
    position: relative;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    margin-bottom: 60px;
}

/* Portfolio Card */
.portfolio-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.5s var(--ease);
    position: relative;
}

.portfolio-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: var(--gradient-gold);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s var(--ease);
    z-index: 1;
}

.portfolio-card:hover {
    transform: translateY(-16px) scale(1.02);
    box-shadow: var(--shadow-2xl);
}

.portfolio-card:hover::before {
    opacity: 1;
}

/* Portfolio Image */
.portfolio-image {
    aspect-ratio: 16/10;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.portfolio-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212,175,55,0.3) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s var(--ease);
}

.portfolio-card:hover .portfolio-image::before {
    opacity: 1;
}

.portfolio-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255,255,255,0.15);
    transition: all 0.5s var(--ease);
}

.portfolio-card:hover .portfolio-placeholder {
    transform: translate(-50%, -50%) scale(1.2) rotate(10deg);
    color: rgba(255,255,255,0.3);
}

.portfolio-placeholder svg {
    width: 80px;
    height: 80px;
}

/* Portfolio Content */
.portfolio-content {
    padding: 32px;
}

.portfolio-category {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(212,175,55,0.1);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-dark);
    margin-bottom: 14px;
}

.portfolio-content h3 {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 10px;
    transition: color 0.3s var(--ease);
}

.portfolio-card:hover .portfolio-content h3 {
    color: var(--gold-dark);
}

.portfolio-content p {
    font-size: 15px;
    color: var(--gray-500);
    margin-bottom: 24px;
    line-height: 1.7;
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    position: relative;
}

.portfolio-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s var(--ease);
}

.portfolio-link:hover svg {
    transform: translateX(6px);
}

.portfolio-cta {
    text-align: center;
}

/* ================================================
   TESTIMONIALS SECTION
   ================================================ */
.testimonials-section {
    background: var(--gray-50);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '"';
    position: absolute;
    top: 3%;
    left: 2%;
    font-family: var(--font-display);
    font-size: 25rem;
    color: var(--gold);
    opacity: 0.05;
    line-height: 1;
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* Testimonial Card */
.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid transparent;
    transition: all 0.4s var(--ease);
    position: relative;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 36px;
    right: 36px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 0 0 4px 4px;
    transform: scaleX(0);
    transition: transform 0.4s var(--ease);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(212,175,55,0.2);
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-quote {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.85;
    margin-bottom: 32px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 18px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--navy-dark);
    font-size: 1.25rem;
    box-shadow: var(--shadow-gold);
    transition: all 0.3s var(--ease);
}

.testimonial-card:hover .testimonial-avatar {
    transform: scale(1.1) rotate(-5deg);
}

.testimonial-info h4 {
    font-size: 1.0625rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.testimonial-info p {
    font-size: 14px;
    color: var(--gray-500);
    margin: 0;
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-top: 10px;
}

.testimonial-rating svg {
    width: 18px;
    height: 18px;
    fill: var(--gold);
}

/* ================================================
   CTA SECTION
   ================================================ */
.cta-section {
    background: var(--gradient-hero);
    padding: 140px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(212,175,55,0.15) 0%, transparent 60%);
    animation: morph 25s ease-in-out infinite;
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    color: var(--white);
    margin-bottom: 24px;
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.75);
    max-width: 560px;
    margin: 0 auto 48px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 100px 0 40px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 60px;
    margin-bottom: 72px;
}

/* Footer Brand */
.footer-brand .logo {
    margin-bottom: 28px;
}

.footer-brand .logo img {
    border-color: rgba(212,175,55,0.4);
}

.footer-brand p {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    line-height: 1.85;
    margin-bottom: 32px;
}

.footer-social {
    display: flex;
    gap: 14px;
}

.footer-social a {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius);
    color: var(--white);
    transition: all 0.3s var(--ease);
    border: 1px solid transparent;
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--navy-dark);
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

/* Footer Links */
.footer-links h4,
.footer-contact h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 28px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.footer-links ul li {
    margin-bottom: 16px;
}

.footer-links a {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    transition: all 0.3s var(--ease);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s var(--ease);
}

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

.footer-links a:hover::before {
    width: 14px;
}

/* Footer Contact */
.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 15px;
    color: rgba(255,255,255,0.6);
}

.footer-contact svg {
    flex-shrink: 0;
    color: var(--gold);
    margin-top: 3px;
}

.footer-contact a {
    color: rgba(255,255,255,0.6);
}

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

/* Footer Bottom */
.footer-bottom {
    padding-top: 44px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 32px;
}

.footer-bottom-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.4);
}

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

/* ================================================
   PAGE HEROES
   ================================================ */
.page-hero {
    padding: 180px 0 100px;
    background: var(--gradient-hero);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(212,175,55,0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(46,139,87,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212,175,55,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212,175,55,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--white);
    margin-bottom: 24px;
    opacity: 0;
    animation: slide-up 0.8s var(--ease-smooth) 0.1s forwards;
}

.page-hero p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.75);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.8;
    opacity: 0;
    animation: slide-up 0.8s var(--ease-smooth) 0.2s forwards;
}

/* Contact, About, Services, Portfolio Hero Aliases */
.contact-hero,
.about-hero,
.services-hero,
.portfolio-hero {
    padding: 180px 0 100px;
    background: var(--gradient-hero);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before,
.about-hero::before,
.services-hero::before,
.portfolio-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(212,175,55,0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(46,139,87,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-hero h1,
.about-hero h1,
.services-hero h1,
.portfolio-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--white);
    margin-bottom: 20px;
}

.contact-hero p,
.about-hero p,
.services-hero p,
.portfolio-hero p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.75);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Hero Section Tag & Highlight - For Dark Backgrounds */
.services-hero .section-tag,
.contact-hero .section-tag,
.about-hero .section-tag,
.portfolio-hero .section-tag {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
    color: var(--gold);
}

.services-hero h1 .highlight,
.contact-hero h1 .highlight,
.about-hero h1 .highlight,
.portfolio-hero h1 .highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-hero-content,
.page-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* ================================================
   CONTACT PAGE
   ================================================ */
.contact-section {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: 52px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-100);
}

.contact-form-wrapper h2 {
    font-size: 1.875rem;
    margin-bottom: 36px;
}

.form-group {
    margin-bottom: 28px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 10px;
}

.form-group label .required {
    color: #E53935;
}

.form-control {
    width: 100%;
    padding: 18px 22px;
    font-family: var(--font-body);
    font-size: 15px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    background: var(--white);
    transition: all 0.3s var(--ease);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(212,175,55,0.1);
}

.form-control::placeholder {
    color: var(--gray-400);
}

textarea.form-control {
    min-height: 180px;
    resize: vertical;
}

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23737373' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 52px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

/* Contact Info */
.contact-info h2 {
    font-size: 1.875rem;
    margin-bottom: 44px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--gray-200);
    transition: all 0.3s var(--ease);
}

.contact-method:last-of-type {
    border-bottom: none;
}

.contact-method-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    border-radius: var(--radius-lg);
    color: var(--navy-dark);
    flex-shrink: 0;
    transition: all 0.4s var(--ease);
}

.contact-method:hover .contact-method-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: var(--shadow-gold);
}

.contact-method-content h4 {
    font-size: 1.0625rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.contact-method-content p {
    font-size: 15px;
    color: var(--gray-500);
    margin: 0;
}

.contact-method-content a {
    color: var(--navy);
    font-weight: 500;
}

.contact-method-content a:hover {
    color: var(--gold-dark);
}

/* Response Time */
.response-time {
    background: linear-gradient(135deg, rgba(46,139,87,0.1) 0%, rgba(46,139,87,0.05) 100%);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(46,139,87,0.2);
}

.response-time h4 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--emerald);
}

.response-time p {
    font-size: 15px;
    color: var(--gray-600);
    margin: 0;
}

/* ================================================
   ABOUT PAGE
   ================================================ */
.story-section {
    padding: 100px 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-text h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 28px;
}

.story-text p {
    font-size: 1.0625rem;
    color: var(--gray-600);
    line-height: 1.9;
    margin-bottom: 22px;
}

.story-image-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.story-image-wrapper::before {
    content: '';
    position: absolute;
    inset: -6px;
    background: var(--gradient-gold);
    border-radius: inherit;
    z-index: -1;
    opacity: 0.4;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: var(--navy-dark);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.4s var(--ease);
}

.stat-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-8px);
    border-color: rgba(212,175,55,0.3);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    max-width: 960px;
    margin: 0 auto;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.5s var(--ease);
}

.team-card:hover {
    transform: translateY(-16px);
    box-shadow: var(--shadow-2xl);
}

.team-image {
    aspect-ratio: 1;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.team-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212,175,55,0.2) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s var(--ease);
}

.team-card:hover .team-image::before {
    opacity: 1;
}

.team-image-placeholder {
    font-size: 8rem;
    color: rgba(255,255,255,0.12);
}

.team-content {
    padding: 40px;
    text-align: center;
}

.team-content h3 {
    font-size: 1.625rem;
    margin-bottom: 6px;
}

.team-role {
    font-size: 1.0625rem;
    color: var(--gold-dark);
    font-weight: 500;
    margin-bottom: 18px;
}

.team-bio {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.75;
}

/* Values Section */
.values-section {
    padding: 100px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.value-card {
    text-align: center;
    padding: 48px 32px;
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    border: 1px solid transparent;
    transition: all 0.5s var(--ease);
}

.value-card:hover {
    background: var(--white);
    border-color: rgba(212,175,55,0.3);
    box-shadow: var(--shadow-xl);
    transform: translateY(-12px);
}

.value-icon {
    width: 88px;
    height: 88px;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    border-radius: var(--radius-xl);
    color: var(--navy-dark);
    transition: all 0.4s var(--ease);
}

.value-card:hover .value-icon {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: var(--shadow-gold);
}

.value-card h4 {
    font-size: 1.25rem;
    margin-bottom: 14px;
}

.value-card p {
    font-size: 14px;
    color: var(--gray-500);
    margin: 0;
    line-height: 1.75;
}

/* ================================================
   SERVICES PAGE
   ================================================ */
.service-detail {
    padding: 100px 0;
    border-bottom: 1px solid var(--gray-200);
}

.service-detail:nth-child(even) {
    background: var(--gray-50);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.service-detail:nth-child(even) .service-detail-grid {
    direction: rtl;
}

.service-detail:nth-child(even) .service-detail-grid > * {
    direction: ltr;
}

.service-detail-content h2 {
    font-family: var(--font-display);
    font-size: 2.25rem;
    margin-bottom: 20px;
}

.service-detail-content > p {
    font-size: 1.0625rem;
    color: var(--gray-500);
    margin-bottom: 36px;
    line-height: 1.85;
}

/* Service Features */
.service-features {
    margin-bottom: 36px;
}

.service-features h4 {
    font-size: 1.0625rem;
    font-weight: 600;
    margin-bottom: 22px;
}

.service-features ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--gray-600);
}

.service-features li svg {
    flex-shrink: 0;
    color: var(--emerald);
    margin-top: 3px;
}

/* Service Tech */
.service-tech {
    margin-bottom: 36px;
}

.service-tech h4 {
    font-size: 1.0625rem;
    font-weight: 600;
    margin-bottom: 18px;
}

.service-tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.service-tech-list span {
    padding: 10px 20px;
    background: var(--gray-100);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
    transition: all 0.3s var(--ease);
}

.service-tech-list span:hover {
    background: var(--gold);
    color: var(--navy-dark);
}

/* Service Investment */
.service-investment {
    padding: 32px;
    background: linear-gradient(135deg, rgba(212,175,55,0.1) 0%, rgba(212,175,55,0.05) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(212,175,55,0.2);
}

.service-investment h4 {
    font-size: 1.0625rem;
    font-weight: 600;
    margin-bottom: 18px;
    color: var(--gold-dark);
}

.service-investment p {
    font-size: 15px;
    color: var(--gray-600);
    margin-bottom: 10px;
}

.service-investment p:last-child {
    margin-bottom: 0;
}

/* Service Visual Card */
.service-visual-card {
    background: var(--gradient-hero);
    border-radius: var(--radius-xl);
    padding: 60px;
    height: 100%;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.service-visual-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(212,175,55,0.25) 0%, transparent 60%);
}

.service-visual-icon {
    color: rgba(255,255,255,0.12);
    transition: all 0.5s var(--ease);
}

.service-detail:hover .service-visual-icon {
    transform: scale(1.1) rotate(5deg);
    color: rgba(255,255,255,0.2);
}

/* ================================================
   PORTFOLIO PAGE
   ================================================ */
.portfolio-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 60px;
}

.filter-btn {
    padding: 14px 32px;
    background: transparent;
    border: 2px solid var(--gray-300);
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-500);
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
}

.portfolio-full-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 44px;
}

/* Portfolio Full Card */
.portfolio-full-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.5s var(--ease);
}

.portfolio-full-card:hover {
    transform: translateY(-16px);
    box-shadow: var(--shadow-2xl);
}

.portfolio-full-image {
    aspect-ratio: 16/9;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.portfolio-full-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212,175,55,0.2) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s var(--ease);
}

.portfolio-full-card:hover .portfolio-full-image::before {
    opacity: 1;
}

.portfolio-full-content {
    padding: 40px;
}

.portfolio-full-content h3 {
    font-size: 1.625rem;
    margin-bottom: 10px;
}

.portfolio-industry {
    font-size: 14px;
    color: var(--gold-dark);
    font-weight: 500;
    margin-bottom: 22px;
}

.portfolio-description {
    font-size: 15px;
    color: var(--gray-500);
    margin-bottom: 32px;
    line-height: 1.75;
}

/* Portfolio Results */
.portfolio-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 32px;
}

.portfolio-result {
    text-align: center;
    padding: 22px 14px;
    background: var(--gray-50);
    border-radius: var(--radius);
    transition: all 0.3s var(--ease);
}

.portfolio-full-card:hover .portfolio-result {
    background: rgba(212,175,55,0.1);
}

.portfolio-result-value {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--gold-dark);
    margin-bottom: 6px;
}

.portfolio-result-label {
    font-size: 12px;
    color: var(--gray-500);
}

/* Portfolio Tech Stack */
.portfolio-tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.portfolio-tech-stack span {
    padding: 8px 16px;
    background: var(--gray-100);
    border-radius: 50px;
    font-size: 13px;
    color: var(--navy);
}

/* ================================================
   SCROLL ANIMATIONS
   ================================================ */
[data-aos] {
    opacity: 0;
    transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-down"] {
    transform: translateY(-50px);
}

[data-aos="fade-left"] {
    transform: translateX(50px);
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-out"] {
    transform: scale(1.1);
}

[data-aos].animate-in {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Animation Delays */
[data-aos-delay="100"] { transition-delay: 0.1s; }
[data-aos-delay="200"] { transition-delay: 0.2s; }
[data-aos-delay="300"] { transition-delay: 0.3s; }
[data-aos-delay="400"] { transition-delay: 0.4s; }
[data-aos-delay="500"] { transition-delay: 0.5s; }
[data-aos-delay="600"] { transition-delay: 0.6s; }

/* ================================================
   NOTIFICATION
   ================================================ */
.notification {
    position: fixed;
    bottom: 32px;
    right: 32px;
    padding: 22px 32px;
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: var(--shadow-2xl);
    transform: translateY(150px);
    opacity: 0;
    transition: all 0.4s var(--ease);
    z-index: var(--z-toast);
    max-width: 440px;
}

.notification.show {
    transform: translateY(0);
    opacity: 1;
}

.notification-success {
    background: var(--emerald);
}

.notification-error {
    background: #E53935;
}

.notification svg {
    flex-shrink: 0;
}

.notification-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.notification-close:hover {
    opacity: 1;
}

.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: rotate-slow 0.8s linear infinite;
}

/* ================================================
   BACK TO TOP
   ================================================ */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 52px;
    height: 52px;
    background: var(--gradient-gold);
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s var(--ease);
    z-index: var(--z-fixed);
    box-shadow: var(--shadow-gold);
}

.back-to-top svg {
    color: var(--navy-dark);
    width: 22px;
    height: 22px;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold-lg);
}

/* ================================================
   CURSOR - CUSTOM
   ================================================ */
.cursor-dot,
.cursor-outline {
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    mix-blend-mode: difference;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--gold);
    transition: all 0.1s ease-out;
}

.cursor-outline.hover {
    width: 60px;
    height: 60px;
    border-color: var(--gold);
    background: rgba(212,175,55,0.1);
}

/* ================================================
   SCROLLBAR
   ================================================ */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
    border: 2px solid var(--gray-100);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--gold) var(--gray-100);
}

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */

/* Large Desktop */
@media (max-width: 1400px) {
    .container {
        max-width: 1200px;
    }
}

/* Desktop */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tech-categories {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-grid::before {
        display: none;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet Landscape */
@media (max-width: 1024px) {
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .why-us-content {
        text-align: center;
    }

    .why-us-content .section-tag,
    .why-us-content .section-title,
    .why-us-content .section-subtitle {
        text-align: center;
    }

    .portfolio-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid,
    .story-content,
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .service-detail:nth-child(even) .service-detail-grid {
        direction: ltr;
    }

    .portfolio-full-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .logo-text {
        display: none;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .section {
        padding: 80px 0;
    }

    /* Navigation */
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        background: var(--navy-dark);
        padding: 120px 24px 24px;
        gap: 8px;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        padding: 18px;
        font-size: 1.375rem;
        text-align: center;
    }

    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    /* Hero */
    .hero {
        text-align: center;
        padding: 140px 0 80px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-trust {
        text-align: center;
    }

    .hero-trust-items {
        justify-content: center;
    }

    .hero-scroll {
        display: none;
    }

    .hero-shape {
        display: none;
    }

    /* Grids */
    .services-grid {
        grid-template-columns: 1fr;
    }

    .tech-categories {
        grid-template-columns: 1fr;
    }

    .why-us-features {
        grid-template-columns: 1fr;
    }

    .portfolio-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    /* Page Heroes */
    .contact-hero,
    .about-hero,
    .services-hero,
    .portfolio-hero,
    .page-hero {
        padding: 140px 0 60px;
    }

    /* Forms */
    .form-row {
        grid-template-columns: 1fr;
    }

    /* Teams & Values */
    .team-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    /* Services */
    .service-features ul {
        grid-template-columns: 1fr;
    }

    /* Portfolio */
    .portfolio-results {
        grid-template-columns: 1fr;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Mobile Large */
@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .hero-trust-items {
        flex-direction: column;
        gap: 12px;
    }

    .hero-trust-item {
        width: 100%;
        justify-content: center;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-number {
        width: 88px;
        height: 88px;
        font-size: 1.75rem;
    }

    .contact-form-wrapper {
        padding: 28px;
    }

    .notification {
        left: 20px;
        right: 20px;
        bottom: 20px;
        max-width: none;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
    }
}

/* Mobile Small */
@media (max-width: 360px) {
    .hero-title {
        font-size: 2.25rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .btn-lg {
        padding: 16px 32px;
        font-size: 15px;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --gold: #FFD700;
        --navy: #000033;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .hero-bg,
    .hero-scroll,
    .back-to-top,
    .notification {
        display: none !important;
    }

    body {
        color: black;
        background: white;
    }

    .hero {
        background: white;
        color: black;
    }
}

/* ========================================
   Legal Pages (Privacy, Terms)
   ======================================== */

.legal-content {
    background: var(--color-white);
    padding: 5rem 0;
}

.legal-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-gray-200);
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.legal-section h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 1rem;
}

.legal-section h3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-navy-light);
    margin: 1.5rem 0 0.75rem;
}

.legal-section p {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.legal-section ul {
    margin: 1rem 0 1.5rem 1.5rem;
    padding: 0;
}

.legal-section ul li {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 0.5rem;
}

.legal-section ul li::marker {
    color: var(--color-gold);
}

.legal-section strong {
    color: var(--color-navy);
    font-weight: 600;
}

.legal-section a {
    color: var(--color-gold-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: var(--color-gold);
    text-decoration: underline;
}

.contact-info-list {
    list-style: none;
    margin-left: 0 !important;
    padding: 1rem;
    background: var(--color-gray-100);
    border-radius: var(--radius-md);
}

.contact-info-list li {
    padding-left: 0 !important;
    margin-bottom: 0.75rem !important;
}

.contact-info-list li:last-child {
    margin-bottom: 0 !important;
}

/* Legal page responsive */
@media (max-width: 768px) {
    .legal-content {
        padding: 3rem 0;
    }

    .legal-section h2 {
        font-size: 1.25rem;
    }

    .legal-section p,
    .legal-section ul li {
        font-size: 0.9375rem;
    }
}

/* ========================================
   PREMIUM HOMEPAGE STYLES
   Modern Premium Agency Design
   ======================================== */

/* Hero Premium */
.hero-premium {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
    padding-top: 80px;
}

.hero-bg-premium {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.6;
}

.gradient-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation: float-slow 20s ease-in-out infinite;
}

.gradient-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--emerald) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation: float-slow 25s ease-in-out infinite reverse;
}

.gradient-orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212,175,55,0.5) 0%, transparent 70%);
    top: 50%;
    left: 30%;
    animation: float-slow 15s ease-in-out infinite;
}

.hero-mesh {
    position: absolute;
    inset: 0;
    background: var(--gradient-mesh);
    opacity: 0.8;
}

.hero-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 0%, rgba(212,175,55,0.15) 0%, transparent 50%);
}

.floating-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: var(--radius);
    animation: float-rotate 30s linear infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    animation-delay: -5s;
    border-radius: 50%;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: -10s;
}

.shape-4 {
    width: 40px;
    height: 40px;
    top: 30%;
    right: 30%;
    animation-delay: -15s;
    border-radius: 50%;
}

.shape-5 {
    width: 70px;
    height: 70px;
    bottom: 30%;
    right: 10%;
    animation-delay: -20s;
}

@keyframes float-slow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(20px, 30px) scale(1.02); }
}

@keyframes float-rotate {
    0% { transform: rotate(0deg) translate(10px, 10px); opacity: 0.3; }
    50% { opacity: 0.6; }
    100% { transform: rotate(360deg) translate(10px, 10px); opacity: 0.3; }
}

/* Hero Grid Layout */
.hero-grid-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-main-content {
    max-width: 680px;
}

/* Hero Badge Premium */
.hero-badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 1.25rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.badge-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--emerald);
    border-radius: 50%;
    position: relative;
}

.badge-dot.pulse::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 2px solid var(--emerald);
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

/* Hero Title Premium */
.hero-title-premium {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title-premium .title-line {
    display: block;
}

.hero-title-premium .title-highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}

.hero-title-premium em {
    font-style: italic;
    color: var(--gold);
}

/* Hero Subtitle Premium */
.hero-subtitle-premium {
    font-family: var(--font-body);
    font-size: 1.25rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 560px;
}

/* Hero CTA Premium */
.hero-cta-premium {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-gold);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    filter: blur(15px);
}

.btn-glow:hover::before {
    opacity: 0.6;
}

.btn-glass {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: var(--radius);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    transition: all 0.3s var(--ease);
    text-decoration: none;
}

.btn-glass:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

/* Glass Card */
.glass-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

/* Hero Side Content */
.hero-side-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-stats-card {
    padding: 1.5rem;
}

.stats-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.875rem;
    font-weight: 500;
}

.stats-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212,175,55,0.15);
    border-radius: var(--radius-sm);
    color: var(--gold);
}

.stats-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.stat-item-mini {
    text-align: center;
}

.stat-item-mini .stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.stat-item-mini .stat-suffix {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gold);
}

.stat-item-mini .stat-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    margin-top: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-clients-card {
    padding: 1.25rem;
    text-align: center;
}

.clients-label {
    display: block;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1rem;
}

.clients-avatars {
    display: flex;
    justify-content: center;
    gap: 0;
}

.avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy-light), var(--navy));
    border: 2px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white);
    margin-left: -8px;
    transition: transform 0.3s ease;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar:hover {
    transform: translateY(-4px);
    z-index: 10;
}

.avatar-more {
    background: var(--gold);
    color: var(--navy-dark);
}

/* Hero Scroll Premium */
.hero-scroll-premium {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 10;
}

.scroll-line-animated {
    width: 2px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.scroll-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    position: absolute;
    left: -2px;
    animation: scroll-indicator 2s infinite;
}

@keyframes scroll-indicator {
    0% { top: 0; opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* Brands Section */
.brands-section {
    padding: 4rem 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
}

.brands-wrapper {
    text-align: center;
}

.brands-label {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.brands-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.brand-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-400);
    transition: all 0.3s ease;
}

.brand-item:hover {
    color: var(--navy);
}

.brand-item span {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Section Header Premium */
.section-header-premium {
    margin-bottom: 4rem;
}

.section-header-premium.centered {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag-premium {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
}

.section-tag-premium::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1.25rem;
    height: 2px;
    background: var(--gold);
}

.section-title-premium {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--navy-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.text-gradient {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.text-gradient-light {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-subtitle-premium {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.7;
    max-width: 600px;
}

/* Services Premium */
.services-premium {
    padding: 6rem 0;
    background: var(--gray-50);
}

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

.service-card-premium {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    transition: all 0.4s var(--ease);
    overflow: hidden;
}

.service-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease);
}

.service-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.service-card-premium:hover::before {
    transform: scaleX(1);
}

.service-card-premium.featured {
    border-color: var(--gold);
    background: linear-gradient(180deg, rgba(212,175,55,0.03) 0%, var(--white) 100%);
}

.service-card-premium.featured::before {
    transform: scaleX(1);
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gold);
    color: var(--navy-dark);
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(212,175,55,0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card-premium:hover .service-card-glow {
    opacity: 1;
}

.service-icon-premium {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: var(--radius);
    color: var(--gold);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

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

.service-card-premium h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy-dark);
    margin-bottom: 0.75rem;
}

.service-card-premium > p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.service-features li {
    font-size: 0.875rem;
    color: var(--gray-500);
    padding: 0.375rem 0;
    padding-left: 1.25rem;
    position: relative;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

.service-link-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gold-dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-link-premium svg {
    transition: transform 0.3s ease;
}

.service-link-premium:hover {
    color: var(--gold);
}

.service-link-premium:hover svg {
    transform: translateX(4px);
}

/* Why Premium Section */
.why-premium {
    padding: 6rem 0;
    background: var(--white);
}

.why-premium-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-premium-content .section-subtitle-premium {
    margin-bottom: 2rem;
}

.why-premium-cta {
    margin-top: 2rem;
}

.why-premium-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-card-premium {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.feature-card-premium:hover {
    background: var(--white);
    border-color: var(--gray-200);
    box-shadow: var(--shadow-md);
}

.feature-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    min-width: 50px;
}

.feature-card-premium h4 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--navy-dark);
    margin-bottom: 0.5rem;
}

.feature-card-premium p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Process Premium */
.process-premium {
    padding: 6rem 0;
    background: var(--gray-50);
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 2rem;
}

.process-line {
    position: absolute;
    top: 3.5rem;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--gray-200) 0%, var(--gold) 50%, var(--gray-200) 100%);
}

.process-step-premium {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    flex: 1;
}

.process-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 50%;
    color: var(--navy);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.process-step-premium:hover .process-icon {
    border-color: var(--gold);
    color: var(--gold);
    transform: scale(1.1);
    box-shadow: var(--shadow-gold);
}

.process-content {
    max-width: 180px;
}

.process-number {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.process-content h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy-dark);
    margin-bottom: 0.375rem;
}

.process-content p {
    font-size: 0.8125rem;
    color: var(--gray-500);
    line-height: 1.5;
}

/* Portfolio Premium */
.portfolio-premium {
    padding: 6rem 0;
    background: var(--white);
}

.portfolio-grid-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.portfolio-card-premium {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all 0.4s var(--ease);
}

.portfolio-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.portfolio-image-premium {
    height: 220px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    position: relative;
    overflow: hidden;
}

.portfolio-placeholder-premium {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.3);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13,27,42,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-card-premium:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-content-premium {
    padding: 1.5rem;
}

.portfolio-category-premium {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portfolio-content-premium h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy-dark);
    margin: 0.5rem 0;
}

.portfolio-content-premium > p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.portfolio-stats {
    display: flex;
    gap: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
}

.portfolio-stat {
    display: flex;
    flex-direction: column;
}

.portfolio-stat .stat-value {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy-dark);
    line-height: 1;
}

.portfolio-stat .stat-desc {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-top: 0.25rem;
}

.portfolio-cta-premium {
    text-align: center;
    margin-top: 3rem;
}

/* Testimonials Premium */
.testimonials-premium {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
}

.testimonials-premium .section-tag-premium {
    color: var(--gold);
}

.testimonials-premium .section-tag-premium::before {
    background: var(--gold);
}

.testimonials-premium .section-title-premium {
    color: var(--white);
}

.testimonials-grid-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card-premium {
    padding: 2rem;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.25rem;
}

.testimonial-rating svg {
    width: 18px;
    height: 18px;
    fill: var(--gold);
}

.testimonial-card-premium blockquote {
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: normal;
}

.testimonial-author-premium {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--navy-dark);
    font-size: 0.875rem;
}

.author-info h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.125rem;
}

.author-info p {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 0.125rem;
}

.author-location {
    font-size: 0.75rem;
    color: var(--gold);
}

/* CTA Premium */
.cta-premium {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.cta-orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
    top: -150px;
    right: -100px;
    opacity: 0.3;
}

.cta-orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--emerald) 0%, transparent 70%);
    bottom: -100px;
    left: -50px;
    opacity: 0.2;
}

.cta-mesh {
    position: absolute;
    inset: 0;
    background: var(--gradient-mesh);
    opacity: 0.5;
}

.cta-content-premium {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-tag {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.cta-content-premium h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.cta-content-premium > p {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 2.5rem;
}

.cta-buttons-premium {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.btn-white {
    background: var(--white);
    color: var(--navy-dark);
}

.btn-white:hover {
    background: var(--gray-100);
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
}

.trust-item svg {
    color: var(--emerald);
}

/* Footer Premium */
.footer-premium {
    background: var(--navy-dark);
}

/* Responsive Styles for Premium */
@media (max-width: 1200px) {
    .services-grid-premium {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .hero-grid-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-side-content {
        flex-direction: row;
    }

    .hero-stats-card,
    .hero-clients-card {
        flex: 1;
    }

    .why-premium-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .process-timeline {
        flex-wrap: wrap;
        gap: 2rem;
        justify-content: center;
    }

    .process-line {
        display: none;
    }

    .process-step-premium {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .hero-premium {
        padding-top: 100px;
    }

    .hero-side-content {
        flex-direction: column;
    }

    .services-grid-premium {
        grid-template-columns: 1fr;
    }

    .portfolio-grid-premium {
        grid-template-columns: 1fr;
    }

    .testimonials-grid-premium {
        grid-template-columns: 1fr;
    }

    .process-step-premium {
        flex: 0 0 100%;
    }

    .brands-grid {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-cta-premium {
        flex-direction: column;
    }

    .hero-cta-premium .btn {
        width: 100%;
        justify-content: center;
    }

    .stats-card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-item-mini .stat-number {
        font-size: 1.5rem;
    }

    .cta-buttons-premium {
        flex-direction: column;
    }

    .cta-buttons-premium .btn {
        width: 100%;
        justify-content: center;
    }

    .cta-trust {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}
