/*
Theme Name: Bursa Öğretmen Nakliyat
Theme URI: https://www.bursaogretmennakliyat.com
Author: Bursa Öğretmen Nakliyat
Author URI: https://www.bursaogretmennakliyat.com
Description: Bursa Öğretmen Nakliyat için profesyonel, kurumsal ve SEO odaklı WordPress teması. Evden eve nakliyat, asansörlü taşımacılık, ofis taşıma hizmetleri.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bursa-nakliyat
Tags: business, corporate, seo, moving-company, responsive
*/

/* ==============================
   1. CSS RESET & ROOT VARIABLES
   ============================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --navy:        #0d1b3e;
    --navy-mid:    #1a3a6e;
    --navy-light:  #1e4a8a;
    --blue:        #1976d2;
    --red:         #dc2626;
    --red-dark:    #b91c1c;
    --green:       #16a34a;
    --green-dark:  #15803d;
    --yellow:      #facc15;
    --white:       #ffffff;
    --gray-50:     #f9fafb;
    --gray-100:    #f3f4f6;
    --gray-200:    #e5e7eb;
    --gray-400:    #9ca3af;
    --gray-500:    #6b7280;
    --gray-700:    #374151;
    --gray-900:    #111827;
    --shadow-sm:   0 1px 3px rgba(0,0,0,.1);
    --shadow-md:   0 4px 12px rgba(0,0,0,.12);
    --shadow-lg:   0 10px 30px rgba(0,0,0,.15);
    --shadow-xl:   0 20px 50px rgba(0,0,0,.2);
    --radius:      12px;
    --radius-sm:   8px;
    --radius-lg:   20px;
    --transition:  all 0.3s ease;
    --font:        'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* ==============================
   2. TYPOGRAPHY
   ============================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.2;
    color: var(--navy);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 8px;
}

.section-title {
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 640px;
    margin: 0 auto;
}

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

/* ==============================
   3. BUTTONS
   ============================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-call {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(220,38,38,.35);
}

.btn-call:hover {
    background: linear-gradient(135deg, var(--red-dark) 0%, #991b1b 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(220,38,38,.45);
    color: var(--white);
}

.btn-whatsapp {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(22,163,74,.35);
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, var(--green-dark) 0%, #166534 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(22,163,74,.45);
    color: var(--white);
}

.btn-navy {
    background: var(--navy);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-navy:hover {
    background: var(--navy-mid);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--navy);
    color: var(--navy);
}

.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
}

.btn-sm {
    font-size: 0.875rem;
    padding: 10px 20px;
}

.btn-lg {
    font-size: 1.1rem;
    padding: 18px 40px;
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

/* ==============================
   4. HEADER
   ============================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13,27,62,.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,.08);
    transition: var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,.3);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 16px;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    text-decoration: none;
}

.site-logo img {
    height: 56px;
    width: auto;
    object-fit: contain;
}

.logo-text { display: flex; flex-direction: column; }
.logo-name {
    font-size: 1rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: .02em;
}
.logo-tagline {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--yellow);
    letter-spacing: .18em;
    text-transform: uppercase;
}

/* Nav */
.main-nav { display: flex; align-items: center; gap: 4px; }

.main-nav a {
    display: block;
    padding: 8px 14px;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255,255,255,.85);
    border-radius: 8px;
    transition: var(--transition);
}

.main-nav a:hover,
.main-nav a.current-menu-item,
.main-nav a.current_page_item {
    background: rgba(255,255,255,.12);
    color: var(--white);
}

/* Header actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.header-actions .btn {
    padding: 10px 18px;
    font-size: 0.85rem;
    border-radius: 8px;
}

/* Mobile toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 8px;
    cursor: pointer;
    gap: 5px;
    flex-shrink: 0;
}

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

/* ==============================
   5. MOBILE NAV
   ============================== */
.mobile-nav {
    display: none;
    background: #0d2352;
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 16px 0;
}

.mobile-nav.is-open { display: block; }

.mobile-nav a {
    display: block;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255,255,255,.85);
    transition: var(--transition);
}

.mobile-nav a:hover,
.mobile-nav a.current-menu-item {
    background: rgba(255,255,255,.08);
    color: var(--white);
}

.mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px 24px 8px;
    border-top: 1px solid rgba(255,255,255,.08);
    margin-top: 8px;
}

.mobile-nav-actions .btn {
    justify-content: center;
}

/* ==============================
   6. PAGE HEADER
   ============================== */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    padding: 140px 0 80px;
    text-align: center;
}

.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero .subtitle {
    font-size: 1.15rem;
    color: rgba(147,197,253,1);
    max-width: 600px;
    margin: 0 auto;
}

/* ==============================
   7. HERO SECTION
   ============================== */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, #1a3a6e 45%, #0d2b5a 75%, #1a0a0a 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 10%;
    width: 400px;
    height: 400px;
    background: rgba(59,130,246,.06);
    border-radius: 50%;
    filter: blur(80px);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 15%;
    right: 10%;
    width: 360px;
    height: 360px;
    background: rgba(220,38,38,.05);
    border-radius: 50%;
    filter: blur(80px);
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding: 80px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 100px;
    padding: 6px 16px;
    margin-bottom: 24px;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
    0%,100%{opacity:1;transform:scale(1)}
    50%{opacity:.6;transform:scale(.8)}
}

.hero-badge span {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255,255,255,.9);
}

.hero h1 {
    color: var(--white);
    margin-bottom: 12px;
}

.hero h1 .accent { color: var(--yellow); }

.hero .subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: rgba(147,197,253,1);
    margin-bottom: 12px;
}

.hero .desc {
    font-size: 1.05rem;
    color: rgba(200,215,240,.85);
    max-width: 640px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-checklist {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 32px;
}

.hero-check {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(200,215,240,.9);
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-check svg {
    width: 18px;
    height: 18px;
    color: #4ade80;
    flex-shrink: 0;
}

/* ==============================
   8. STATS BAR
   ============================== */
.stats-bar {
    background: var(--navy-mid);
    padding: 28px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    text-align: center;
}

.stat-item .val {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--yellow);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-item .lbl {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(191,219,254,1);
    letter-spacing: .04em;
}

/* ==============================
   9. SECTIONS
   ============================== */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-bg { background: var(--gray-50); }
.section-dark { background: var(--navy); }

.section-header {
    margin-bottom: 56px;
}

/* ==============================
   10. SERVICE CARDS
   ============================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--navy), var(--blue));
    transform: scaleX(0);
    transition: var(--transition);
}

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

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-icon { font-size: 3rem; margin-bottom: 20px; }

.service-card h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-card .more-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--blue);
    transition: var(--transition);
}

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

.service-card .more-link svg {
    width: 16px;
    height: 16px;
    transition: var(--transition);
}

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

.why-features { margin-top: 28px; }

.why-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 0;
}

.why-feature svg {
    width: 20px;
    height: 20px;
    color: var(--green);
    flex-shrink: 0;
}

.why-feature span {
    font-weight: 600;
    color: var(--gray-700);
}

.why-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.why-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    transition: var(--transition);
}

.why-card:hover { box-shadow: var(--shadow-md); }

.why-card-icon {
    font-size: 2.5rem;
    margin-bottom: 14px;
}

.why-card h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.why-card p {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin: 0;
    line-height: 1.5;
}

/* ==============================
   12. REGIONS
   ============================== */
.regions-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.region-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 12px 24px;
    border-radius: 100px;
    transition: var(--transition);
    text-decoration: none;
}

.region-tag:hover {
    background: linear-gradient(135deg, var(--blue), var(--navy));
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--white);
}

/* ==============================
   13. REGIONS PAGE CARDS
   ============================== */
.regions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.region-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

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

.region-card-head {
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 800;
}

.region-card-head svg {
    width: 22px;
    height: 22px;
    opacity: .85;
}

.region-card-body { padding: 24px; }

.region-card-body p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.65;
    margin-bottom: 16px;
}

.region-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }

.rtag {
    background: rgba(25,118,210,.08);
    color: var(--blue);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 100px;
    border: 1px solid rgba(25,118,210,.15);
}

.region-card-actions {
    display: flex;
    gap: 8px;
}

.region-card-actions .btn {
    flex: 1;
    justify-content: center;
    font-size: 0.85rem;
    padding: 10px 14px;
    border-radius: 8px;
}

/* ==============================
   14. TESTIMONIALS
   ============================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 28px;
    transition: var(--transition);
}

.testimonial-card:hover { box-shadow: var(--shadow-md); }

.stars { display: flex; gap: 3px; margin-bottom: 16px; }
.stars svg { width: 18px; height: 18px; fill: var(--yellow); color: var(--yellow); }

.testimonial-card blockquote {
    font-size: 0.95rem;
    color: var(--gray-700);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
    border: none;
    padding: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--white);
    flex-shrink: 0;
}

.author-name { font-weight: 700; font-size: 0.95rem; color: var(--navy); }
.author-loc { font-size: 0.8rem; color: var(--gray-400); }

/* ==============================
   15. CTA SECTIONS
   ============================== */
.cta-section {
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 { color: var(--white); margin-bottom: 12px; }
.cta-section p { color: rgba(147,197,253,1); font-size: 1.1rem; margin-bottom: 36px; }

.cta-section .btn-group { justify-content: center; }

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

.about-text p { margin-bottom: 18px; line-height: 1.8; color: var(--gray-700); }

.stat-cards-2x2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.stat-card {
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
}

.stat-card.blue-tint  { background: #eff6ff; border: 1px solid #bfdbfe; }
.stat-card.yellow-tint{ background: #fefce8; border: 1px solid #fef08a; }
.stat-card.green-tint { background: #f0fdf4; border: 1px solid #bbf7d0; }
.stat-card.red-tint   { background: #fff1f2; border: 1px solid #fecdd3; }

.stat-card .icon { font-size: 2.5rem; margin-bottom: 12px; }
.stat-card .val { font-size: 2rem; font-weight: 900; color: var(--navy); }
.stat-card .lbl { font-size: 0.875rem; font-weight: 600; color: var(--gray-500); }

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

.value-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: var(--transition);
}

.value-card:hover { box-shadow: var(--shadow-md); }
.value-card .icon { font-size: 2.5rem; margin-bottom: 16px; }
.value-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.value-card p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.65; margin: 0; }

/* ==============================
   17. SERVICES PAGE (FULL)
   ============================== */
.service-full-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.service-full-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.service-full-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-full-head {
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.service-full-head .emoji { font-size: 2.8rem; }
.service-full-head h2 { color: var(--white); font-size: 1.4rem; }

.service-full-body { padding: 28px; }
.service-full-body p { color: var(--gray-500); line-height: 1.7; margin-bottom: 20px; }

.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--gray-700);
    font-weight: 500;
}

.feature-item svg {
    width: 16px;
    height: 16px;
    color: var(--green);
    flex-shrink: 0;
}

/* ==============================
   18. CONTACT PAGE
   ============================== */
.contact-grid {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 48px;
    align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 16px; }

.contact-card {
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
    text-decoration: none;
}

.contact-card.red-card {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(220,38,38,.3);
}

.contact-card.green-card {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(22,163,74,.3);
}

.contact-card.gray-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
}

.contact-card:hover { transform: translateY(-3px); }

.contact-card-icon {
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-icon svg { width: 26px; height: 26px; }

.gray-card .contact-card-icon {
    background: rgba(13,27,62,.08);
}

.contact-card-text .sub { font-size: 0.75rem; opacity: .75; margin-bottom: 2px; font-weight: 500; }
.contact-card-text .main { font-size: 1.1rem; font-weight: 800; }
.contact-card-text .detail { font-size: 0.85rem; opacity: .8; }

.gray-card .contact-card-text .sub { color: var(--gray-500); }
.gray-card .contact-card-text .main { color: var(--navy); }
.gray-card .contact-card-text .detail { color: var(--gray-500); }

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

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 10px 16px;
    border-radius: 10px;
    transition: var(--transition);
    flex: 1;
    justify-content: center;
    color: var(--white);
}

.social-link:hover { transform: translateY(-2px); opacity: .9; color: var(--white); }
.social-link svg { width: 18px; height: 18px; }

.social-link.instagram { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); }
.social-link.facebook  { background: #1877f2; }
.social-link.google    { background: #ea4335; }

.map-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.map-header {
    background: var(--navy);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
}

.map-header svg { width: 18px; height: 18px; color: var(--yellow); }

.map-wrapper iframe {
    width: 100%;
    height: 380px;
    display: block;
    border: none;
}

.mini-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.mini-stat {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 20px 16px;
    text-align: center;
}

.mini-stat .val { font-size: 1.7rem; font-weight: 900; color: var(--navy); }
.mini-stat .lbl { font-size: 0.8rem; font-weight: 700; color: var(--gray-700); margin: 2px 0; }
.mini-stat .sub { font-size: 0.7rem; color: var(--gray-400); }

/* ==============================
   19. FOOTER
   ============================== */
.site-footer {
    background: var(--navy);
    color: rgba(200,215,240,.8);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    text-decoration: none;
}

.footer-logo img { height: 60px; width: auto; }

.footer-col h4 {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: .08em;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(59,130,246,.4);
    margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 8px; }

.footer-links a {
    font-size: 0.875rem;
    color: rgba(200,215,240,.75);
    transition: var(--transition);
}

.footer-links a::before { content: '› '; opacity: .5; }
.footer-links a:hover { color: var(--white); padding-left: 4px; }

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

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact-item:hover { transform: translateX(4px); }

.fci-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fci-icon.red   { background: rgba(220,38,38,.18); }
.fci-icon.green { background: rgba(22,163,74,.18); }
.fci-icon svg { width: 18px; height: 18px; }
.fci-icon.red svg   { color: #fca5a5; }
.fci-icon.green svg { color: #86efac; }

.fci-text .lbl { font-size: 0.7rem; color: rgba(200,215,240,.5); margin-bottom: 1px; }
.fci-text .val { font-size: 0.9rem; font-weight: 700; color: var(--white); }

.footer-socials { display: flex; gap: 10px; margin-top: 16px; }

.footer-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--white);
    text-decoration: none;
}

.footer-social-btn:hover { transform: translateY(-3px); opacity: .85; color: var(--white); }
.footer-social-btn svg { width: 18px; height: 18px; }
.footer-social-btn.instagram { background: linear-gradient(135deg, #833ab4, #fd1d1d); }
.footer-social-btn.facebook  { background: #1877f2; }
.footer-social-btn.google    { background: #ea4335; }

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

.footer-bottom p { font-size: 0.82rem; color: rgba(200,215,240,.5); margin: 0; }

.footer-seo-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.footer-seo-tags span {
    font-size: 0.75rem;
    color: rgba(200,215,240,.35);
}

.footer-seo-tags span:not(:last-child)::after { content: ' ·'; margin-left: 6px; }

/* ==============================
   20. WHATSAPP STICKY
   ============================== */
.whatsapp-sticky {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #16a34a, #15803d);
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 14px 22px;
    border-radius: 100px;
    box-shadow: 0 6px 24px rgba(22,163,74,.4);
    text-decoration: none;
    transition: var(--transition);
    animation: wa-bounce 2.5s ease infinite;
}

.whatsapp-sticky:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 12px 36px rgba(22,163,74,.5);
    color: var(--white);
}

.whatsapp-sticky svg { width: 22px; height: 22px; flex-shrink: 0; }

@keyframes wa-bounce {
    0%,100%{box-shadow:0 6px 24px rgba(22,163,74,.4)}
    50%{box-shadow:0 6px 36px rgba(22,163,74,.7)}
}

/* ==============================
   21. BREADCRUMB
   ============================== */
.breadcrumb {
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
    padding: 12px 0;
}

.breadcrumb ul {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--gray-400);
}

.breadcrumb li:not(:last-child)::after { content: '›'; }
.breadcrumb li a { color: var(--blue); }
.breadcrumb li.current { color: var(--gray-700); font-weight: 600; }

/* ==============================
   22. RESPONSIVE
   ============================== */
@media (max-width: 1024px) {
    .services-grid     { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid       { grid-template-columns: 1fr 1fr; gap: 32px; }
    .why-grid          { grid-template-columns: 1fr; gap: 48px; }
    .about-grid        { grid-template-columns: 1fr; gap: 48px; }
    .contact-grid      { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .main-nav       { display: none; }
    .header-actions { display: none; }
    .mobile-toggle  { display: flex; }

    .stats-grid     { grid-template-columns: repeat(2, 1fr); }
    .services-grid  { grid-template-columns: 1fr; }
    .regions-grid   { grid-template-columns: 1fr; }
    .service-full-grid  { grid-template-columns: 1fr; }
    .values-grid    { grid-template-columns: 1fr; }
    .testimonials-grid  { grid-template-columns: 1fr; }
    .footer-grid    { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom  { flex-direction: column; text-align: center; }
    .why-cards      { grid-template-columns: 1fr; }
    .stat-cards-2x2 { grid-template-columns: 1fr 1fr; }
    .feature-list   { grid-template-columns: 1fr; }
    .mini-stats-row { grid-template-columns: 1fr; }
    .hero-checklist { gap: 12px; }
    .social-links-row { flex-wrap: wrap; }
    .whatsapp-sticky span { display: none; }

    .section { padding: 64px 0; }
    .hero-inner { padding: 60px 0; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .btn-lg { padding: 15px 28px; font-size: 1rem; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-cards-2x2 { grid-template-columns: 1fr; }
}

/* ==============================
   23. WORDPRESS HELPERS
   ============================== */
.wp-caption { max-width: 100%; }
.alignnone, .aligncenter, .alignright, .alignleft { margin: 0; }
.aligncenter { display: block; margin: 0 auto; }
.wp-block-image { margin-bottom: 24px; }
.entry-content ul { list-style: disc; padding-left: 1.5em; }
.entry-content ol { list-style: decimal; padding-left: 1.5em; }
.screen-reader-text { clip:rect(1px,1px,1px,1px); position:absolute; overflow:hidden; height:1px; width:1px; }
.skip-link { position:absolute; top:-40px; left:0; background:var(--navy); color:#fff; padding:8px; z-index:9999; transition:top .3s; }
.skip-link:focus { top:0; }

/* ==============================
   24. HERO SLIDER
   ============================== */
.hero-slider {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    padding-top: 80px;
    background: var(--navy);
}

.slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
    flex: 0 0 100%;
    width: 100%;
    min-height: calc(100vh - 80px);
    position: relative;
    display: flex;
    align-items: center;
}

.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 8s ease;
}

.slide.is-active .slide-bg {
    transform: scale(1.05);
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13,27,62,.88) 0%, rgba(26,58,110,.7) 60%, rgba(13,27,62,.5) 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    padding: 60px 0;
    max-width: 760px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}

.slide.is-active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

/* Fallback slide (no images uploaded yet) */
.slide-fallback {
    background: linear-gradient(135deg, var(--navy) 0%, #1a3a6e 45%, #0d2b5a 75%, #1a0a0a 100%);
}

.slide-fallback::before {
    content: '';
    position: absolute;
    top: 15%; left: 10%;
    width: 400px; height: 400px;
    background: rgba(59,130,246,.06);
    border-radius: 50%;
    filter: blur(80px);
}

.slide-fallback::after {
    content: '';
    position: absolute;
    bottom: 15%; right: 10%;
    width: 360px; height: 360px;
    background: rgba(220,38,38,.05);
    border-radius: 50%;
    filter: blur(80px);
}

/* Slider Controls */
.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--white);
    backdrop-filter: blur(8px);
}

.slider-prev { left: 24px; }
.slider-next { right: 24px; }

.slider-prev:hover,
.slider-next:hover {
    background: rgba(255,255,255,.28);
    transform: translateY(-50%) scale(1.08);
}

.slider-prev svg,
.slider-next svg {
    width: 22px;
    height: 22px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
    align-items: center;
}

.slider-dot {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,.4);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    padding: 0;
}

.slider-dot.is-active {
    background: var(--white);
    width: 28px;
    border-radius: 5px;
}

/* Slide counter */
.slider-counter {
    position: absolute;
    bottom: 28px;
    right: 36px;
    z-index: 10;
    color: rgba(255,255,255,.6);
    font-size: 0.85rem;
    font-weight: 600;
}

/* ==============================
   25. GALLERY PAGE
   ============================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    background: var(--gray-100);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13,27,62,.55);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-overlay svg {
    width: 36px;
    height: 36px;
    color: var(--white);
}

.gallery-item-overlay span {
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    padding: 0 12px;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0,0,0,.92);
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(8px);
}

.lightbox.is-open { display: flex; }

.lightbox-inner {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: 0 30px 80px rgba(0,0,0,.5);
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--white);
    transition: var(--transition);
    z-index: 100000;
}

.lightbox-close:hover {
    background: rgba(255,255,255,.3);
    transform: scale(1.1);
}

.lightbox-close svg { width: 20px; height: 20px; }

.lightbox-prev,
.lightbox-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--white);
    transition: var(--transition);
    z-index: 100000;
}

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255,255,255,.28);
}

.lightbox-prev svg,
.lightbox-next svg { width: 24px; height: 24px; }

.lightbox-caption {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,.8);
    font-size: 0.9rem;
    font-weight: 600;
    background: rgba(0,0,0,.5);
    padding: 8px 20px;
    border-radius: 100px;
    z-index: 100000;
    white-space: nowrap;
}

/* Gallery empty state */
.gallery-empty {
    text-align: center;
    padding: 80px 20px;
    color: var(--gray-400);
}

.gallery-empty svg {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    opacity: .4;
}

.gallery-empty h3 { color: var(--gray-500); margin-bottom: 8px; }
.gallery-empty p  { font-size: .9rem; }

/* Admin Slider Guide Box */
.bon-admin-notice {
    background: #f0f6fc;
    border-left: 4px solid #1976d2;
    padding: 12px 16px;
    margin: 8px 0;
    border-radius: 0 6px 6px 0;
    font-size: 13px;
}

@media (max-width: 768px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .slider-prev, .slider-next { width: 40px; height: 40px; }
    .slider-prev svg, .slider-next svg { width: 18px; height: 18px; }
    .lightbox-prev, .lightbox-next { display: none; }
}

@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
}
