/* ============================================================
   INVENTIVE LEGAL LLC — Premium Redesign
   Design System: Dark Navy + Gold Luxury Law Firm
   ============================================================ */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
    --navy-950: #020917;
    --navy-900: #050e22;
    --navy-800: #0a1934;
    --navy-700: #0f2348;
    --navy-600: #16305f;
    --gold-400: #f0c040;
    --gold-500: #d4a017;
    --gold-600: #b8860b;
    --gold-glow: rgba(212, 160, 23, 0.3);
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-light: rgba(255,255,255,0.85);
    --text-muted-light: rgba(255,255,255,0.55);

    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
    --shadow-gold: 0 0 30px rgba(212, 160, 23, 0.25);
    --shadow-navy: 0 20px 60px rgba(5, 14, 34, 0.5);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    --container-max: 1280px;
    --section-py: 100px;
}

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

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

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; cursor: pointer; background: none; }
input, select, textarea {
    font-family: var(--font-body);
    font-size: 1rem;
}

/* ===== PERFORMANCE OPTIMIZATIONS ===== */
/* Hint browser about upcoming animations */
.hero-particle,
.scroll-wheel,
.marquee-track,
.partners-track,
.preloader-fill { will-change: transform; }

/* Reduce paint area for navbar transition */
.navbar { will-change: background, padding; }

/* Let browser skip off-screen sections (major perf gain) */
.about,
.services,
.why-us,
.featured-article,
.news,
.partners,
.cta-section,
.contact,
.section-padding {
    content-visibility: auto;
    contain-intrinsic-size: 0 600px;
}

/* Prevent layout shifts from images before they load */
.about-img-main img,
.about-img-accent img,
.news-img img,
.resource-img img,
.fa-image img {
    aspect-ratio: inherit;
    object-fit: cover;
}

/* Disable expensive backdrop-filter on low-end devices */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .preloader-fill { animation: none; width: 100%; }
}

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--navy-900);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold-400);
    letter-spacing: 0.2em;
    margin-bottom: 24px;
    animation: pulse 1s ease-in-out infinite alternate;
}

.preloader-bar {
    width: 200px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    border-radius: 100px;
    overflow: hidden;
    margin: 0 auto;
}

.preloader-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-500), var(--gold-400));
    border-radius: 100px;
    animation: loading 1.5s ease-in-out infinite;
}

@keyframes loading {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

@keyframes pulse {
    from { opacity: 0.6; transform: scale(0.98); }
    to { opacity: 1; transform: scale(1); }
}

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

.section-padding { padding: var(--section-py) 0; }
.section-padding-sm { padding: 60px 0; }

.dark-section {
    background: var(--navy-900);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

/* ===== SECTION HEADER ===== */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: 12px;
}

.section-label::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold-500);
}

.section-label.light {
    color: var(--gold-400);
}

.section-label.light::before {
    background: var(--gold-400);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--navy-900);
    margin-bottom: 20px;
}

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

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

.section-title.light em {
    color: var(--gold-400);
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 560px;
}

.section-desc.light {
    color: var(--text-muted-light);
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 60px;
    gap: 20px;
}

.section-header.centered {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* ===== BUTTONS ===== */
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-400) 100%);
    color: var(--navy-900);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    box-shadow: 0 4px 15px var(--gold-glow);
    position: relative;
    overflow: hidden;
}

.btn-gold::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold-400) 0%, var(--gold-500) 100%);
    opacity: 0;
    transition: var(--transition);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--gold-glow);
}

.btn-gold:hover::before { opacity: 1; }

.btn-gold span, .btn-gold i {
    position: relative;
    z-index: 1;
}

.btn-gold.w-full {
    width: 100%;
    justify-content: center;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid var(--navy-700);
    color: var(--navy-700);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
}

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

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(5, 14, 34, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo .logo-icon {
    font-size: 1.8rem;
    filter: drop-shadow(0 0 8px var(--gold-glow));
}

.nav-logo .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.1em;
}

.logo-sub {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--gold-400);
    text-transform: uppercase;
}

.nav-menu { flex: 1; display: flex; justify-content: center; }

.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-list > li { position: relative; }

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold-400);
    background: rgba(240, 192, 64, 0.08);
}

.nav-link .fa-chevron-down {
    font-size: 0.65rem;
    transition: var(--transition);
}

.has-dropdown:hover .fa-chevron-down {
    transform: rotate(180deg);
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--navy-800);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    padding: 8px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-navy);
    backdrop-filter: blur(20px);
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    color: var(--text-light);
    font-size: 0.875rem;
    border-radius: 8px;
    transition: var(--transition);
}

.dropdown-menu li a:hover {
    background: rgba(240,192,64,0.1);
    color: var(--gold-400);
}

.dropdown-menu li a i {
    width: 18px;
    color: var(--gold-500);
    font-size: 0.8rem;
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.lang-switcher {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.lang-switcher:hover { background: rgba(255,255,255,0.08); }

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--navy-800);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    padding: 8px;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-navy);
}

.lang-switcher:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
}

.lang-opt {
    display: block;
    padding: 8px 12px;
    color: var(--text-light);
    font-size: 0.875rem;
    border-radius: 6px;
    transition: var(--transition);
}

.lang-opt:hover,
.lang-opt.active { background: rgba(240,192,64,0.1); color: var(--gold-400); }

.btn-consult {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    color: var(--navy-900);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
    box-shadow: 0 4px 15px var(--gold-glow);
}

.btn-consult:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--gold-glow);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 32px;
    padding: 4px;
}

.hamburger span {
    display: block;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-800) 40%, #1a2d5a 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--gold-400) 0%, transparent 70%);
    opacity: 0.06;
    animation: float var(--dur, 8s) ease-in-out infinite var(--delay, 0s);
}

.hero-particle:nth-child(1) { --i:1; width: 400px; height: 400px; top: -100px; right: -50px; --dur: 10s; --delay: 0s; }
.hero-particle:nth-child(2) { --i:2; width: 300px; height: 300px; bottom: -50px; left: 10%; --dur: 12s; --delay: -3s; }
.hero-particle:nth-child(3) { --i:3; width: 200px; height: 200px; top: 30%; left: 60%; --dur: 9s; --delay: -1s; }
.hero-particle:nth-child(4) { --i:4; width: 150px; height: 150px; top: 60%; right: 20%; --dur: 11s; --delay: -5s; }
.hero-particle:nth-child(5) { --i:5; width: 100px; height: 100px; top: 20%; left: 40%; --dur: 7s; --delay: -2s; }

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 80px 24px;
    max-width: 760px;
    padding-left: max(24px, calc((100vw - 1280px) / 2 + 24px));
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(240,192,64,0.1);
    border: 1px solid rgba(240,192,64,0.3);
    color: var(--gold-400);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 28px;
    animation: fadeInDown 0.8s ease both;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--gold-400);
    border-radius: 50%;
    animation: blink 1.5s ease-in-out infinite;
}

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

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
    animation: fadeInDown 0.8s ease 0.1s both;
}

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

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

.hero-desc {
    color: var(--text-muted-light);
    font-size: 1.15rem;
    line-height: 1.7;
    max-width: 540px;
    margin-bottom: 40px;
    animation: fadeInDown 0.8s ease 0.2s both;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: fadeInDown 0.8s ease 0.3s both;
}

.btn-primary-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    color: var(--navy-900);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 16px 32px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    box-shadow: 0 4px 20px var(--gold-glow);
}

.btn-primary-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px var(--gold-glow);
}

.btn-ghost-hero {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

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

.play-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    font-size: 0.8rem;
    transition: var(--transition);
}

.btn-ghost-hero:hover .play-icon {
    background: var(--gold-400);
    color: var(--navy-900);
    border-color: var(--gold-400);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    animation: fadeInDown 0.8s ease 0.4s both;
}

.stat-item { text-align: left; }

.stat-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold-400);
    line-height: 1;
}

.stat-label {
    color: var(--text-muted-light);
    font-size: 0.8rem;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
}

/* Hero Scroll */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted-light);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: fadeIn 1s ease 1s both;
}

.scroll-indicator {
    width: 28px;
    height: 44px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 100px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 6px;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--gold-400);
    border-radius: 100px;
    animation: scrollWheel 2s ease infinite;
}

@keyframes scrollWheel {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(16px); opacity: 0; }
}

/* ===== MARQUEE STRIP ===== */
.marquee-strip {
    background: var(--gold-500);
    padding: 14px 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 0;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.marquee-track span {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--navy-900);
    padding: 0 20px;
    white-space: nowrap;
}

.marquee-track .sep {
    color: var(--navy-700);
    opacity: 0.5;
    padding: 0 4px;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ===== ABOUT ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-img-wrap {
    position: relative;
    height: 500px;
}

.about-img-main {
    position: absolute;
    top: 0;
    left: 0;
    right: 60px;
    bottom: 60px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 180px;
    height: 200px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}

.about-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-badge-float {
    position: absolute;
    top: 40px;
    right: 30px;
    background: var(--navy-900);
    color: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-navy);
    border: 1px solid rgba(240,192,64,0.2);
}

.badge-icon {
    font-size: 1.8rem;
}

.badge-num {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-400);
    line-height: 1;
}

.badge-txt {
    font-size: 0.75rem;
    color: var(--text-muted-light);
}

.about-text {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-features {
    margin: 32px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-900);
    font-size: 1rem;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy-900);
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ===== SERVICES ===== */
.services-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(240,192,64,0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

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

.service-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.service-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(240,192,64,0.3);
    transform: translateY(-4px);
}

.service-card.featured {
    background: linear-gradient(135deg, rgba(212,160,23,0.12), rgba(240,192,64,0.06));
    border-color: rgba(240,192,64,0.3);
}

.service-card.featured:hover {
    border-color: var(--gold-400);
}

.service-num {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(255,255,255,0.04);
    position: absolute;
    top: 16px;
    right: 20px;
    line-height: 1;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--navy-900);
    margin-bottom: 24px;
    transition: var(--transition);
}

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

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-muted-light);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold-400);
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}

.service-link:hover { gap: 10px; }

.card-glow {
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(212,160,23,0.15) 0%, transparent 70%);
    transition: var(--transition);
    pointer-events: none;
}

.service-card:hover .card-glow {
    bottom: -20px;
    left: -20px;
    width: 200px;
    height: 200px;
}

/* ===== WHY US ===== */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-list {
    margin: 32px 0 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.why-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.why-check {
    width: 28px;
    height: 28px;
    background: rgba(212,160,23,0.1);
    border: 1px solid rgba(212,160,23,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-600);
    font-size: 0.7rem;
    flex-shrink: 0;
}

.process-timeline {
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-num {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-600);
    min-width: 48px;
    line-height: 1;
}

.step-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy-900);
    margin-bottom: 4px;
}

.step-content p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.process-connector {
    width: 2px;
    height: 32px;
    background: linear-gradient(to bottom, var(--gold-400), rgba(212,160,23,0.2));
    margin: 10px 0 10px 23px;
}

/* ===== FEATURED ARTICLE ===== */
.fa-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.fa-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.fa-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.fa-image:hover img { transform: scale(1.05); }

.fa-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5,14,34,0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

.fa-category {
    background: var(--gold-500);
    color: var(--navy-900);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
}

.fa-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 600;
    color: var(--white);
    margin: 16px 0 20px;
    line-height: 1.3;
}

.fa-content p {
    color: var(--text-muted-light);
    line-height: 1.8;
    margin-bottom: 32px;
}

.article-meta {
    display: flex;
    gap: 20px;
}

.art-date, .art-read {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted-light);
    font-size: 0.85rem;
}

/* ===== NEWS ===== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.news-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.news-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: rgba(212,160,23,0.3);
}

.news-img {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.news-card:hover .news-img img { transform: scale(1.05); }

.news-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gold-500);
    color: var(--navy-900);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
}

.news-body {
    padding: 24px;
}

.news-date {
    font-size: 0.78rem;
    color: var(--gray-500);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-body h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy-900);
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-body p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold-600);
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}

.news-link:hover { gap: 10px; }

/* ===== PARTNERS ===== */
.partners {
    background: var(--gray-100);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.partners-header {
    text-align: center;
    margin-bottom: 32px;
}

.partners-header p {
    color: var(--gray-500);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 500;
}

.partners-track-wrap {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.partners-track {
    display: flex;
    align-items: center;
    gap: 0;
    width: max-content;
    animation: marquee 25s linear infinite;
}

.partner-logo {
    padding: 0 40px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--gray-400);
    transition: var(--transition);
    white-space: nowrap;
    position: relative;
}

.partner-logo::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gray-300);
}

.partner-logo:hover { color: var(--navy-700); }

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--gold-400) 0%, transparent 70%);
    opacity: 0.05;
}

.cta-particle:nth-child(1) { width: 500px; height: 500px; top: -200px; left: -100px; }
.cta-particle:nth-child(2) { width: 400px; height: 400px; bottom: -150px; right: -50px; }
.cta-particle:nth-child(3) { width: 200px; height: 200px; top: 30%; left: 50%; }

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

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    color: var(--text-muted-light);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

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

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    color: var(--navy-900);
    font-weight: 700;
    font-size: 1rem;
    padding: 16px 36px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    box-shadow: 0 4px 20px var(--gold-glow);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px var(--gold-glow);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    padding: 16px 36px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.btn-cta-secondary:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-3px);
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-items {
    margin: 32px 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-900);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--navy-900);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-item p a {
    color: var(--gold-600);
    font-weight: 500;
    transition: var(--transition);
}

.contact-item p a:hover { color: var(--gold-500); }

.contact-hours {
    background: var(--gray-100);
    border-radius: var(--radius-md);
    padding: 24px;
    border: 1px solid var(--gray-200);
}

.contact-hours h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hours-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px 24px;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.hours-grid span:nth-child(even) {
    font-weight: 600;
    color: var(--navy-700);
    text-align: right;
}

/* Contact Form */
.form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.form-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy-900);
    margin-bottom: 28px;
}

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

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

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--navy-900);
    margin-bottom: 6px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--text-primary);
    background: var(--gray-100);
    transition: var(--transition);
    outline: none;
    appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold-500);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(212,160,23,0.1);
}

.form-group textarea { resize: vertical; min-height: 120px; }

/* ===== FOOTER ===== */
.footer {
    background: var(--navy-950);
    color: var(--white);
}

.footer-main {
    padding: 80px 0 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-muted-light);
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

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

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 0.9rem;
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--gold-500);
    color: var(--navy-900);
    border-color: var(--gold-500);
    transform: translateY(-2px);
}

.footer-col h4 {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-400);
    margin-bottom: 20px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    color: var(--text-muted-light);
    font-size: 0.875rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-col ul li a:hover { color: var(--gold-400); padding-left: 4px; }

.footer-contact-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-items p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-muted-light);
    font-size: 0.875rem;
    line-height: 1.5;
}

.footer-contact-items p i {
    color: var(--gold-400);
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-bottom {
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom-inner p {
    color: var(--text-muted-light);
    font-size: 0.8rem;
}

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

.footer-bottom-links a {
    color: var(--text-muted-light);
    font-size: 0.8rem;
    transition: var(--transition);
}

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

/* ===== FLOATING BUTTONS ===== */
.float-btn {
    position: fixed;
    right: 24px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    z-index: 900;
    transition: var(--transition);
    overflow: hidden;
}

.whatsapp-btn {
    bottom: 120px;
    background: #25d366;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
}

.phone-btn {
    bottom: 56px;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    color: var(--navy-900);
    box-shadow: 0 4px 20px var(--gold-glow);
}

.float-btn:hover {
    transform: scale(1.1);
}

.float-ripple {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    animation: ripple 2s ease-out infinite;
}

.whatsapp-btn .float-ripple {
    background: rgba(37,211,102,0.2);
}

.phone-btn .float-ripple {
    background: var(--gold-glow);
}

@keyframes ripple {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(2.5); opacity: 0; }
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: var(--navy-800);
    color: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 900;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

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

.scroll-top:hover {
    background: var(--gold-500);
    color: var(--navy-900);
    transform: translateY(-3px);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

[data-aos] {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-aos="fade-up"] { transform: translateY(30px); }
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-left"] { transform: translateX(30px); }
[data-aos="zoom-in"] { transform: scale(0.95); }

[data-aos].aos-animate {
    opacity: 1;
    transform: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about-grid,
    .why-grid,
    .fa-grid,
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }

    .about-img-wrap { height: 360px; }

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

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

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

@media (max-width: 768px) {
    :root { --section-py: 70px; }

    .nav-menu,
    .nav-actions { display: none; }

    .nav-menu.open {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--navy-900);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 999;
    }

    .nav-menu.open .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .nav-menu.open .nav-link {
        font-size: 1.3rem;
        padding: 12px 24px;
    }

    .dropdown-menu { display: none; }

    .hamburger { display: flex; z-index: 1000; position: relative; }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat-divider { display: none; }

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

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

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

    .form-card { padding: 28px 20px; }

    .section-header { flex-direction: column; align-items: flex-start; }

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

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .cta-actions { flex-direction: column; }
}
