:root {
    --primary: #3dbccc;
    --primary-dark: #2aa8b8;
    --navy: #1a2b3c;
    --navy-light: #243447;
    --text: #4a5568;
    --text-dark: #1a2b3c;
    --text-light: #718096;
    --bg: #f5f7fa;
    --white: #ffffff;
    --border: #e2e8f0;
    --shadow: 0 4px 20px rgba(26, 43, 60, 0.08);
    --radius: 8px;
    --container: 1200px;
    --font: 'Montserrat', 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    font-size: 15px;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.2s, background 0.2s; }
ul { list-style: none; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background: var(--navy);
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    padding: 8px 0;
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.top-bar a { color: rgba(255,255,255,0.9); }
.top-bar a:hover { color: var(--primary); }
.top-bar-left { display: flex; align-items: center; gap: 8px; }
.top-bar-left i { color: var(--primary); }
.top-bar-right { display: flex; align-items: center; gap: 16px; }
.top-social { display: flex; gap: 10px; }
.top-social a {
    width: 28px; height: 28px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    font-size: 12px;
}
.top-social a:hover { background: var(--primary); color: var(--navy); }

/* Header */
.main-header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}
.main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 20px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 22px;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: -0.5px;
    flex-shrink: 0;
}
.logo-icon {
    width: 42px; height: 42px;
    background: var(--primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-size: 18px;
}
.logo span { color: var(--primary); }

.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}
.main-nav > a,
.nav-dropdown > button {
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font);
    display: flex;
    align-items: center;
    gap: 5px;
}
.main-nav > a:hover,
.nav-dropdown:hover > button { color: var(--primary); }

.nav-dropdown { position: relative; }
.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    min-width: 280px;
    max-width: 900px;
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
    z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu.wide { width: 700px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.nav-dropdown-menu.brands { width: 560px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; }
.nav-dropdown-menu a {
    display: block;
    padding: 10px 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    border-radius: 4px;
    text-transform: uppercase;
}
.nav-dropdown-menu a:hover { background: var(--bg); color: var(--primary); }
.nav-dropdown-menu.brands a { text-align: center; padding: 14px 8px; }

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--primary);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    font-family: var(--font);
    white-space: nowrap;
}
.btn-primary:hover { background: var(--primary-dark); color: var(--white); }
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
}
.btn-outline:hover { background: var(--white); color: var(--navy); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.mobile-toggle {
    display: none;
    width: 44px; height: 44px;
    border: 1px solid var(--border);
    background: var(--white);
    border-radius: 4px;
    font-size: 20px;
    color: var(--navy);
    cursor: pointer;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 60px 0 80px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.hero-inner { position: relative; z-index: 2; text-align: center; max-width: 900px; margin: 0 auto; }
.hero h1 {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
    text-transform: uppercase;
}
.hero h1 .highlight { color: var(--primary); }
.hero-sub {
    font-size: 16px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 36px;
}
.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
}
.breadcrumb a:hover { color: var(--primary); }

/* Service Finder */
.service-finder {
    background: var(--white);
    border-radius: var(--radius);
    padding: 8px;
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    gap: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    max-width: 960px;
    margin: 0 auto;
}
.service-finder select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: var(--font);
    font-size: 14px;
    color: var(--text-dark);
    background: var(--white);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%234a5568' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    cursor: pointer;
}
.service-finder select:disabled { opacity: 0.5; cursor: not-allowed; }
.service-finder .btn-primary { padding: 14px 28px; height: 100%; }

.hero-cta-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 28px;
    flex-wrap: wrap;
}

/* Section */
.section { padding: 60px 0; }
.section-white { background: var(--white); }
.section-gray { background: var(--bg); }
.section-title {
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
    text-transform: uppercase;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 16px;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}
.section-title.left { text-align: left; }
.section-title.left::after { left: 0; transform: none; }

/* Brand Slider */
.brand-slider-wrap { position: relative; padding: 0 50px; }
.brand-slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px;
}
.brand-slider img { max-height: 48px; width: auto; object-fit: contain; filter: grayscale(30%); opacity: 0.85; }
.brand-slider .swiper-slide:hover img { filter: none; opacity: 1; }
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px; height: 36px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex; align-items: center; justify-content: center;
}
.slider-btn:hover { background: var(--primary-dark); }
.slider-btn.prev { left: 0; }
.slider-btn.next { right: 0; }

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}
.feature-item { text-align: center; }
.feature-icon {
    width: 90px; height: 90px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
    font-size: 28px;
    color: var(--primary);
    background: var(--white);
}
.feature-item h3 { font-size: 13px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.feature-item p { font-size: 12px; color: var(--text-light); }

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.12); }
.card-img { height: 180px; overflow: hidden; background: var(--bg); }
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.card-body p { font-size: 14px; color: var(--text-light); flex: 1; margin-bottom: 16px; line-height: 1.5; }
.card-meta { font-size: 12px; color: var(--primary); font-weight: 600; margin-bottom: 8px; }
.card .btn-primary { align-self: flex-start; padding: 10px 20px; font-size: 12px; }

/* About Text */
.about-text { max-width: 900px; margin: 0 auto; }
.about-text h2 { font-size: 22px; font-weight: 800; color: var(--text-dark); margin-bottom: 20px; text-transform: uppercase; }
.about-text p { font-size: 15px; color: var(--text); margin-bottom: 16px; line-height: 1.8; }

/* Services List */
.services-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px 32px;
}
.services-columns a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}
.services-columns a::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 10px;
    color: var(--primary);
}
.services-columns a:hover { color: var(--primary); }

/* Process Steps */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}
.process-step .step-icon {
    width: 100px; height: 100px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    font-size: 32px;
    color: var(--primary);
    background: var(--white);
}
.process-step h3 { font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.process-step p { font-size: 13px; color: var(--text-light); }

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    display: flex;
    gap: 20px;
}
.testimonial-avatar {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--bg);
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
    color: var(--primary);
    flex-shrink: 0;
}
.testimonial-stars { color: #f6ad55; font-size: 12px; margin-bottom: 8px; }
.testimonial-card p { font-size: 14px; color: var(--text); font-style: italic; margin-bottom: 12px; }
.testimonial-author { font-weight: 700; font-size: 13px; color: var(--text-dark); }
.testimonial-role { font-size: 12px; color: var(--text-light); }

/* Inner Page Layout */
.page-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 32px;
    padding: 40px 0 60px;
}
.page-main { min-width: 0; }
.page-sidebar { display: flex; flex-direction: column; gap: 20px; }

.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
}
.sidebar-widget h3 {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
}
.sidebar-call {
    background: var(--navy);
    color: var(--white);
    text-align: center;
    border-radius: var(--radius);
    padding: 28px 20px;
}
.sidebar-call i { font-size: 32px; color: var(--primary); margin-bottom: 12px; }
.sidebar-call h3 { color: var(--white); border: none; margin-bottom: 8px; }
.sidebar-call .phone { font-size: 22px; font-weight: 800; display: block; margin-top: 12px; color: var(--white); }
.sidebar-call .phone:hover { color: var(--primary); }

.sidebar-links { max-height: 360px; overflow-y: auto; }
.sidebar-links a {
    display: block;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    border-left: 3px solid var(--border);
    margin-bottom: 2px;
    text-transform: uppercase;
}
.sidebar-links a:hover,
.sidebar-links a.active { border-color: var(--primary); color: var(--primary); background: var(--bg); }

.sidebar-brands { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.sidebar-brands a {
    font-size: 11px;
    font-weight: 600;
    padding: 8px;
    background: var(--bg);
    border-radius: 4px;
    text-align: center;
    text-transform: uppercase;
}
.sidebar-brands a:hover { background: var(--primary); color: var(--white); }

/* Sub-services */
.sub-services {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: var(--shadow);
}
.sub-services h3 { font-size: 16px; font-weight: 800; margin-bottom: 16px; color: var(--text-dark); text-transform: uppercase; }
.sub-services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.sub-services-grid a {
    padding: 12px 16px;
    background: var(--bg);
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    display: flex; align-items: center; gap: 8px;
}
.sub-services-grid a i { color: var(--primary); font-size: 11px; }
.sub-services-grid a:hover { background: var(--primary); color: var(--white); }
.sub-services-grid a:hover i { color: var(--white); }
.brand-services-section { margin-top: 32px; }
.brand-services-grid { grid-template-columns: repeat(3, 1fr); }
.brand-services-grid a.active { background: var(--navy); color: var(--white); border-color: var(--navy); }
.brand-services-grid a.active i { color: var(--primary); }

/* SEO Hub Sections */
.seo-hub-section { margin-top: 28px; }
.seo-hub-grid { grid-template-columns: repeat(4, 1fr); }
.seo-popular-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.seo-popular-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.2s;
}
.seo-popular-link i { color: var(--primary); font-size: 12px; flex-shrink: 0; }
.seo-popular-link:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.seo-popular-link:hover i { color: var(--white); }

/* Error Box */
.error-box {
    background: #fff5f5;
    border: 1px solid #feb2b2;
    border-radius: var(--radius);
    padding: 48px 32px;
    text-align: center;
}
.error-box i { font-size: 48px; color: #e53e3e; margin-bottom: 16px; }
.error-box h2 { font-size: 22px; font-weight: 800; color: var(--text-dark); margin-bottom: 12px; }

/* FAQ */
.faq-section { margin-top: 32px; }
.faq-section h3 { font-size: 18px; font-weight: 800; margin-bottom: 16px; text-transform: uppercase; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 8px; overflow: hidden; }
.faq-question {
    width: 100%;
    padding: 16px 20px;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.faq-question:hover { background: var(--bg); }
.faq-question i { color: var(--primary); flex-shrink: 0; }
.faq-answer { display: none; padding: 0 20px 16px; font-size: 14px; color: var(--text); line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }

/* Services homepage grid */
.services-home-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-home-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.2s;
}
.service-home-card:hover { transform: translateY(-4px); }
.service-home-card .card-img { height: 160px; }
.service-home-card .card-body { padding: 20px; }

/* Cities Grid */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}
.city-link {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 8px;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    transition: all 0.2s;
}
.city-link i { display: block; color: var(--primary); margin-bottom: 6px; font-size: 16px; }
.city-link:hover { border-color: var(--primary); color: var(--primary); background: var(--bg); }

/* CTA Banner */
.cta-banner {
    background: var(--primary);
    border-radius: var(--radius);
    padding: 48px 32px;
    text-align: center;
    color: var(--white);
    margin: 40px 0;
}
.cta-banner h2 { font-size: 28px; font-weight: 800; margin-bottom: 8px; text-transform: uppercase; }
.cta-banner p { margin-bottom: 24px; opacity: 0.9; }
.cta-banner .btn-primary { background: var(--white); color: var(--navy); font-size: 18px; padding: 16px 32px; }
.cta-banner .btn-primary:hover { background: var(--navy); color: var(--white); }

/* Footer */
.site-footer {
    background: var(--navy);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-brand .logo { color: var(--white); margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
}
.footer-social a:hover { background: var(--primary); color: var(--navy); }
.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}
.footer-col a {
    display: block;
    font-size: 13px;
    padding: 6px 0;
    color: rgba(255,255,255,0.7);
}
.footer-col a:hover { color: var(--primary); }
.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 14px;
}
.footer-contact i { color: var(--primary); margin-top: 3px; width: 16px; }
.footer-legal {
    background: rgba(0,0,0,0.2);
    padding: 24px;
    border-radius: var(--radius);
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 24px;
}
.footer-legal strong { color: var(--white); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}
.footer-bottom p { margin-bottom: 12px; }
.footer-credits {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 11px;
    color: rgba(255,255,255,0.45);
}
.footer-credits i { color: var(--primary); margin-right: 4px; }
.footer-credits-sep { color: rgba(255,255,255,0.2); }
.footer-credits-wa {
    color: rgba(255,255,255,0.55);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.footer-credits-wa:hover { color: #25D366; }
.back-to-top {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 44px; height: 44px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 90;
    box-shadow: var(--shadow);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--primary-dark); }

/* Mobile Sticky Bar */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--navy);
    z-index: 95;
    border-top: 2px solid var(--primary);
}
.mobile-sticky-bar a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    gap: 4px;
}
.mobile-sticky-bar a i { font-size: 18px; color: var(--primary); }
.mobile-sticky-bar a + a { border-left: 1px solid rgba(255,255,255,0.1); }

/* Mobile Menu */
.mobile-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 150;
    opacity: 0; visibility: hidden;
    transition: all 0.3s;
}
.mobile-overlay.open { opacity: 1; visibility: visible; }
.mobile-panel {
    position: fixed;
    top: 0; right: 0;
    width: 300px; max-width: 85vw;
    height: 100%;
    background: var(--white);
    z-index: 160;
    transform: translateX(100%);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}
.mobile-panel.open { transform: translateX(0); }
.mobile-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    font-weight: 800;
    text-transform: uppercase;
}
.mobile-panel-close {
    width: 36px; height: 36px;
    border: 1px solid var(--border);
    background: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
}
.mobile-panel a, .mobile-panel button.mob-acc-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 20px;
    border: none;
    border-bottom: 1px solid var(--border);
    background: none;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-dark);
    cursor: pointer;
    text-align: left;
}
.mobile-panel a:hover, .mobile-panel button.mob-acc-btn:hover { background: var(--bg); color: var(--primary); }
.mobile-acc-body { display: none; background: var(--bg); padding: 8px; }
.mobile-acc-body.open { display: block; }
.mobile-acc-body a { padding: 10px 16px; font-size: 12px; border: none; }

/* Swiper pagination */
.swiper-pagination-bullet { background: var(--primary); opacity: 0.4; }
.swiper-pagination-bullet-active { opacity: 1; }

/* Scrollbar */
.custom-scrollbar::-webkit-scrollbar { width: 6px; }
.custom-scrollbar::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }
.custom-scrollbar::-webkit-scrollbar-track { background: var(--bg); }

/* Tailwind scope for dynamic article content */
.tw-scope { font-size: 15px; }

.text-center-btn { text-align: center; margin-top: 32px; }

/* Responsive */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(3, 1fr); }
    .services-home-grid, .cards-grid, .services-columns { grid-template-columns: repeat(2, 1fr); }
    .cities-grid { grid-template-columns: repeat(4, 1fr); }
    .page-layout { grid-template-columns: 1fr; }
    .seo-popular-grid { grid-template-columns: repeat(2, 1fr); }
    .seo-hub-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .service-finder { grid-template-columns: 1fr 1fr; }
    .service-finder .btn-primary { grid-column: span 2; }
}

@media (max-width: 768px) {
    .main-nav, .header-actions .btn-primary { display: none; }
    .mobile-toggle { display: flex; align-items: center; justify-content: center; }
    .top-bar { font-size: 12px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .process-grid, .testimonial-grid { grid-template-columns: 1fr; }
    .services-home-grid, .cards-grid, .services-columns { grid-template-columns: 1fr; }
    .cities-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .service-finder { grid-template-columns: 1fr; }
    .service-finder .btn-primary { grid-column: span 1; }
    .mobile-sticky-bar { display: flex; }
    body { padding-bottom: 60px; }
    .brand-slider-wrap { padding: 0 40px; }
    .sub-services-grid { grid-template-columns: 1fr; }
    .brand-services-grid { grid-template-columns: 1fr; }
    .seo-popular-grid { grid-template-columns: 1fr; }
    .seo-hub-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-icon { width: 70px; height: 70px; font-size: 22px; }
    .cities-grid { grid-template-columns: repeat(2, 1fr); }
}
