/* ══════════════════════════════════════════
   TR Seyahat — Shared Stylesheet
   ══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --primary:       #0d4f6b;
    --primary-light: #126384;
    --accent:        #f5a623;
    --red:           #c0392b;
    --text:          #1a1a2e;
    --muted:         #666;
    --bg:            #f5f8fb;
    --white:         #fff;
    --border:        #e0eaf2;
    --radius:        12px;
    --shadow:        0 4px 24px rgba(13,79,107,0.10);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--bg); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── Container ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* ══════════════════════════════════════════
   WARNING BANNER
   ══════════════════════════════════════════ */
.warning-banner {
    background: var(--accent);
    color: var(--text);
    text-align: center;
    padding: 11px 20px;
    font-size: 13px;
    font-weight: 600;
    position: sticky;
    top: 0;
    z-index: 1100;
    border-bottom: 2px solid #d4880f;
    line-height: 1.4;
}
.warning-banner strong { font-weight: 800; text-decoration: underline; }

/* ══════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════ */
.navbar {
    background: var(--primary);
    padding: 0;
    position: relative;
    z-index: 1000;
}
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}
.navbar-left { display: flex; align-items: center; gap: 12px; }
.logo-text {
    font-size: 21px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
}
.logo-text span { color: var(--accent); }
.navbar-badge {
    background: rgba(255,255,255,0.1);
    color: #c8d8f5;
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 500;
}

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-links > a,
.nav-dropdown > .nav-item {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    transition: background 0.15s, color 0.15s;
    cursor: pointer;
    display: block;
    white-space: nowrap;
}
.nav-links > a:hover,
.nav-dropdown:hover > .nav-item {
    background: rgba(255,255,255,0.12);
    color: var(--white);
}
.nav-links > a.active { color: var(--accent); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > .nav-item::after { content: ' ▾'; font-size: 10px; opacity: 0.7; }
.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 0px);
    left: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    min-width: 220px;
    padding: 6px;
    z-index: 999;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    font-size: 14px;
    color: var(--text);
    border-radius: 8px;
    transition: background 0.15s;
    font-weight: 500;
}
.dropdown-menu a:hover { background: #f0f4ff; color: var(--primary); }
.dropdown-menu a .dm-icon { font-size: 16px; width: 20px; text-align: center; }

/* Navbar Phone */
.navbar-phone {
    background: var(--red);
    color: var(--white);
    padding: 9px 18px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: background 0.2s;
    white-space: nowrap;
}
.navbar-phone:hover { background: #a93226; }

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 22px;
    cursor: pointer;
    padding: 4px 8px;
}
.mobile-nav {
    display: none;
    background: #0a3d52;
    padding: 12px 16px 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav a {
    display: block;
    color: rgba(255,255,255,0.85);
    padding: 11px 8px;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--accent); }
.mobile-nav .mobile-section-label {
    color: rgba(255,255,255,0.35);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 14px 8px 4px;
    font-weight: 700;
}

/* ══════════════════════════════════════════
   HERO — Large (main landing page)
   ══════════════════════════════════════════ */
.hero-lg {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 60%, #1a8aaa 100%);
    padding: 70px 0 60px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.hero-lg::after {
    content: '';
    position: absolute;
    right: -80px; top: -80px;
    width: 420px; height: 420px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    pointer-events: none;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.hero-tag {
    display: inline-block;
    background: rgba(245,166,35,0.18);
    border: 1px solid var(--accent);
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.hero-lg h1 { font-size: 36px; font-weight: 800; line-height: 1.25; margin-bottom: 16px; }
.hero-lg h1 .hl { color: var(--accent); }
.hero-sub { font-size: 16px; color: rgba(255,255,255,0.75); margin-bottom: 30px; line-height: 1.7; }
.cta-group { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-red {
    background: var(--red);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s, transform 0.15s;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}
.btn-red:hover { background: #a93226; transform: translateY(-1px); }
.btn-ghost {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    border: 1.5px solid rgba(255,255,255,0.25);
    transition: background 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-ghost:hover { background: rgba(255,255,255,0.18); }
.hero-stats { display: flex; gap: 24px; margin-top: 36px; flex-wrap: wrap; }
.stat-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.7); }
.stat-icon {
    width: 32px; height: 32px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
}

/* Quick Contact Card */
.hero-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 28px;
    backdrop-filter: blur(10px);
}
.hero-card h3 { font-size: 17px; color: var(--white); margin-bottom: 18px; font-weight: 700; }
.ci { display: flex; align-items: flex-start; gap: 12px; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.ci:last-child { border-bottom: none; }
.ci-icon {
    width: 38px; height: 38px; flex-shrink: 0;
    background: rgba(245,166,35,0.15);
    border: 1px solid rgba(245,166,35,0.3);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 15px;
}
.ci-label { font-size: 11px; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
.ci-value { font-size: 15px; font-weight: 700; color: var(--white); }
.ci-note { font-size: 11px; color: rgba(255,255,255,0.45); margin-top: 2px; }

/* ══════════════════════════════════════════
   HERO — Medium (service pages)
   ══════════════════════════════════════════ */
.hero-md {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 52px 0 44px;
    color: var(--white);
}
.hero-md .breadcrumb { font-size: 12px; color: rgba(255,255,255,0.5); margin-bottom: 14px; }
.hero-md .breadcrumb a { color: rgba(255,255,255,0.5); }
.hero-md .breadcrumb a:hover { color: var(--accent); }
.hero-md .breadcrumb span { color: rgba(255,255,255,0.8); }
.hero-md h1 { font-size: 30px; font-weight: 800; margin-bottom: 12px; line-height: 1.3; }
.hero-md h1 .hl { color: var(--accent); }
.hero-md p { font-size: 15px; color: rgba(255,255,255,0.75); max-width: 620px; line-height: 1.7; }
.hero-md .hero-meta { display: flex; gap: 20px; margin-top: 20px; flex-wrap: wrap; }
.hero-md .meta-tag {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 600;
}

/* ══════════════════════════════════════════
   OFFICIAL INFO BOX
   ══════════════════════════════════════════ */
.info-banner {
    background: #fff8e6;
    border: 2px solid #ffc107;
    border-radius: 10px;
    padding: 16px 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 28px 0;
}
.info-banner-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.info-banner p { font-size: 13px; color: #5a4800; line-height: 1.6; }
.info-banner strong { color: #3d3200; }
.info-banner a { color: var(--primary); font-weight: 700; border-bottom: 1px solid; }

/* ══════════════════════════════════════════
   SECTIONS
   ══════════════════════════════════════════ */
.section { padding: 60px 0; }
.section-white { background: var(--white); }
.section-bg { background: var(--bg); }
.section-dark { background: var(--primary); }
.section-title { font-size: 26px; font-weight: 800; color: var(--primary); text-align: center; margin-bottom: 8px; }
.section-sub { font-size: 15px; color: var(--muted); text-align: center; margin-bottom: 44px; }
.divider { width: 46px; height: 4px; background: var(--accent); border-radius: 2px; margin: 10px auto 18px; }

/* ══════════════════════════════════════════
   SERVICES GRID
   ══════════════════════════════════════════ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.svc-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 26px 20px;
    transition: box-shadow 0.2s, transform 0.2s;
    display: flex;
    flex-direction: column;
}
.section-bg .svc-card { background: var(--white); }
.svc-card:hover { box-shadow: 0 8px 30px rgba(10,35,81,0.11); transform: translateY(-3px); }
.svc-icon {
    width: 50px; height: 50px;
    background: linear-gradient(135deg, var(--primary), #1a8aaa);
    border-radius: 13px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    margin-bottom: 14px;
}
.svc-card h3 { font-size: 15px; font-weight: 700; color: var(--primary); margin-bottom: 7px; }
.svc-card p { font-size: 13px; color: var(--muted); line-height: 1.6; flex: 1; }
.svc-card .svc-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    border-bottom: 1.5px solid var(--primary);
    align-self: flex-start;
    transition: color 0.15s;
}
.svc-card .svc-link:hover { color: var(--accent); border-color: var(--accent); }

/* ══════════════════════════════════════════
   STEPS
   ══════════════════════════════════════════ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; }
.steps::before {
    content: '';
    position: absolute;
    top: 27px; left: 12%; right: 12%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    z-index: 0;
}
.step-item { text-align: center; position: relative; z-index: 1; }
.step-num {
    width: 54px; height: 54px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 19px; font-weight: 800;
    margin: 0 auto 12px;
    border: 3px solid var(--accent);
}
.step-item h4 { font-size: 14px; font-weight: 700; color: var(--primary); margin-bottom: 5px; }
.step-item p { font-size: 13px; color: var(--muted); }

/* ══════════════════════════════════════════
   TRUST BADGES
   ══════════════════════════════════════════ */
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.trust-card {
    text-align: center;
    padding: 22px 14px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
}
.trust-card .ti { font-size: 30px; margin-bottom: 8px; }
.trust-card .tv { font-size: 20px; font-weight: 800; color: var(--accent); margin-bottom: 3px; }
.trust-card .tl { font-size: 12px; color: rgba(255,255,255,0.55); }

/* ══════════════════════════════════════════
   CONTENT ARTICLE (service pages)
   ══════════════════════════════════════════ */
.article-grid { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
.article-body h2 { font-size: 20px; font-weight: 800; color: var(--primary); margin: 28px 0 10px; }
.article-body h2:first-child { margin-top: 0; }
.article-body p { font-size: 15px; color: #444; line-height: 1.8; margin-bottom: 14px; }
.article-body ul { margin: 10px 0 14px 0; }
.article-body ul li {
    font-size: 14px; color: #444; line-height: 1.7;
    padding: 5px 0 5px 22px;
    position: relative;
}
.article-body ul li::before {
    content: '✓';
    position: absolute; left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* Sidebar CTA */
.sidebar-cta {
    position: sticky;
    top: 80px;
}
.cta-card {
    background: var(--primary);
    border-radius: 16px;
    padding: 28px 22px;
    color: var(--white);
    margin-bottom: 16px;
}
.cta-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.cta-card p { font-size: 13px; color: rgba(255,255,255,0.7); margin-bottom: 18px; line-height: 1.6; }
.btn-full {
    display: block;
    width: 100%;
    text-align: center;
    padding: 13px;
    border-radius: 9px;
    font-weight: 700;
    font-size: 14px;
    transition: background 0.2s;
    margin-bottom: 10px;
}
.btn-full.red { background: var(--red); color: var(--white); }
.btn-full.red:hover { background: #a93226; }
.btn-full.outline { border: 1.5px solid rgba(255,255,255,0.25); color: var(--white); }
.btn-full.outline:hover { background: rgba(255,255,255,0.08); }
.disclaimer-note {
    background: #fff8e6;
    border-radius: 9px;
    padding: 14px;
    font-size: 12px;
    color: #5a4800;
    line-height: 1.6;
}
.disclaimer-note strong { color: #3d3200; }

/* ══════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-bottom: 10px;
    background: var(--white);
    overflow: hidden;
}
.faq-item summary {
    padding: 16px 20px;
    font-weight: 600;
    font-size: 15px;
    color: var(--primary);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 20px; font-weight: 400; color: var(--accent); }
.faq-item[open] summary::after { content: '−'; }
.faq-body { padding: 0 20px 16px; font-size: 14px; color: #555; line-height: 1.8; }

/* ══════════════════════════════════════════
   CONTACT FORM
   ══════════════════════════════════════════ */
.form-section { padding: 64px 0; background: var(--white); }
.form-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
.form-left h2 { font-size: 26px; font-weight: 800; color: var(--primary); margin-bottom: 12px; }
.form-left > p { font-size: 15px; color: #555; margin-bottom: 24px; line-height: 1.7; }
.feat-item { display: flex; align-items: center; gap: 9px; margin-bottom: 12px; font-size: 14px; color: #333; }
.feat-dot { width: 7px; height: 7px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }
.note-box { margin-top: 26px; padding: 14px 18px; background: #f0f4ff; border-radius: 9px; border-left: 4px solid var(--primary); }
.note-box p { font-size: 13px; color: #444; line-height: 1.7; }

.contact-form { background: var(--bg); border-radius: 16px; padding: 28px; border: 1px solid var(--border); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--primary); margin-bottom: 5px; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 13px;
    border: 1.5px solid #d8dff0;
    border-radius: 8px;
    font-size: 14px;
    color: var(--text);
    background: var(--white);
    transition: border-color 0.2s;
    font-family: 'Inter', sans-serif;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--primary); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-note { background: #fff8e6; border-radius: 7px; padding: 10px 13px; font-size: 12px; color: #5a4800; margin-bottom: 14px; line-height: 1.5; }
.btn-submit {
    width: 100%;
    background: var(--primary);
    color: var(--white);
    padding: 14px;
    border-radius: 9px;
    font-weight: 700;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    font-family: 'Inter', sans-serif;
}
.btn-submit:hover { background: #0a3d52; }

/* ══════════════════════════════════════════
   ABOUT PAGE
   ══════════════════════════════════════════ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.about-text h2 { font-size: 22px; font-weight: 800; color: var(--primary); margin-bottom: 14px; }
.about-text p { font-size: 15px; color: #444; line-height: 1.8; margin-bottom: 14px; }
.cred-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 10px; }
.cred-card {
    background: #f0f4ff;
    border-radius: 10px;
    padding: 16px;
    border-left: 4px solid var(--primary);
}
.cred-card .cred-label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; font-weight: 700; }
.cred-card .cred-value { font-size: 16px; font-weight: 800; color: var(--primary); }
.cred-card .cred-sub { font-size: 12px; color: var(--muted); margin-top: 2px; }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.value-card { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 18px 16px; }
.value-card .vi { font-size: 24px; margin-bottom: 8px; }
.value-card h4 { font-size: 14px; font-weight: 700; color: var(--primary); margin-bottom: 5px; }
.value-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ══════════════════════════════════════════
   DISCLAIMER SECTION
   ══════════════════════════════════════════ */
.disclaimer-section { padding: 48px 0; background: #f0f4ff; }
.disclaimer-box {
    background: var(--white);
    border: 2px solid #d8e5ff;
    border-left: 5px solid var(--primary);
    border-radius: 10px;
    padding: 26px 30px;
}
.disclaimer-box h4 { font-size: 13px; font-weight: 800; color: var(--primary); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.5px; }
.disclaimer-box p { font-size: 13px; color: #444; line-height: 1.8; margin-bottom: 8px; }
.disclaimer-box p:last-child { margin-bottom: 0; }

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
.footer { background: #061a24; color: rgba(255,255,255,0.55); padding: 44px 0 24px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 32px; }
.footer-brand .brand-name { font-size: 20px; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.footer-brand .brand-name span { color: var(--accent); }
.footer-brand p { font-size: 12px; line-height: 1.9; }
.footer-col h5 { font-size: 12px; font-weight: 800; color: var(--white); margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.6px; }
.footer-col p, .footer-col a { font-size: 12px; margin-bottom: 7px; display: block; color: rgba(255,255,255,0.55); transition: color 0.15s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
}
.footer-bottom a { color: rgba(255,255,255,0.35); }
.footer-bottom a:hover { color: var(--accent); }

/* Sticky Mobile Phone */
.sticky-phone {
    display: none;
    position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: #f5a829;
  color: #0d4f6b;
  text-align: center;
  padding: 14px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
}

/* ══════════════════════════════════════════
   LINE ICONS (Lucide)
   ══════════════════════════════════════════ */
[data-lucide] {
    display: inline-block;
    vertical-align: middle;
    width: 1em;
    height: 1em;
    flex-shrink: 0;
    stroke-width: 1.75;
}
.svc-icon { color: var(--white); }
.trust-card .ti { color: var(--accent); }
.value-card .vi { color: var(--primary); }
.ci-icon [data-lucide] { width: 18px; height: 18px; }
.info-banner-icon [data-lucide] { width: 20px; height: 20px; }
.mobile-menu-btn [data-lucide] { width: 22px; height: 22px; }

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .article-grid { grid-template-columns: 1fr; }
    .sidebar-cta { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
}
@media (max-width: 900px) {
    .nav-links, .navbar-phone { display: none; }
    .mobile-menu-btn { display: block; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-card { display: none; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .steps { grid-template-columns: 1fr 1fr; }
    .steps::before { display: none; }
    .trust-grid { grid-template-columns: 1fr 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 24px; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}
@media (max-width: 600px) {
    .hero-lg h1, .hero-md h1 { font-size: 24px; }
    .services-grid { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .cta-group { flex-direction: column; }
    .sticky-phone { display: block; }
    .section { padding: 44px 0; }
    .cred-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .sidebar-cta { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr 1fr; }
}
