/*
 * Yalova VIP Sigorta — Luxury Dark Authority
 * Aesthetic: Refined Corporate Prestige
 * Fonts: Cormorant Garamond (display) + DM Sans (body)
 * Color Story: Deep Navy, Champagne Gold, Onyx Black
 */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
    --navy:        #080F1C;
    --navy-mid:    #0D1B2A;
    --navy-card:   #111E30;
    --gold:        #C9A84C;
    --gold-light:  #E8C97A;
    --gold-pale:   rgba(201, 168, 76, 0.12);
    --gold-glow:   rgba(201, 168, 76, 0.25);
    --white:       #FFFFFF;
    --off-white:   #F0EDE8;
    --muted:       #8A96A8;
    --glass-bg:    rgba(13, 27, 42, 0.75);
    --glass-border:rgba(201, 168, 76, 0.18);
    --shadow-lg:   0 40px 80px rgba(0,0,0,0.5);
    --shadow-card: 0 20px 50px rgba(0,0,0,0.35);
    --radius-sm:   6px;
    --radius-md:   12px;
    --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background-color: var(--navy);
    color: var(--off-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.15;
}

h4, h5 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ────────────────────────────────
   GRAIN TEXTURE OVERLAY
   ──────────────────────────────── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.028;
    pointer-events: none;
    z-index: 9999;
}

/* ────────────────────────────────
   NAVIGATION
   ──────────────────────────────── */
.navbar {
    height: 88px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), height 0.3s var(--ease-out);
    display: flex;
    align-items: center;
}

.navbar.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 40px rgba(0,0,0,0.4);
    height: 72px;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Logo */
.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--white);
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 6px;
}

.logo-vip {
    color: var(--gold);
    font-style: italic;
}

/* Nav Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 36px;
}

.nav-links a {
    text-decoration: none;
    color: var(--off-white);
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    position: relative;
    padding-bottom: 3px;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.35s var(--ease-out);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* CTA Button in Nav */
.btn-nav {
    padding: 10px 24px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.35s var(--ease-out);
    display: inline-block;
}

.btn-nav:hover {
    background: var(--gold);
    color: var(--navy);
}

/* ────────────────────────────────
   BUTTONS
   ──────────────────────────────── */
.btn {
    display: inline-block;
    padding: 16px 38px;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: all 0.35s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.08);
    opacity: 0;
    transition: opacity 0.3s;
}

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

.btn-primary {
    background: var(--gold);
    color: var(--navy);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(201, 168, 76, 0.35);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(240, 237, 232, 0.4);
    color: var(--off-white);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

.btn-submit {
    background: var(--gold);
    color: var(--navy);
    width: 100%;
    margin-top: 10px;
    padding: 18px;
    font-size: 0.88rem;
}

.btn-submit:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(201, 168, 76, 0.3);
}

/* ────────────────────────────────
   HERO SECTION
   ──────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 88px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(8,15,28,0.92) 0%, rgba(8,15,28,0.7) 100%),
        url('https://images.unsplash.com/photo-1609156813789-9f3ce64d6e91?q=80&w=2670&auto=format&fit=crop') center/cover no-repeat;
    transform-origin: center;
    will-change: transform;
}

.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.12) 0%, transparent 70%);
    top: 50%;
    left: -100px;
    transform: translateY(-50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}

.hero-eyebrow::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1.05;
    margin-bottom: 28px;
    color: var(--white);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.9s var(--ease-out) 0.35s forwards;
}

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

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--muted);
    margin-bottom: 48px;
    max-width: 560px;
    line-height: 1.75;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.9s var(--ease-out) 0.5s forwards;
}

.hero-ctas {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.9s var(--ease-out) 0.65s forwards;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    z-index: 2;
    opacity: 0;
    animation: fadeUp 1s var(--ease-out) 1.1s forwards;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

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

.section-label::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 20px;
}

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

.section-desc {
    color: var(--muted);
    max-width: 600px;
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 64px;
}

/* ────────────────────────────────
   SERVICES (HOME)
   ──────────────────────────────── */
.services {
    padding: 130px 0;
    background: var(--navy-mid);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--glass-border), transparent);
}

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

.service-card {
    background: var(--navy-card);
    border: 1px solid var(--glass-border);
    padding: 44px 36px;
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.4s;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform 0.5s var(--ease-out);
}

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

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

.service-card-bg {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, var(--gold-pale) 0%, transparent 70%);
    pointer-events: none;
}

.service-icon-wrap {
    width: 56px;
    height: 56px;
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.service-icon-wrap svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
}

.service-card h3 {
    font-size: 1.45rem;
    color: var(--white);
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
    line-height: 1.7;
}

.service-link {
    text-decoration: none;
    color: var(--gold);
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
    position: relative;
    z-index: 1;
}

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

/* ────────────────────────────────
   WHY US
   ──────────────────────────────── */
.why-us {
    padding: 130px 0;
    background: var(--navy);
    position: relative;
}

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

.why-us-left .section-desc {
    margin-bottom: 40px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gold-pale);
    border: 1px solid var(--glass-border);
    padding: 14px 22px;
    font-size: 0.85rem;
    color: var(--gold-light);
}

.trust-badge svg {
    width: 18px;
    height: 18px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
    flex-shrink: 0;
}

.why-us-right {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.feat-item {
    padding: 30px 36px;
    border: 1px solid transparent;
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.35s var(--ease-out);
    cursor: default;
    position: relative;
}

.feat-item:first-child {
    border-top: 1px solid var(--glass-border);
}

.feat-item:hover {
    background: var(--navy-card);
    border-color: var(--glass-border);
    padding-left: 46px;
}

.feat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.8rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.feat-item h4 {
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 8px;
    font-weight: 500;
}

.feat-item p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.65;
}

/* ────────────────────────────────
   STATS STRIP
   ──────────────────────────────── */
.stats-strip {
    padding: 80px 0;
    background: var(--navy-mid);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

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

.stat-item {
    padding: 20px 40px;
    text-align: center;
    border-right: 1px solid var(--glass-border);
}

.stat-item:last-child { border-right: none; }

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    color: var(--muted);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

/* ────────────────────────────────
   QUOTE FORM
   ──────────────────────────────── */
.quote-section {
    padding: 130px 0;
    background: var(--navy);
    position: relative;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--glass-border), transparent);
}

.quote-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: start;
}

.quote-left {
    padding-top: 20px;
}

.quote-left .section-desc {
    margin-bottom: 44px;
}

.quote-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 22px;
}

.quote-feature-icon {
    width: 36px;
    height: 36px;
    background: var(--gold-pale);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.quote-feature-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
}

.quote-feature-text h5 {
    font-size: 0.9rem;
    color: var(--white);
    margin-bottom: 3px;
}

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

.quote-form-box {
    background: var(--navy-card);
    border: 1px solid var(--glass-border);
    padding: 50px;
}

.quote-form-title {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 8px;
}

.quote-form-sub {
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 36px;
}

.policy-select {
    display: flex;
    gap: 0;
    margin-bottom: 32px;
    border: 1px solid var(--glass-border);
}

.policy-option {
    flex: 1;
    position: relative;
}

.policy-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.policy-option label {
    display: block;
    padding: 14px 10px;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--muted);
    cursor: pointer;
    transition: all 0.3s;
    border-right: 1px solid var(--glass-border);
}

.policy-option:last-child label {
    border-right: none;
}

.policy-option input[type="radio"]:checked + label {
    background: var(--gold);
    color: var(--navy);
}

.quote-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 14px 0;
    border: none;
    border-bottom: 1px solid rgba(138, 150, 168, 0.25);
    background: transparent;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--white);
    outline: none;
    transition: border-color 0.3s;
}

.form-group input::placeholder {
    color: rgba(138, 150, 168, 0.5);
}

.form-group input:focus {
    border-bottom-color: var(--gold);
}

.form-message {
    display: none;
    margin-top: 16px;
    padding: 14px 18px;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
}

.form-message.success {
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: var(--gold-light);
    display: block;
}

.form-message.error {
    background: rgba(200, 60, 60, 0.1);
    border: 1px solid rgba(200, 60, 60, 0.3);
    color: #f08080;
    display: block;
}

/* ────────────────────────────────
   FOOTER
   ──────────────────────────────── */
.footer {
    padding: 80px 0 30px;
    background: var(--navy-mid);
    border-top: 1px solid var(--glass-border);
}

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

.footer-brand .logo {
    display: block;
    margin-bottom: 18px;
}

.footer-brand p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-col h5 {
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    text-decoration: none;
    color: var(--muted);
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

.footer-col p {
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col p svg {
    width: 14px;
    height: 14px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
    flex-shrink: 0;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 28px;
    border-top: 1px solid var(--glass-border);
    color: var(--muted);
    font-size: 0.82rem;
}

/* ────────────────────────────────
   PAGE HEADER (Inner Pages)
   ──────────────────────────────── */
.page-header {
    padding: 160px 0 80px;
    background:
        linear-gradient(135deg, rgba(8,15,28,0.95) 0%, rgba(8,15,28,0.8) 100%),
        url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?q=80&w=2670&auto=format&fit=crop') center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--glass-border), transparent);
}

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

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    margin-bottom: 16px;
}

.page-header-sub {
    color: var(--gold);
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}

.page-header-sub::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--gold);
}

/* ────────────────────────────────
   SERVICES PAGE (Detailed)
   ──────────────────────────────── */
.services-detail {
    padding: 100px 0;
    background: var(--navy);
}

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

.detailed-card {
    background: var(--navy-card);
    border: 1px solid var(--glass-border);
    padding: 50px 44px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s, border-color 0.4s;
}

.detailed-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--gold);
    transition: height 0.4s var(--ease-out);
}

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

.detailed-card:hover::after {
    height: 100%;
}

.d-icon-wrap {
    width: 60px;
    height: 60px;
    background: var(--gold-pale);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 1.6rem;
}

.detailed-card h3 {
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 14px;
}

.detailed-card > p {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 28px;
    line-height: 1.75;
}

.check-list {
    list-style: none;
    margin-bottom: 34px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(138, 150, 168, 0.1);
    color: var(--off-white);
    font-size: 0.92rem;
    font-weight: 400;
}

.check-list li::before {
    content: '';
    width: 18px;
    height: 18px;
    border: 1px solid var(--gold);
    background: var(--gold-pale);
    flex-shrink: 0;
    position: relative;
}

.check-list li::after {
    content: '✓';
    position: absolute;
    color: var(--gold);
    font-size: 0.7rem;
    margin-left: -26px;
    font-weight: 700;
}

/* ────────────────────────────────
   ABOUT PAGE
   ──────────────────────────────── */
.about-section {
    padding: 100px 0;
    background: var(--navy);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 90px;
}

.about-text h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--white);
    margin-bottom: 24px;
}

.about-text h2 em {
    color: var(--gold);
    font-style: italic;
}

.about-text p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 18px;
}

.stats-box {
    background: var(--navy-card);
    border: 1px solid var(--glass-border);
    padding: 50px 40px;
}

.about-stat-item {
    padding: 24px 0;
    border-bottom: 1px solid var(--glass-border);
}

.about-stat-item:last-child { border-bottom: none; }

.about-stat-item .stat-number {
    font-size: 2.8rem;
    color: var(--gold);
    margin-bottom: 4px;
    display: block;
}

.about-stat-item .stat-label {
    color: var(--muted);
    font-size: 0.88rem;
}

.vision-mission-section {
    padding: 0 0 100px;
    background: var(--navy);
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.vcard {
    background: var(--navy-card);
    border: 1px solid var(--glass-border);
    padding: 44px;
    position: relative;
    overflow: hidden;
}

.vcard::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--gold), transparent);
}

.vcard-label {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    display: block;
}

.vcard h3 {
    font-size: 1.7rem;
    color: var(--white);
    margin-bottom: 16px;
}

.vcard p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.75;
}

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

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

.contact-info h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--white);
    margin-bottom: 20px;
}

.contact-info h2 em {
    color: var(--gold);
    font-style: italic;
}

.contact-info > p {
    color: var(--muted);
    margin-bottom: 48px;
    line-height: 1.75;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid var(--glass-border);
}

.info-card:first-of-type {
    border-top: 1px solid var(--glass-border);
}

.info-icon-box {
    width: 44px;
    height: 44px;
    background: var(--gold-pale);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon-box svg {
    width: 18px;
    height: 18px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
}

.info-text h5 {
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}

.info-text p {
    color: var(--off-white);
    font-size: 0.95rem;
}

.contact-form-box {
    background: var(--navy-card);
    border: 1px solid var(--glass-border);
    padding: 52px;
}

.contact-form-box h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 8px;
}

.contact-form-box > p {
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 36px;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form textarea {
    width: 100%;
    padding: 14px 0;
    border: none;
    border-bottom: 1px solid rgba(138, 150, 168, 0.25);
    background: transparent;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--white);
    outline: none;
    resize: none;
    transition: border-color 0.3s;
}

.contact-form textarea::placeholder {
    color: rgba(138, 150, 168, 0.5);
}

.contact-form textarea:focus {
    border-bottom-color: var(--gold);
}

/* ────────────────────────────────
   MOBILE MENU TOGGLE
   ──────────────────────────────── */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    padding: 4px;
}

.menu-toggle span {
    width: 26px;
    height: 1.5px;
    background-color: var(--off-white);
    transition: all 0.35s var(--ease-out);
    display: block;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* ────────────────────────────────
   SCROLL REVEAL ANIMATIONS
   ──────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ────────────────────────────────
   KEYFRAMES
   ──────────────────────────────── */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.3); }
}

/* ────────────────────────────────
   RESPONSIVE
   ──────────────────────────────── */
@media (max-width: 1024px) {
    .why-us-inner { grid-template-columns: 1fr; gap: 60px; }
    .quote-inner { grid-template-columns: 1fr; gap: 60px; }
    .about-grid { grid-template-columns: 1fr; gap: 50px; }
    .contact-grid { grid-template-columns: 1fr; gap: 50px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
    .stat-item:nth-child(2) { border-right: none; }
    .stat-item:nth-child(3), .stat-item:nth-child(4) { border-top: 1px solid var(--glass-border); }
    .stat-item:nth-child(4) { border-right: none; }
    .services-detail-grid { grid-template-columns: 1fr; }
    .vm-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .navbar { height: 72px; }
    .hero { padding-top: 72px; }

    .menu-toggle { display: flex; }
    .btn-nav { display: none; }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--navy-card);
        border-left: 1px solid var(--glass-border);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.5s var(--ease-out);
        gap: 32px;
    }

    .nav-links.active { right: 0; }
    .nav-links a { font-size: 1.15rem; }

    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-ctas { flex-direction: column; width: 100%; }
    .btn { text-align: center; }

    .services, .why-us, .quote-section { padding: 90px 0; }
    .page-header { padding: 130px 0 60px; }

    .quote-form { grid-template-columns: 1fr; }
    .form-group.full-width { grid-column: span 1; }
    .policy-select { flex-direction: column; }
    .policy-option label { border-right: none; border-bottom: 1px solid var(--glass-border); }
    .policy-option:last-child label { border-bottom: none; }

    .quote-form-box { padding: 36px 28px; }
    .contact-form-box { padding: 36px 28px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .contact-form { grid-template-columns: 1fr; }
}
