/* ================================================================
   Başocak Sigorta — Premium Corporate Site CSS
   ================================================================ */

/* ----------------------------------------------------------------
   CSS Variables
   ---------------------------------------------------------------- */
:root {
    --navy:        #060c18;
    --navy-light:  #0a192f;
    --cobalt:      #112240;
    --gold:        #c5a059;
    --gold-light:  #d4af37;
    --gold-pale:   #fdf3da;
    --white:       #ffffff;
    --off-white:   #f4f7fa;
    --gray-100:    #f8fafc;
    --gray-200:    #e2e8f0;
    --gray-400:    #94a3b8;
    --gray-600:    #475569;
    --text:        #0f172a;
    --text-muted:  #64748b;

    --accent-blue: #3b82f6;
    --accent-indigo:#6366f1;
    --success:     #10b981;
    --danger:      #ef4444;
    --warning:     #f59e0b;

    --font-body:   'Inter', system-ui, -apple-system, sans-serif;
    --font-display:'Outfit', 'Inter', sans-serif;

    --radius-sm:   10px;
    --radius-md:   16px;
    --radius-lg:   24px;
    --radius-xl:   48px;

    --glass-bg:    rgba(255, 255, 255, 0.7);
    --glass-border:rgba(255, 255, 255, 0.3);
    --glass-shadow:0 8px 32px 0 rgba(31, 38, 135, 0.07);

    --shadow-sm:   0 2px 4px rgba(0,0,0,0.02), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md:   0 10px 15px -3px rgba(0,0,0,0.05), 0 4px 6px -2px rgba(0,0,0,0.02);
    --shadow-lg:   0 20px 25px -5px rgba(0,0,0,0.08), 0 10px 10px -5px rgba(0,0,0,0.03);
    --shadow-premium: 0 25px 50px -12px rgba(0, 0, 0, 0.15);

    --transition:  all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --navbar-h:    80px;
}

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

html { scroll-behavior: smooth; }

body.site-body {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; }

/* ----------------------------------------------------------------
   Preloader
   ---------------------------------------------------------------- */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--navy);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

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

.preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.shield-pulse {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cobalt), var(--navy));
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(201,168,76,0.4);
    animation: shieldPulse 1.5s ease-in-out infinite;
}

.shield-pulse i {
    font-size: 2.4rem;
    color: var(--gold);
}

@keyframes shieldPulse {
    0%,100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(201,168,76,0.4); }
    50% { transform: scale(1.06); box-shadow: 0 0 0 16px rgba(201,168,76,0); }
}

/* ----------------------------------------------------------------
   Navbar
   ---------------------------------------------------------------- */
.site-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--navbar-h);
    display: flex;
    align-items: center;
    background: transparent;
    transition: background var(--transition), box-shadow var(--transition), height var(--transition);
}

.site-navbar.scrolled {
    background: rgba(12,20,40,0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 24px rgba(0,0,0,0.2);
    height: 68px;
}

.site-navbar .container {
    display: flex;
    align-items: center;
    gap: 2rem;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Brand */
.site-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    flex-shrink: 0;
}

.brand-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
    flex-shrink: 0;
}

.brand-icon i {
    font-size: 1.5rem;
    color: var(--navy);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.01em;
}

.brand-sub {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* Nav List */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex: 1;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 0.25rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-link-item {
    display: block;
    padding: 0.5rem 1rem;
    color: rgba(255,255,255,0.82);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    position: relative;
    transition: color var(--transition);
}

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

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

.nav-link-item:hover::after,
.nav-link-item.active::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-link-item.active {
    font-weight: 600;
}

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

.btn-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.82);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.45rem 0.75rem;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.18);
    transition: var(--transition);
}

.btn-phone:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-portal {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--navy);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.55rem 1.25rem;
    border-radius: 100px;
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
    white-space: nowrap;
}

.btn-portal:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(201,168,76,0.4);
    color: var(--navy);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    margin-left: auto;
    z-index: 1001;
}

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

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Overlay */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.nav-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* ----------------------------------------------------------------
   Section Utilities
   ---------------------------------------------------------------- */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.06));
    border: 1px solid rgba(201,168,76,0.3);
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    margin-bottom: 1.25rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.18;
    margin-bottom: 1.25rem;
}

.section-title .accent {
    background: linear-gradient(135deg, var(--cobalt) 0%, #3b7edb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.py-section {
    padding: 100px 0;
}

/* ----------------------------------------------------------------
   HERO SECTION
   ---------------------------------------------------------------- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(145deg, var(--navy) 0%, #0f1e40 40%, var(--cobalt) 100%);
    padding-top: var(--navbar-h);
}

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

.hero-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(26,58,110,0.6), transparent);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201,168,76,0.12), transparent);
    bottom: 0;
    left: 5%;
    animation-delay: -3s;
}

.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59,126,219,0.15), transparent);
    top: 30%;
    left: 40%;
    animation-delay: -6s;
}

@keyframes orbFloat {
    0%,100% { transform: translate(0,0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* Grid Pattern Overlay */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.35);
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    margin-bottom: 1.75rem;
    animation: fadeInUp 0.6s ease 0.2s both;
}

/* Hero Title */
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5.5vw, 4.2rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease 0.35s both;
}

.hero-title .text-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 60%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Description */
.hero-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 520px;
    animation: fadeInUp 0.6s ease 0.5s both;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: fadeInUp 0.6s ease 0.65s both;
}

.btn-primary-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--navy);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0.9rem 2rem;
    border-radius: 100px;
    box-shadow: 0 8px 32px rgba(201,168,76,0.4);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(201,168,76,0.5);
    color: var(--navy);
}

.btn-secondary-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.9rem 2rem;
    border-radius: 100px;
    border: 1.5px solid rgba(255,255,255,0.3);
    transition: var(--transition);
}

.btn-secondary-cta:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201,168,76,0.08);
}

/* Hero Trust Bar */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.8s both;
}

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

.trust-item i {
    font-size: 1.1rem;
    color: var(--gold);
}

.trust-sep {
    width: 1px;
    height: 28px;
    background: rgba(255,255,255,0.18);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeInRight 0.8s ease 0.4s both;
}

/* Hero Shield */
.hero-shield-wrap {
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, rgba(59,126,219,0.3), rgba(26,58,110,0.5));
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: shieldSpin 20s linear infinite;
    box-shadow: 0 0 60px rgba(201,168,76,0.15), inset 0 0 60px rgba(59,126,219,0.1);
}

.hero-shield-wrap::before {
    content: '';
    position: absolute;
    inset: 12px;
    border-radius: 50%;
    border: 1px solid rgba(201,168,76,0.2);
}

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

.hero-shield-icon {
    font-size: 8rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 60%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shieldSpin 20s linear infinite reverse;
    filter: drop-shadow(0 4px 30px rgba(201,168,76,0.5));
}

/* Floating Cards */
.float-card {
    position: absolute;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-md);
    padding: 0.875rem 1.125rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 150px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    white-space: nowrap;
}

.float-card .fc-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.float-card .fc-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
}

.float-card .fc-value {
    font-size: 0.88rem;
    color: var(--white);
    font-weight: 700;
}

.fc-top-left  { top: 8%;  left: -6%;  animation: floatAnim 4s ease-in-out infinite; }
.fc-top-right { top: 12%; right: -4%; animation: floatAnim 4s ease-in-out infinite 1s; }
.fc-bot-left  { bottom: 12%; left: -8%; animation: floatAnim 4s ease-in-out infinite 2s; }
.fc-bot-right { bottom: 8%; right: -4%; animation: floatAnim 4s ease-in-out infinite 0.5s; }

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

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ----------------------------------------------------------------
   STATS SECTION
   ---------------------------------------------------------------- */
.stats-section {
    padding: 60px 0;
    background: var(--off-white);
    border-bottom: 1px solid var(--gray-200);
}

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

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
}

.stat-item + .stat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--gray-200);
}

.stat-num {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-num .suffix {
    font-size: 0.65em;
    color: var(--gold);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ----------------------------------------------------------------
   SERVICES / PRODUCTS SECTION (Homepage)
   ---------------------------------------------------------------- */
.products-section {
    padding: 100px 0;
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.product-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 20px;
    padding: 3.5rem 2rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    box-shadow: none;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    border-color: #e2e8f0;
}

.product-icon-wrap {
    width: 68px;
    height: 68px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    font-size: 1.6rem;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.product-card:hover .product-icon-wrap {
    transform: scale(1.02);
}

.product-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.product-desc {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.75rem;
    min-height: 3.2em;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-features {
    list-style: none;
    text-align: left;
    margin: 0 0 2rem 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #475569;
    font-weight: 500;
}

.product-features li i {
    color: #22c55e;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.btn-teklif {
    display: inline-block;
    padding: 0.7rem 2rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    border: 1px solid;
    background: transparent !important;
    transition: all 0.3s ease;
    margin-top: auto;
    width: auto;
    min-width: 170px;
}

.btn-teklif:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    opacity: 0.85;
    transform: scale(1.03);
}

/* ----------------------------------------------------------------
   WHY US SECTION
   ---------------------------------------------------------------- */
.why-section {
    padding: 100px 0;
    background: var(--gray-100);
}

.why-feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.why-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.why-feature:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(201,168,76,0.25);
}

.wf-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.wf-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.4rem;
}

.wf-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

/* Why Visual */
.why-visual-block {
    position: relative;
    padding: 2rem;
}

.why-main-card {
    background: linear-gradient(145deg, var(--navy-light) 0%, var(--cobalt) 100%);
    border-radius: var(--radius-xl);
    padding: 3rem;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.why-main-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(201,168,76,0.08);
}

.why-big-shield {
    font-size: 6rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 20px rgba(201,168,76,0.4));
}

.why-main-card h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.why-main-card p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.65;
}

/* Mini stat cards floating */
.mini-stat-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 0.875rem 1.25rem;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: floatAnim 4s ease-in-out infinite;
}

.mini-stat-card.ms-1 { bottom: 8%; left: -6%; animation-delay: 0s; }
.mini-stat-card.ms-2 { top: 8%; right: -6%; animation-delay: -2s; }

.ms-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.ms-num {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
}

.ms-lbl {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ----------------------------------------------------------------
   HOW IT WORKS SECTION
   ---------------------------------------------------------------- */
.how-section {
    padding: 100px 0;
    background: var(--white);
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

.how-grid::before {
    content: '';
    position: absolute;
    top: 52px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, var(--gray-200), var(--gold), var(--gray-200));
}

.how-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2.5rem 1.75rem;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.how-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201,168,76,0.25);
}

.how-step-num {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(12,20,40,0.25);
    z-index: 1;
}

.how-card:hover .how-step-num {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
}

.how-icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--cobalt);
    border: 3px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    z-index: 0;
}

.how-card:hover .how-icon-wrap {
    background: linear-gradient(135deg, var(--cobalt), #3b7edb);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(26,58,110,0.3);
}

.how-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.how-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

/* ----------------------------------------------------------------
   TESTIMONIALS SECTION
   ---------------------------------------------------------------- */
.testimonials-section {
    padding: 100px 0;
    background: var(--off-white);
}

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

.tc-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--gray-200);
    position: relative;
    transition: var(--transition);
}

.tc-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: var(--gray-200);
    line-height: 1;
}

.tc-card.featured {
    background: linear-gradient(145deg, var(--navy-light), var(--cobalt));
    border-color: transparent;
    box-shadow: var(--shadow-lg);
}

.tc-card.featured .tc-text,
.tc-card.featured .tc-name {
    color: var(--white);
}

.tc-card.featured .tc-detail {
    color: rgba(255,255,255,0.6);
}

.tc-card.featured::before {
    color: rgba(255,255,255,0.1);
}

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

.tc-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 1rem;
}

.tc-stars i {
    color: var(--gold);
    font-size: 0.9rem;
}

.tc-text {
    font-size: 0.925rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.tc-author {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.tc-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.tc-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy);
}

.tc-detail {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ----------------------------------------------------------------
   CTA BANNER
   ---------------------------------------------------------------- */
.cta-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--cobalt) 60%, #1e4d9e 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.1), transparent);
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.cta-subtitle {
    color: rgba(255,255,255,0.75);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* ----------------------------------------------------------------
   PAGE HERO (inner pages)
   ---------------------------------------------------------------- */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--cobalt) 60%, #1e4d9e 100%);
    padding: calc(var(--navbar-h) + 60px) 0 70px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    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: 50px 50px;
}

.page-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.page-hero-orb-1 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(201,168,76,0.12), transparent);
    top: -100px; right: 0;
}

.page-hero-orb-2 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(59,126,219,0.15), transparent);
    bottom: -50px; left: 10%;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.breadcrumb-nav a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
}

.breadcrumb-nav a:hover { color: var(--gold); }

.breadcrumb-nav .sep {
    color: rgba(255,255,255,0.3);
    font-size: 0.85rem;
}

.breadcrumb-nav .current {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
}

.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.12;
    margin-bottom: 1.25rem;
}

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

.page-hero-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.72);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.75;
}

/* ----------------------------------------------------------------
   ABOUT PAGE
   ---------------------------------------------------------------- */
.about-mission-section { padding: 100px 0; background: var(--white); }
.about-values-section  { padding: 100px 0; background: var(--off-white); }
.about-team-section    { padding: 100px 0; background: var(--white); }
.about-timeline-section{ padding: 100px 0; background: var(--gray-100); }

.mission-card {
    background: linear-gradient(145deg, var(--navy-light), var(--cobalt));
    border-radius: var(--radius-xl);
    padding: 3rem;
    color: var(--white);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.mission-card::after {
    content: '';
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 30px solid rgba(255,255,255,0.04);
}

.mission-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold);
    margin-bottom: 1rem;
}

.mission-card h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.mission-card p {
    color: rgba(255,255,255,0.75);
    line-height: 1.75;
    font-size: 0.95rem;
}

.mission-img-block {
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
}

.mission-img-placeholder {
    width: 100%;
    height: 360px;
    background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--gray-400);
}

/* Values */
.value-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201,168,76,0.25);
}

.value-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.value-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.value-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 1rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--gray-200), var(--gold), var(--gray-200));
}

.tl-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.tl-item:nth-child(even) { flex-direction: row-reverse; }

.tl-content {
    flex: 1;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.tl-content:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(201,168,76,0.25);
}

.tl-year {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    font-size: 0.82rem;
    font-weight: 800;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    margin-bottom: 0.75rem;
}

.tl-content h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.tl-content p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.tl-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gold);
    border: 4px solid var(--white);
    box-shadow: 0 0 0 2px var(--gold);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

/* Team */
.team-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    text-align: center;
}

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

.team-avatar-wrap {
    padding: 2rem 2rem 0;
}

.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
}

.team-body {
    padding: 1.25rem 1.5rem 1.75rem;
}

.team-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.team-role {
    font-size: 0.82rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.team-bio {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ----------------------------------------------------------------
   SERVICES PAGE
   ---------------------------------------------------------------- */
.services-all-section {
    padding: 100px 0;
    background: var(--white);
}

.service-detail-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.service-detail-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(201,168,76,0.2);
}

.sd-card-header {
    padding: 2.5rem 2rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.sd-card-header::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    opacity: 0.06;
    background: currentColor;
}

.sd-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 1.25rem;
    box-shadow: var(--shadow-md);
}

.sd-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.sd-short {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.sd-card-body {
    padding: 1.5rem 2rem 2rem;
    border-top: 1px solid var(--gray-200);
}

.sd-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.sd-feature-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.875rem;
    color: var(--text);
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.sd-feature-list li:last-child { border: none; }

.sd-feature-list li i { color: #22c55e; font-size: 0.9rem; flex-shrink: 0; }

.sd-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
}

.sd-price {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.sd-price strong {
    font-size: 1.1rem;
    color: var(--navy);
    font-weight: 800;
}

/* Partners logos strip */
.partners-section {
    padding: 80px 0;
    background: var(--off-white);
    border-top: 1px solid var(--gray-200);
}

.partners-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.partner-item {
    width: 150px;
    height: 120px;
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.06);
    border-color: #e2e8f0;
}

.partner-logo-img {
    height: auto;
    max-height: 55px;
    width: auto;
    max-width: 110px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.partner-item:hover .partner-logo-img {
    transform: scale(1.05);
}

.partner-logo {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ----------------------------------------------------------------
   CONTACT PAGE
   ---------------------------------------------------------------- */
.contact-section { padding: 100px 0; background: var(--white); }

.contact-info-box {
    background: linear-gradient(145deg, var(--navy-light), var(--cobalt));
    border-radius: var(--radius-xl);
    padding: 3rem;
    color: var(--white);
    height: 100%;
}

.contact-info-box h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.contact-info-box > p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.ci-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--gold);
    flex-shrink: 0;
}

.ci-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.5);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.2rem;
}

.ci-value {
    font-size: 0.9rem;
    color: var(--white);
    font-weight: 600;
    line-height: 1.6;
}

.ci-value a { color: var(--gold); text-decoration: none; }
.ci-value a:hover { text-decoration: underline; }

.contact-social-row {
    display: flex;
    gap: 0.75rem;
}

.contact-social-btn {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-social-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

/* Contact Form */
.contact-form-box {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: var(--shadow-md);
}

.contact-form-box h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.contact-form-box .sub {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.form-field {
    margin-bottom: 1.25rem;
}

.form-field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.4rem;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text);
    background: var(--white);
    outline: none;
    transition: var(--transition);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--cobalt);
    box-shadow: 0 0 0 4px rgba(26,58,110,0.08);
}

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

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

/* Branches */
.branches-section { padding: 80px 0; background: var(--gray-100); }

.branch-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: var(--transition);
    height: 100%;
}

.branch-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(201,168,76,0.25);
}

.branch-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--navy-light), var(--cobalt));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.branch-city {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.2rem;
}

.branch-phone {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.branch-phone a { color: var(--cobalt); text-decoration: none; font-weight: 600; }

/* ----------------------------------------------------------------
   FOOTER
   ---------------------------------------------------------------- */
.site-footer {
    position: relative;
    background: var(--off-white);
}

.footer-wave {
    line-height: 0;
}

.footer-wave svg { display: block; width: 100%; }

.footer-body {
    background: var(--navy);
    padding: 80px 0 50px;
}

/* Footer Brand */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    margin-bottom: 1.25rem;
}

.footer-brand-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--navy);
    flex-shrink: 0;
}

.footer-brand-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--white);
}

.footer-brand-tagline {
    font-size: 0.72rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.footer-desc {
    color: rgba(255,255,255,0.55);
    font-size: 0.875rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.footer-certifications {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.65);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.3rem 0.7rem;
    border-radius: 100px;
}

.cert-badge i { color: var(--gold); }

.footer-social {
    display: flex;
    gap: 0.6rem;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
    transform: translateY(-3px);
}

/* Footer Headings & Links */
.footer-heading {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links li a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 400;
    transition: var(--transition);
}

.footer-links li a i { font-size: 0.7rem; }

.footer-links li a:hover {
    color: var(--gold);
    transform: translateX(4px);
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
}

.footer-contact .fc-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.footer-contact span {
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
    line-height: 1.65;
}

.footer-contact a { color: rgba(255,255,255,0.75); text-decoration: none; }
.footer-contact a:hover { color: var(--gold); }

/* Footer Bottom */
.footer-bottom {
    background: #212529;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 16px 0;
}

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

.footer-copy {
    color: #fff;
    font-size: 0.82rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-legal a {
    color: #fff;
    text-decoration: none;
    font-size: 0.78rem;
    transition: var(--transition);
}

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

/* ----------------------------------------------------------------
   Scroll-to-top
   ---------------------------------------------------------------- */
.scroll-top-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: var(--shadow-gold);
    opacity: 0;
    transform: translateY(16px);
    transition: var(--transition);
    z-index: 500;
}

.scroll-top-btn.show {
    opacity: 1;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(201,168,76,0.5);
}

/* ----------------------------------------------------------------
   Animations
   ---------------------------------------------------------------- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

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

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to   { opacity: 1; transform: translateX(0); }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ----------------------------------------------------------------
   RESPONSIVE
   ---------------------------------------------------------------- */
@media (max-width: 1199px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid .stat-item:nth-child(3)::before { display: none; }
}

@media (max-width: 991px) {
    /* Mobile Navbar */
    .nav-toggle { display: flex; }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(320px, 80vw);
        height: 100dvh;
        background: var(--navy);
        flex-direction: column;
        justify-content: flex-start;
        gap: 0;
        padding: 90px 1.5rem 2rem;
        transition: right var(--transition);
        z-index: 1000;
        box-shadow: -8px 0 40px rgba(0,0,0,0.3);
    }

    .nav-menu.open { right: 0; }

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 0.25rem;
    }

    .nav-link-item {
        display: block;
        width: 100%;
        padding: 0.875rem 1rem;
        font-size: 1rem;
        border-radius: var(--radius-sm);
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .nav-link-item::after { display: none; }

    .nav-actions {
        flex-direction: column;
        width: 100%;
        margin-top: 1.5rem;
    }

    .btn-phone, .btn-portal { width: 100%; justify-content: center; }

    /* Sections */
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .how-grid      { grid-template-columns: 1fr; }
    .how-grid::before { display: none; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .timeline::before { left: 20px; }
    .tl-item { flex-direction: row !important; }
    .tl-item:nth-child(even) .tl-content { order: 1; }
    .tl-dot { order: 0; }
}

@media (max-width: 767px) {
    .products-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-title { font-size: 2.2rem; }
    .section-title { font-size: 1.8rem; }
    .hero-buttons { flex-direction: column; }
    .btn-primary-cta, .btn-secondary-cta { width: 100%; justify-content: center; }
    .why-visual-block { display: none; }
    .mini-stat-card { display: none; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .footer-legal { justify-content: center; }
    .contact-form-box, .contact-info-box { padding: 2rem 1.5rem; }
    .mission-card { padding: 2rem; }
}

@media (max-width: 575px) {
    :root { --navbar-h: 68px; }
    .py-section { padding: 60px 0; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   Neo-Premium Utility Classes
   ================================================================ */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: var(--radius-md);
}

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

.premium-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(197, 160, 89, 0.2);
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

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

/* ================================================================
   New Dynamic Logo Styles
   ================================================================ */
.preloader-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.nav-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.footer-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.partner-item {
    padding: 1rem;
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    filter: grayscale(0);
    opacity: 1;
}

.partner-logo-img {
    height: 200px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(1) opacity(0.7);
    transition: var(--transition);
}

.partner-item:hover .partner-logo-img {
    filter: grayscale(0) opacity(1);
}

.partners-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    transition: var(--transition);
}

.partners-row:hover { opacity: 1; }

