/* ============================================
   Deeptimes Global — Refactored Stylesheet
   All changes merged: services redesign,
   navbar black-logo fix, responsiveness
   ============================================ */

:root {
    --primary: #0a2540;
    --primary-light: #1a3a5c;
    --accent: #0070f3;
    --accent-hover: #005bd4;
    --accent-light: #e8f4fd;
    --text: #1a1a2e;
    --text-light: #6b7280;
    --bg: #ffffff;
    --bg-alt: #f8fafc;
    --bg-dark: #0a2540;
    --border: #e5e7eb;
    --success: #10b981;
    --error: #ef4444;
    --radius: 12px;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --transition: all 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent-hover); }

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

/* ===== NAVBAR (black logo friendly) ===== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 0; transition: var(--transition);
}
.nav-container { display: flex; align-items: center; justify-content: space-between; }
.logo-link { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-img { height: 38px; width: auto; object-fit: contain; }
.logo-text { display: flex; flex-direction: column; }
.logo-name { color: #111827; font-weight: 800; font-size: 1.15rem; letter-spacing: -0.02em; line-height: 1.2; }
.logo-accent { color: #0070f3; }
.logo-tagline { color: #9ca3af; font-size: 0.65rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.2em; }

.nav-links { display: flex; list-style: none; align-items: center; gap: 4px; }
.nav-links a { color: #374151; padding: 8px 16px; border-radius: 8px; transition: var(--transition); font-weight: 500; font-size: 0.95rem; }
.nav-links a:hover { color: var(--accent); background: rgba(0,112,243,0.06); }
.btn-nav { background: var(--accent) !important; color: #fff !important; padding: 8px 20px !important; border-radius: 8px !important; }
.btn-nav:hover { background: var(--accent-hover) !important; }

/* Hamburger — dark on light navbar */
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; width: 32px; height: 32px; position: relative; }
.hamburger, .hamburger::before, .hamburger::after {
    display: block; width: 24px; height: 2px; background: #111827; border-radius: 2px;
    transition: var(--transition); position: absolute; left: 4px;
}
.hamburger { top: 15px; }
.hamburger::before { content: ''; top: -7px; }
.hamburger::after { content: ''; top: 7px; }
.mobile-toggle.active .hamburger { background: transparent; }
.mobile-toggle.active .hamburger::before { transform: rotate(45deg); top: 0; }
.mobile-toggle.active .hamburger::after { transform: rotate(-45deg); top: 0; }

/* Scrolled navbar — dark bg, white text */
.navbar.scrolled {
    background: rgba(10, 37, 64, 0.98);
    border-bottom: none;
    box-shadow: var(--shadow);
}
.navbar.scrolled .logo-name { color: #ffffff; }
.navbar.scrolled .logo-accent { color: #38bdf8; }
.navbar.scrolled .logo-tagline { color: rgba(255,255,255,0.5); }
.navbar.scrolled .nav-links a { color: rgba(255,255,255,0.8); }
.navbar.scrolled .nav-links a:hover { color: #fff; background: rgba(255,255,255,0.1); }
.navbar.scrolled .hamburger,
.navbar.scrolled .hamburger::before,
.navbar.scrolled .hamburger::after { background: #ffffff; }

/* Dropdown — light navbar */
.dropdown { position: relative; }
.dropdown-toggle { cursor: pointer; }
.dropdown-toggle i { font-size: 0.7rem; margin-left: 4px; transition: transform 0.2s; }
.dropdown-menu {
    position: absolute; top: 100%; left: 0;
    background: #ffffff; border: 1px solid var(--border);
    border-radius: var(--radius); padding: 8px 0; min-width: 240px;
    opacity: 0; visibility: hidden; transform: translateY(8px);
    transition: var(--transition); box-shadow: var(--shadow-lg); z-index: 100;
}
.dropdown:hover .dropdown-menu, .dropdown.active .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown:hover .dropdown-toggle i { transform: rotate(180deg); }
.dropdown-menu li { list-style: none; }
.dropdown-menu a { display: flex; align-items: center; gap: 10px; padding: 10px 20px; color: #374151; font-size: 0.9rem; }
.dropdown-menu a i { width: 20px; text-align: center; font-size: 0.85rem; color: var(--accent); }
.dropdown-menu a:hover { background: var(--accent); color: #fff; }
.dropdown-menu a:hover i { color: #fff; }

/* Dropdown — scrolled navbar */
.navbar.scrolled .dropdown-menu { background: var(--primary-light); border: none; }
.navbar.scrolled .dropdown-menu a { color: rgba(255,255,255,0.8); }
.navbar.scrolled .dropdown-menu a i { color: rgba(255,255,255,0.6); }
.navbar.scrolled .dropdown-menu a:hover { background: var(--accent); color: #fff; }
.navbar.scrolled .dropdown-menu a:hover i { color: #fff; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; gap: 8px; padding: 10px 24px;
    border-radius: 8px; font-weight: 600; transition: var(--transition);
    border: none; cursor: pointer; font-size: 0.95rem; font-family: inherit;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,112,243,0.3); color: #fff; }
.btn-outline { border: 2px solid #fff; color: #fff; background: transparent; }
.btn-outline:hover { background: #fff; color: var(--primary); }
.btn-lg { padding: 14px 32px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== HERO SLIDER ===== */
.hero-slider { position: relative; height: 70vh; min-height: 410px; overflow: hidden; }
.slide {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center;
    opacity: 0; transition: opacity 1s ease; z-index: 1;
}
.slide.active { opacity: 1; z-index: 2; }
.slide-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%);
}
.slide-content {
    position: relative; z-index: 3; height: 100%; display: flex;
    flex-direction: column; justify-content: center; align-items: center;
    text-align: center; color: #fff; padding-top: 80px;
}
.slide-content h1 { font-size: 3.2rem; font-weight: 800; line-height: 1.15; margin-bottom: 16px; max-width: 700px; }
.slide-content p { font-size: 1.2rem; color: rgba(255,255,255,0.8); margin-bottom: 22px; max-width: 560px; }

.slider-arrow {
    position: absolute; top: 50%; z-index: 10; transform: translateY(-50%);
    width: 48px; height: 48px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.4);
    background: rgba(0,0,0,0.3); color: #fff; font-size: 1rem; cursor: pointer;
    transition: var(--transition); display: flex; align-items: center; justify-content: center;
}
.slider-arrow:hover { background: var(--accent); border-color: var(--accent); }
.slider-prev { left: 24px; }
.slider-next { right: 24px; }

.slider-dots { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; gap: 10px; }
.slider-dot {
    width: 12px; height: 12px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.5);
    background: transparent; cursor: pointer; transition: var(--transition);
}
.slider-dot.active, .slider-dot:hover { background: #fff; border-color: #fff; }

/* ===== PAGE HERO ===== */
.page-hero {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    padding: 8rem 0 3.5rem; text-align: center; color: #fff;
}
.page-hero h1 { font-size: 2.5rem; font-weight: 800; margin-bottom: 8px; }
.page-hero h1 i { margin-right: 12px; opacity: 0.7; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.1rem; }

/* ===== SECTIONS ===== */
.section { padding: 1rem 0; }
.section-alt { background: var(--bg-alt); }
.section-title { text-align: center; font-size: 2rem; font-weight: 800; margin-bottom: 4px; color: var(--primary); }
.section-sub { text-align: center; color: var(--text-light); margin-bottom: 1rem; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ===== SERVICES GRID (redesigned) ===== */
.services-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
}
.services-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(135, 141, 155, 0.509);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px; /* tighter spacing */
}

/* MODERN CARD */
.service-card {
    background: #f8fbff;
    border: 1px solid #e3ebf5;
    border-radius: 12px;
    padding: 8px 9px; /* smaller */
    display: flex;
    align-items: center;
    gap: 6px;
    text-align: left;
    transition: all 0.25s ease;
}

/* HOVER EFFECT */
.service-card:hover {
    background: #9ca9ed96;
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0, 112, 243, 0.08);
    border-color: #cfe0ff;
}
.service-icon {
    width: 50px;
    height: 40px;
    border-radius: 10px;
    font-size: 1.1rem;
    background: #eaf2ff;
    color: #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.service-card h3 {
    font-size: 0.95rem;
    margin: 0;
    font-weight: 600;
    color: #0b3c74;
}

.service-card p {
    font-size: 0.88rem;
    margin: 2px 0 0;
    color: #6b7a90;
    line-height: 1.4;
}

/* ===== STATS BAR ===== */
.stats-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f9fafb;
    padding: 8px 10px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    margin-top: 30px;
    flex-wrap: wrap;
}
.stat-item { text-align: center; flex: 1; min-width: 130px; }
.stat-item h2 { font-size: 1.3rem; font-weight: 800; color: #111827; margin-bottom: 6px; }
.stat-item p { font-size: 0.8rem; color: #6b7280; }
.stat-divider { width: 1.5px; height: 60px; background: #77f597; }

/* ===== SERVICE DETAIL ===== */
.service-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.gallery-main {
    border-radius: var(--radius); overflow: hidden; margin-bottom: 1rem;
    background: var(--bg-alt); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.gallery-thumbs img {
    width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 8px;
    cursor: pointer; border: 2px solid transparent; transition: var(--transition); opacity: 0.6;
}
.gallery-thumbs img:hover, .gallery-thumbs img.active { border-color: var(--accent); opacity: 1; }
.service-info h2 { font-size: 1.75rem; margin-bottom: 1rem; color: var(--primary); }
.service-info p { color: var(--text-light); margin-bottom: 1.25rem; line-height: 1.7; }
.service-info h3 { margin-bottom: 0.75rem; font-size: 1.15rem; color: var(--primary); }

/* ===== CHECK LIST ===== */
.check-list, .check-list-enhanced { list-style: none; padding: 0; }
.check-list li, .check-list-enhanced li {
    padding: 8px 0; color: var(--text); display: flex; align-items: center; gap: 10px; font-size: 1rem;
}
.check-list i, .check-list-enhanced i { color: var(--success); font-size: 1.1rem; flex-shrink: 0; }
.check-list-enhanced { max-width: 600px; margin: 0 auto; }
.check-list-enhanced li { padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 1.05rem; }

/* ===== CTA SECTION ===== */
.cta-section { background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: #fff; text-align: center; }
.cta-content h2 { font-size: 2rem; margin-bottom: 12px; }
.cta-content p { color: rgba(255,255,255,0.7); margin-bottom: 1.5rem; font-size: 1.1rem; }

/* ===== ABOUT ===== */
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-text h2 { font-size: 2rem; font-weight: 800; color: var(--primary); margin-bottom: 18px; }
.about-text p { color: var(--text-light); margin-bottom: 16px; font-size: 1.02rem; }
.about-visual { border-radius: 20px; overflow: hidden; }
.about-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.about-visual img:hover { transform: scale(1.03); }

.values-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.5rem; }
.value-card {
    background: var(--bg); border: 1px solid var(--border); border-radius: 14px;
    padding: 28px 24px; text-align: center; transition: var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.value-icon { font-size: 2.2rem; margin-bottom: 14px; }
.value-card h3 { font-weight: 700; margin-bottom: 8px; color: var(--primary); }
.value-card p { color: var(--text-light); font-size: 0.92rem; }

/* ===== CONTACT PAGE ===== */
.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; }
.contact-info h2 { font-size: 1.75rem; font-weight: 800; color: var(--primary); margin-bottom: 8px; }
.contact-intro { color: var(--text-light); margin-bottom: 24px; }
.contact-cards { display: flex; flex-direction: column; gap: 4px; }
.contact-card {
    display: flex; align-items: center; gap: 16px; padding: 16px 0;
    border-bottom: 1px solid var(--border);
}
.contact-card:last-child { border-bottom: none; }
.contact-card-icon {
    width: 48px; height: 48px; border-radius: 12px; background: var(--accent-light);
    display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
    color: var(--accent); flex-shrink: 0;
}
.contact-card h3 { font-size: 0.9rem; font-weight: 600; margin-bottom: 2px; color: var(--primary); }
.contact-card p { color: var(--text-light); font-size: 0.9rem; }
.contact-card a { color: var(--accent); }

/* Quote Form */
.quote-form-wrapper {
    background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 2.5rem; box-shadow: var(--shadow);
}
.quote-form-wrapper h2 { font-size: 1.5rem; font-weight: 800; color: var(--primary); margin-bottom: 4px; }
.quote-form-wrapper > p { color: var(--text-light); margin-bottom: 24px; font-size: 0.95rem; }

.quote-form .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; margin-bottom: 6px; font-weight: 600; font-size: 0.9rem; color: var(--primary); }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 16px; border: 1px solid var(--border); border-radius: 8px;
    font-size: 0.95rem; font-family: inherit; transition: var(--transition); background: var(--bg);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0,112,243,0.1);
}
.file-input { padding: 10px !important; }
.form-message { margin-top: 16px; padding: 14px; border-radius: 8px; text-align: center; font-weight: 500; }
.form-message.success { background: #d1fae5; color: #065f46; }
.form-message.error { background: #fee2e2; color: #991b1b; }

/* ===== MAP ===== */
.map-section { padding: 0 0 0; }
.map-section .container { padding-bottom: 2rem; text-align: center; }
.map-container { width: 100%; }
.map-container iframe { width: 100%; height: 450px; border: 0; }

/* ===== FOOTER ===== */
.footer { background: var(--primary); color: rgba(255,255,255,0.7); padding: 4rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.footer-brand h3 { color: #fff; font-size: 1.3rem; margin-bottom: 12px; }
.footer-brand h3 i { margin-right: 8px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.6; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; font-weight: 700; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.footer-col ul a:hover { color: #fff; }
.footer-col p { font-size: 0.9rem; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.footer-col p i { width: 16px; text-align: center; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; text-align: center; font-size: 0.85rem; }

/* ---- Footer Socials ---- */
.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}
.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}
.footer-socials a:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-3px);
}

/* Footer Services Toggle */
.footer-service-hidden {
    display: none;
}
.footer-services-list.expanded .footer-service-hidden {
    display: list-item;
}
.footer-toggle-btn {
    background: none;
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.7);
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 0.82rem;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.footer-toggle-btn:hover {
    background: rgba(146, 244, 185, 0.571);
    color: #fff;
}
.footer-toggle-btn i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}
.footer-toggle-btn.active i {
    transform: rotate(180deg);
}
.logo-taglin { color: #9ca3af; font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.2em; }


/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed; bottom: 24px; right: 24px; z-index: 999;
    width: 56px; height: 56px; border-radius: 50%;
    background: #25d366; color: #fff; font-size: 1.6rem;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4); transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.5); color: #fff; }

/* ---- Brands Logos ---- */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(60px, 0.5fr));
    gap: 5px;
    margin-top: 0px;
    align-items: center;
}
.brands-grid img {
    max-height: 45px; margin: 5px; padding: 5px;
    background: #eaf5f8; border: 1px solid #e5e7eb; border-radius: 12px;
    filter: grayscale(100%); opacity: 0.7; transition: all 0.3s ease;
}
.brands-grid img:hover {
    filter: grayscale(0%); opacity: 1; transform: scale(1.08);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* ---- Office Hours Card ---- */
.office-hours {
    background: #f9fafb; border: 1px solid #e5e7eb;
    border-radius: 14px; padding: 24px; max-width: 400px;
}
.office-hours h3 { font-size: 1.1rem; font-weight: 700; color: #0f172a; margin-bottom: 16px; }
.hours-list { display: flex; flex-direction: column; gap: 12px; }
.hours-row { display: flex; justify-content: space-between; font-size: 0.9rem; color: #4b5563; }
.hours-row .time { font-weight: 600; color: #111827; }
.hours-row .closed { color: #ef4444; }
.office-hours:hover { box-shadow: 0 10px 25px rgba(0,0,0,0.05); transition: 0.3s ease; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .mobile-toggle { display: block; }
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
        background: var(--primary); flex-direction: column; padding: 80px 24px 24px;
        transition: right 0.3s ease; box-shadow: -4px 0 24px rgba(0,0,0,0.3);
        align-items: stretch; gap: 4px;
    }
    .nav-links.active { right: 0; }
    .nav-links a { padding: 12px 16px; color: rgba(255,255,255,0.8); }
    .nav-links a:hover { color: #fff; background: rgba(255,255,255,0.1); }

    /* Mobile hamburger always dark on light, white when menu open */
    .mobile-toggle.active .hamburger::before,
    .mobile-toggle.active .hamburger::after { background: #fff; }

    .dropdown-menu {
        position: static; opacity: 1; visibility: visible; transform: none;
        box-shadow: none; background: rgba(0,0,0,0.2); border: none; border-radius: 8px;
        max-height: 0; overflow: hidden; transition: max-height 0.3s ease; padding: 0;
    }
    .dropdown.active .dropdown-menu { max-height: 500px; padding: 8px 0; }
    .dropdown-menu a { color: rgba(255,255,255,0.8); }
    .dropdown-menu a i { color: rgba(255,255,255,0.6); }

    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .service-card { padding: 1.5rem 1.25rem; }
    .service-icon { width: 52px; height: 52px; font-size: 1.3rem; }

    .slide-content h1 { font-size: 2rem; }
    .slide-content p { font-size: 1rem; }
    .slider-arrow { width: 40px; height: 40px; font-size: 0.85rem; }
    .slider-prev { left: 12px; }
    .slider-next { right: 12px; }

    .service-detail { grid-template-columns: 1fr; }
    .about-content { grid-template-columns: 1fr; gap: 32px; }
    .contact-layout { grid-template-columns: 1fr; }
    .quote-form .form-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }

    .page-hero { padding: 6rem 0 2.5rem; }
    .page-hero h1 { font-size: 1.8rem; }
    .section { padding: 3.5rem 0; }
    .section-title { font-size: 1.6rem; }

    .stats-bar { flex-direction: column; gap: 16px; padding: 20px; }
    .stat-divider { width: 60px; height: 1px; }
}

@media (max-width: 480px) {
    .services-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .slide-content h1 { font-size: 1.6rem; }
    .hero-slider { min-height: 500px; }
}
@media (max-width: 992px) {
    .services-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .services-image {
        order: -1;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}