/* ============================================
   OR-BİL Bilişim - Kurumsal Tema
   ============================================ */

:root {
    --primary: #0B4F9C;
    --primary-dark: #083a75;
    --primary-light: #1a6bc4;
    --accent: #F59E0B;
    --success: #10B981;
    --danger: #DC2626;
    --text: #1F2937;
    --text-light: #6B7280;
    --bg: #F5F7FA;
    --white: #FFFFFF;
    --border: #E5E7EB;
    --shadow: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.10);
    --radius: 10px;
    --radius-lg: 16px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    font-size: 16px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a { color: var(--primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; }

/* ============ TOPBAR ============ */
.topbar {
    background: var(--primary-dark);
    color: #fff;
    font-size: 13px;
}
.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px;
    flex-wrap: wrap;
    gap: 10px;
}
.topbar-left { display: flex; gap: 20px; flex-wrap: wrap; }
.topbar-right { display: flex; gap: 6px; align-items: center; }
.topbar-right a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 6px;
    color: #fff;
    opacity: .9;
    font-weight: 500;
    transition: all .2s;
}
.topbar-right a:hover {
    opacity: 1;
    color: #fff;
    background: rgba(255,255,255,0.12);
}
.topbar-ico { font-size: 13px; line-height: 1; }
.topbar-cta {
    background: linear-gradient(135deg, #F59E0B, #D97706) !important;
    color: #fff !important;
    font-weight: 700;
    padding: 5px 12px !important;
    box-shadow: 0 2px 8px rgba(245,158,11,0.35);
}
.topbar-cta:hover {
    background: linear-gradient(135deg, #D97706, #B45309) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(245,158,11,0.5);
}

/* ============ HEADER ============ */
.site-header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    gap: 20px;
}
.logo img { max-height: 55px; display: block; }
.logo-text {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    color: var(--primary);
}
.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 800;
}
.logo-name { font-size: 20px; letter-spacing: -.5px; }

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav ul { display: flex; list-style: none; gap: 4px; align-items: center; }
.main-nav ul li { position: relative; }
.main-nav ul li > a {
    display: block;
    padding: 10px 14px;
    color: var(--text);
    font-weight: 500;
    border-radius: 8px;
    font-size: 15px;
    white-space: nowrap;
}
.main-nav ul li > a:hover,
.main-nav ul li > a.active {
    color: var(--primary);
    background: rgba(11,79,156,0.06);
}

.has-dropdown .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 240px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all .2s;
    z-index: 100;
}
.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown li > a { padding: 10px 14px !important; font-size: 14px; }

.menu-toggle {
    display: none;
    background: none;
    border: 1px solid var(--border);
    font-size: 22px;
    padding: 6px 12px;
    border-radius: 8px;
    cursor: pointer;
    color: var(--primary);
}

/* ============ BUTONLAR ============ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all .2s;
    text-decoration: none;
    white-space: nowrap;
}
.btn-dmo {
    background: linear-gradient(135deg, #DC2626, #B91C1C);
    color: #fff;
    box-shadow: 0 4px 12px rgba(220,38,38,0.25);
}
.btn-dmo:hover {
    background: linear-gradient(135deg, #B91C1C, #991B1B);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(220,38,38,0.35);
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); color: #fff; }
.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-color: #fff;
}
.btn-sm { padding: 8px 14px; font-size: 13px; }

/* ============ SAYFA HERO ============ */
main { min-height: 60vh; }

.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 50%);
    pointer-events: none;
}
.page-hero h1 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -.8px;
    position: relative;
}
.page-hero p {
    font-size: 17px;
    opacity: .9;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

/* ============ BÖLÜM ============ */
.section { padding: 70px 0; }
.section-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 12px;
    letter-spacing: -.6px;
}
.section-subtitle {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 700px;
}

/* ============ KARTLAR ============ */
.grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: all .25s;
    display: flex;
    flex-direction: column;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}
.card-icon {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, rgba(11,79,156,0.10), rgba(11,79,156,0.05));
    color: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 18px;
}
.card h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text);
}
.card p { color: var(--text-light); font-size: 15px; line-height: 1.65; }
.card-link {
    margin-top: auto;
    padding-top: 16px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
}

/* ============ DMO BÖLÜMÜ ============ */
.dmo-section {
    background: linear-gradient(135deg, #DC2626 0%, #991B1B 100%);
    color: #fff;
    padding: 60px 20px;
    border-radius: var(--radius-lg);
    margin: 40px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    box-shadow: var(--shadow-lg);
}
.dmo-section h2 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 8px;
}
.dmo-section p { font-size: 16px; opacity: .95; }
.dmo-section .btn-dmo-white {
    background: #fff;
    color: #B91C1C;
    font-weight: 700;
    padding: 16px 32px;
    font-size: 16px;
    border-radius: 10px;
}
.dmo-section .btn-dmo-white:hover {
    background: #fff;
    color: #991B1B;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* ============ HIZLI ERİŞİM ============ */
.quick-access {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 30px;
}
.quick-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 26px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    transition: all .25s;
    display: block;
}
.quick-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.quick-icon { font-size: 36px; margin-bottom: 12px; }
.quick-card h4 {
    color: var(--text);
    font-size: 17px;
    margin-bottom: 6px;
    font-weight: 700;
}
.quick-card p { color: var(--text-light); font-size: 13px; }

.quick-card-accent {
    border: 2px solid var(--accent);
    background: linear-gradient(180deg, #FFFBEB 0%, #fff 100%);
    position: relative;
}
.quick-card-accent::before {
    content: 'YENİ';
    position: absolute;
    top: -10px;
    right: 14px;
    background: var(--accent);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: .5px;
}
.quick-card-accent:hover {
    border-color: #D97706;
    background: linear-gradient(180deg, #FEF3C7 0%, #fff 100%);
}
.quick-card-accent:hover .quick-icon { transform: scale(1.1); }

/* ============ İÇERİK SAYFASI ============ */
.content-page {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: var(--shadow);
    max-width: 900px;
    margin: 0 auto;
}
.content-page h1 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text);
    letter-spacing: -.5px;
}
.content-page p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 16px;
}
.content-page ul {
    margin: 16px 0 16px 24px;
    color: var(--text);
}
.content-page ul li { margin-bottom: 8px; line-height: 1.7; }

/* ============ ÇÖZÜM ORTAKLARI ============ */
.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.partner-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: all .25s;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.partner-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}
.partner-logo {
    width: 100%;
    max-width: 180px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    padding: 12px;
    background: #fff;
    border-radius: 10px;
}
.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform .3s;
}
.partner-card:hover .partner-logo img { transform: scale(1.05); }
.partner-logo-text {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-align: center;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.partner-card h3 {
    font-size: 17px;
    color: var(--text);
    font-weight: 700;
    margin-bottom: 6px;
    text-align: center;
}
.partner-card p {
    color: var(--text-light);
    font-size: 14px;
    text-align: center;
}

/* ============ FOOTER ============ */
.site-footer {
    background: #0F172A;
    color: #CBD5E1;
    margin-top: 80px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding: 60px 20px;
}
.footer-col h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 18px;
    font-weight: 700;
}
.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    color: #94A3B8;
    margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; font-size: 14px; }
.footer-col ul li a { color: #CBD5E1; }
.footer-col ul li a:hover { color: var(--accent); }
.footer-contact li { display: flex; gap: 8px; align-items: flex-start; }
.footer-bottom {
    border-top: 1px solid #1E293B;
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    color: #64748B;
}

/* ============ RICH CONTENT ============ */
.rich-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
}
.rich-content p { margin: 0 0 16px; }
.rich-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
    margin: 28px 0 12px;
    letter-spacing: -.3px;
}
.rich-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin: 22px 0 10px;
}
.rich-content h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    margin: 18px 0 8px;
}
.rich-content ul,
.rich-content ol { margin: 12px 0 16px; padding-left: 26px; }
.rich-content li { margin-bottom: 6px; line-height: 1.7; }
.rich-content ul li { list-style: disc; }
.rich-content ol li { list-style: decimal; }
.rich-content a { color: var(--primary); text-decoration: underline; }
.rich-content a:hover { color: var(--primary-dark); }
.rich-content strong,
.rich-content b { font-weight: 700; color: #111827; }
.rich-content em,
.rich-content i { font-style: italic; }
.rich-content blockquote {
    border-left: 4px solid var(--primary);
    padding: 10px 18px;
    margin: 16px 0;
    background: #F1F5F9;
    color: var(--text-light);
    border-radius: 0 8px 8px 0;
}
.rich-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 12px 0;
}
.rich-content table { width: 100%; border-collapse: collapse; margin: 16px 0; }
.rich-content table td,
.rich-content table th {
    padding: 10px 14px;
    border: 1px solid var(--border);
}
.rich-content table th { background: #F8FAFC; font-weight: 600; }
.rich-content hr { border: none; border-top: 1px solid var(--border); margin: 24px 0; }

/* ============ SLIDER ============ */
.slider-hero {
    position: relative;
    height: auto;
    min-height: 320px;
    max-height: 620px;
    overflow: hidden;
    background: transparent;
    aspect-ratio: 1920 / 620;
}
.slider-track {
    display: flex;
    height: 100%;
    width: 100%;
    transition: transform .7s cubic-bezier(0.4, 0, 0.2, 1);
}
.slide-item {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
}
.slide-item.has-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.20) 50%, rgba(0,0,0,0.00) 80%);
    z-index: 1;
}
.slide-item.no-content::before { display: none; }
.slide-item:not(.has-image)::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    z-index: 1;
}
.slide-content {
    position: relative;
    z-index: 2;
    color: #fff;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.slide-content h1 {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -1px;
    max-width: 780px;
}
.slide-content p {
    font-size: 18px;
    line-height: 1.6;
    opacity: .95;
    margin-bottom: 28px;
    max-width: 620px;
}
.slide-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-slide {
    padding: 14px 28px;
    font-size: 15px;
    border-radius: 10px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all .25s;
}
.btn-slide-kirmizi {
    background: linear-gradient(135deg, #DC2626, #B91C1C);
    color: #fff;
    box-shadow: 0 6px 20px rgba(220,38,38,0.35);
}
.btn-slide-kirmizi:hover {
    background: linear-gradient(135deg, #B91C1C, #991B1B);
    color: #fff;
    transform: translateY(-2px);
}
.btn-slide-beyaz {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.btn-slide-beyaz:hover {
    background: #F8FAFC;
    color: var(--primary-dark);
    transform: translateY(-2px);
}
.btn-slide-mavi {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 6px 20px rgba(11,79,156,0.35);
}
.btn-slide-mavi:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
}

.slider-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}
.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    border: none;
    cursor: pointer;
    transition: all .25s;
    padding: 0;
}
.slider-dot.active {
    background: #fff;
    width: 32px;
    border-radius: 6px;
}
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.30);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s;
    font-family: inherit;
    line-height: 1;
    padding-bottom: 3px;
}
.slider-arrow:hover { background: rgba(255,255,255,0.30); }
.slider-arrow-prev { left: 20px; }
.slider-arrow-next { right: 20px; }

/* ============ İLETİŞİM SAYFASI ============ */
.iletisim-page {
    padding: 50px 0 70px;
    background: #fff;
}

.iletisim-baslik {
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 36px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border);
    letter-spacing: -.3px;
}

/* ÜST BÖLÜM */
.iletisim-ust {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
    margin-bottom: 60px;
}

/* SOL — BİLGİLER */
.iletisim-bilgi {
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding-top: 4px;
}

.bilgi-blok {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bilgi-etiket {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--text-light);
}

.bilgi-deger {
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    line-height: 1.6;
    margin: 0;
    word-break: break-word;
}

.bilgi-deger a {
    color: var(--text);
    text-decoration: none;
    transition: color .2s;
}
.bilgi-deger a:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* SAĞ — HARİTA */
.iletisim-harita {
    position: relative;
    display: block;
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    height: 340px;
    background: #F8FAFC;
    text-decoration: none;
    transition: all .25s;
}
.iletisim-harita iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    pointer-events: none;  /* tıklama haritaya değil link'e gitsin */
    filter: grayscale(0.10);
    transition: filter .3s;
}
.iletisim-harita:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}
.iletisim-harita:hover iframe {
    filter: grayscale(0);
}

.harita-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 15px;
}

/* Harita üstü overlay (hover'da çıkar) */
.harita-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(11,79,156,0.92) 100%);
    color: #fff;
    padding: 24px 20px 14px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .3px;
    text-align: right;
    opacity: 0;
    transition: opacity .25s;
    pointer-events: none;
}
.iletisim-harita:hover .harita-overlay {
    opacity: 1;
}

/* ALT — ÇALIŞMA SAATLERİ */
.iletisim-saatler {
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
}
.iletisim-saatler h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
    letter-spacing: -.2px;
}
.saatler-liste {
    list-style: none;
    padding: 0;
    margin: 0;
}
.saatler-satir {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 4px;
    font-size: 14px;
    border-bottom: 1px dashed var(--border);
}
.saatler-satir:last-child {
    border-bottom: none;
}
.saatler-gun {
    color: var(--text);
    font-weight: 500;
    text-align: left;
}
.saatler-saat {
    color: var(--text);
    font-weight: 600;
    text-align: right;
}
.saatler-saat.kapali {
    color: var(--danger);
    font-weight: 500;
}

/* ============ İLETİŞİM RESPONSIVE ============ */
@media (max-width: 900px) {
    .iletisim-ust {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .iletisim-harita {
        height: 260px;
        order: -1;  /* harita üste gelsin */
    }
    .iletisim-bilgi {
        gap: 18px;
    }
    .iletisim-baslik {
        font-size: 24px;
        margin-bottom: 26px;
    }
}

@media (max-width: 640px) {
    .iletisim-page {
        padding: 34px 0 50px;
    }
    .iletisim-baslik {
        font-size: 22px;
        margin-bottom: 22px;
        padding-bottom: 12px;
    }
    .iletisim-harita {
        height: 220px;
    }
    .bilgi-deger {
        font-size: 14px;
    }
    .iletisim-saatler h2 {
        font-size: 16px;
    }
    .saatler-satir {
        font-size: 13px;
        padding: 9px 2px;
    }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
    .home-hero-inner { grid-template-columns: 1fr; }
    .home-hero h1 { font-size: 34px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .page-hero h1 { font-size: 30px; }
    .content-page { padding: 30px 24px; }
}

@media (max-width: 768px) {
    .slider-hero {
        aspect-ratio: 16 / 9;
        min-height: 260px;
        max-height: 400px;
    }
    .slide-content h1 { font-size: 24px; }
    .slide-content p { font-size: 14px; margin-bottom: 16px; }
    .slider-arrow { width: 38px; height: 38px; font-size: 20px; }
    .slider-arrow-prev { left: 10px; }
    .slider-arrow-next { right: 10px; }
    .btn-slide { padding: 10px 16px; font-size: 13px; }

    .corp-page-header { padding: 36px 0 22px; }
    .corp-page-header h1 { font-size: 26px; }
    .corp-contact { padding: 36px 0 50px; }
    .corp-office { padding-bottom: 28px; margin-bottom: 28px; }
    .corp-office h2 { font-size: 18px; }
    .corp-office-info p { font-size: 14px; }
    .corp-label { min-width: 0; display: block; margin-bottom: 2px; }
    .corp-hours td { padding: 10px 0; font-size: 14px; }
    .corp-map iframe { height: 300px !important; }
}

@media (max-width: 640px) {
    .topbar-left span:nth-child(2) { display: none; }
    .topbar-right { gap: 4px; font-size: 12px; }
    .topbar-right a { padding: 3px 6px; }
    .topbar-cta { padding: 4px 8px !important; }
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        align-items: stretch;
        gap: 16px;
    }
    .main-nav.open { display: flex; }
    .main-nav ul { flex-direction: column; align-items: stretch; }
    .main-nav ul li > a { padding: 12px 14px; }
    .has-dropdown .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #F8FAFC;
        margin-top: 4px;
    }
    .menu-toggle { display: block; }
    .footer-grid { grid-template-columns: 1fr; }
    .dmo-section { text-align: center; justify-content: center; }
    .home-hero { padding: 50px 20px; }
    .home-hero h1 { font-size: 28px; }
    .section { padding: 50px 0; }
    .section-title { font-size: 26px; }
}