/* ============================================
   NYAYDWAR - COMPLETE MOBILE-FIRST RESPONSIVE CSS
   Version 4.0 - Senior QA Tested
   ============================================ */

/* ============================================
   BREADCRUMB & PAGE HERO FIX
   ============================================ */
.breadcrumb {
    margin-top: 20px;
    font-size: 0.875rem;
}

.breadcrumb a {
    color: rgba(255,255,255,0.8) !important;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #fff !important;
}

.breadcrumb span {
    color: rgba(255,255,255,0.9) !important;
    margin: 0 8px;
}

.breadcrumb .current {
    color: #f59e0b !important;
    font-weight: 600;
}

.page-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%) !important;
    padding: 50px 0 !important;
    text-align: center;
    color: #fff !important;
}

.page-hero h1 {
    font-size: 2rem !important;
    color: #fff !important;
    margin-bottom: 10px;
}

.page-hero .subtitle,
.page-hero p {
    color: rgba(255,255,255,0.9) !important;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 35px 0 !important;
    }
    
    .page-hero h1 {
        font-size: 1.5rem !important;
    }
    
    .page-hero .subtitle,
    .page-hero p {
        font-size: 0.9375rem;
    }
    
    .breadcrumb {
        font-size: 0.8125rem;
    }
}

/* ============================================
   BASE RESET & GLOBAL FIXES
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden !important;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #374151;
    background: #fff;
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100vw;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden !important;
    position: fixed;
    width: 100%;
    height: 100%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: linear-gradient(90deg, #1e3a8a 0%, #1d4ed8 100%);
    padding: 8px 0;
    font-size: 0.8125rem;
    width: 100%;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-links {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.top-bar-links a {
    color: rgba(255,255,255,0.85);
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    white-space: nowrap;
}

.top-bar-links a:hover {
    color: #fff;
}

.top-bar-contact {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-bar-contact a {
    color: #f59e0b;
    font-weight: 600;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    max-width: 1280px;
    margin: 0 auto;
    gap: 15px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo img {
    height: 42px;
    width: auto;
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.625rem;
    font-weight: 800;
    color: #2563eb;
    white-space: nowrap;
}

.logo-text span {
    color: #f59e0b;
}

/* Main Nav */
.main-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    justify-content: flex-end;
}

/* Nav Menu - Desktop */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 5px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    color: #374151;
    font-weight: 500;
    font-size: 0.9375rem;
    border-radius: 8px;
    transition: all 0.2s;
    white-space: nowrap;
    cursor: pointer;
}

.nav-link:hover {
    color: #2563eb;
    background: #f1f5f9;
}

.nav-link i.fa-chevron-down {
    font-size: 0.625rem;
    transition: transform 0.2s;
}

.nav-item:hover .nav-link i.fa-chevron-down {
    transform: rotate(180deg);
}

/* Mega Menu - Desktop */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    min-width: 750px;
    padding: 25px 30px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    z-index: 100;
    margin-top: 10px;
}

.mega-menu::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    height: 15px;
}

.nav-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.mega-menu-col h4 {
    font-size: 0.75rem;
    font-weight: 700;
    color: #1e3a8a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e2e8f0;
}

.mega-menu-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-col li {
    margin-bottom: 2px;
}

.mega-menu-col a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    color: #475569;
    font-size: 0.875rem;
    border-radius: 6px;
    transition: all 0.2s;
}

.mega-menu-col a:hover {
    background: #f1f5f9;
    color: #2563eb;
    transform: translateX(3px);
}

.mega-menu-col a i {
    width: 18px;
    color: #2563eb;
    font-size: 0.875rem;
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.nav-actions .btn {
    padding: 10px 18px;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    white-space: nowrap;
    border: none;
    cursor: pointer;
}

.btn-ghost {
    color: #374151;
    background: transparent;
}

.btn-ghost:hover {
    color: #2563eb;
    background: #f1f5f9;
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37,99,235,0.3);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    background: #f1f5f9;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    gap: 5px;
    z-index: 1002;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: #374151;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active {
    background: #2563eb;
}

.mobile-menu-btn.active span {
    background: #fff;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav Actions (inside menu) */
.mobile-nav-actions {
    display: none;
}

/* ============================================
   SERVICE PAGE STYLES
   ============================================ */
.service-detail-section {
    padding: 60px 0;
    background: #f8fafc;
}

.service-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}

.service-content {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

.service-content h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1a365d;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid #2563eb;
    font-family: 'Outfit', sans-serif;
}

.service-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e3a8a;
    margin: 35px 0 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Outfit', sans-serif;
}

.service-content h3::before {
    content: '';
    width: 4px;
    height: 28px;
    background: linear-gradient(180deg, #f59e0b 0%, #d97706 100%);
    border-radius: 2px;
    flex-shrink: 0;
}

.service-content p {
    font-size: 1rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-content ul {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.service-content ul li {
    padding: 15px 0 15px 40px;
    position: relative;
    color: #334155;
    font-size: 1rem;
    line-height: 1.6;
    border-bottom: 1px solid #f1f5f9;
}

.service-content ul li:last-child {
    border-bottom: none;
}

.service-content ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 15px;
    width: 24px;
    height: 24px;
    background: #dcfce7;
    color: #16a34a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.service-content .cta-buttons {
    display: flex;
    gap: 15px;
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid #e2e8f0;
    flex-wrap: wrap;
}

/* Sidebar */
.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

.sidebar-widget h4 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #2563eb;
    font-family: 'Outfit', sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-widget h4 i {
    color: #2563eb;
}

.sidebar-widget .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}

.sidebar-widget .contact-item:last-child {
    border-bottom: none;
}

.sidebar-widget .contact-item i {
    width: 36px;
    height: 36px;
    background: #dbeafe;
    color: #2563eb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.875rem;
}

.sidebar-widget .contact-item span {
    color: #475569;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.sidebar-widget .contact-item a {
    color: #2563eb;
    font-weight: 500;
}

.sidebar-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-widget ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    color: #475569;
    font-size: 0.9375rem;
    transition: all 0.2s;
    border-bottom: 1px solid #f1f5f9;
}

.sidebar-widget ul li:last-child a {
    border-bottom: none;
}

.sidebar-widget ul li a:hover {
    color: #2563eb;
    padding-left: 8px;
}

.sidebar-widget ul li a i {
    color: #94a3b8;
    width: 16px;
}

.sidebar-cta {
    background: linear-gradient(135deg, #1a365d 0%, #1e3a8a 100%) !important;
    color: #fff !important;
    text-align: center;
}

.sidebar-cta h4 {
    color: #f59e0b !important;
    border-color: rgba(255,255,255,0.2) !important;
    justify-content: center;
}

.sidebar-cta p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 20px;
    font-size: 0.9375rem;
}

.sidebar-cta .btn {
    width: 100%;
    background: #f59e0b;
    color: #1a365d;
    font-weight: 700;
    padding: 12px 20px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* ============================================
   PAGE HERO
   ============================================ */
.page-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    padding: 50px 0;
    text-align: center;
    color: #fff;
}

.page-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.page-hero .subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 15px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.8);
    flex-wrap: wrap;
}

.breadcrumb a {
    color: rgba(255,255,255,0.8);
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb .current {
    color: #f59e0b;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    padding: 50px 0;
    text-align: center;
    color: #fff;
}

.cta-banner h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    margin-bottom: 10px;
}

.cta-banner p {
    opacity: 0.9;
    margin-bottom: 25px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    white-space: nowrap;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 1.0625rem;
}

.btn-secondary {
    background: #f59e0b;
    color: #fff;
}

.btn-secondary:hover {
    background: #d97706;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
}

.btn-whatsapp:hover {
    background: #128C7E;
}

.btn-outline {
    background: transparent;
    border: 2px solid currentColor;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 100%);
    color: #fff;
    padding: 60px 0 0;
    width: 100%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 40px;
}

.footer-about .logo-text {
    color: #fff;
    margin-bottom: 15px;
}

.footer-about p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 10px;
    font-size: 0.9375rem;
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: rgba(255,255,255,0.8);
    font-size: 0.9375rem;
    transition: all 0.2s;
}

.footer-col a:hover {
    color: #f59e0b;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    color: rgba(255,255,255,0.7);
    font-size: 0.875rem;
    margin: 0;
}

/* ============================================
   FLOATING BUTTONS
   ============================================ */
.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 998;
}

.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.floating-btn:hover {
    transform: scale(1.1) translateY(-2px);
}

.whatsapp-btn {
    background: #25D366;
}

.call-btn {
    background: #2563eb;
}

/* ============================================
   TABLET (1024px)
   ============================================ */
@media screen and (max-width: 1024px) {
    /* Mobile Menu Button - SHOW */
    .mobile-menu-btn {
        display: flex !important;
    }
    
    /* Desktop Nav - HIDE */
    .nav-menu {
        display: none !important;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: #fff;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 80px 0 20px;
        z-index: 1001;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        gap: 0;
    }
    
    .nav-menu.active {
        display: flex !important;
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid #e5e7eb;
    }
    
    .nav-link {
        width: 100%;
        padding: 16px 20px;
        font-size: 1rem;
        justify-content: space-between;
        border-radius: 0;
    }
    
    .nav-link:hover {
        background: #f8fafc;
    }
    
    /* Mobile Mega Menu */
    .mega-menu {
        position: static !important;
        transform: none !important;
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin: 0 !important;
        border-radius: 0 !important;
        background: #f8fafc !important;
        display: none !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .nav-item.submenu-open .mega-menu {
        display: block !important;
    }
    
    .mega-menu-grid {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
        padding: 15px 20px !important;
    }
    
    .mega-menu-col {
        padding: 15px 0;
        border-bottom: 1px solid #e5e7eb;
    }
    
    .mega-menu-col:last-child {
        border-bottom: none;
    }
    
    .mega-menu-col h4 {
        font-size: 0.875rem;
        color: #2563eb;
        margin-bottom: 10px;
    }
    
    .mega-menu-col a {
        padding: 10px 12px;
        font-size: 0.9375rem;
    }
    
    /* Hide Desktop Nav Actions */
    .nav-actions {
        display: none !important;
    }
    
    /* Show Mobile Nav Actions */
    .mobile-nav-actions {
        display: flex !important;
        flex-direction: column;
        gap: 10px;
        padding: 20px;
        margin-top: auto;
        border-top: 1px solid #e5e7eb;
        background: #fff;
    }
    
    .mobile-nav-actions .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 1rem;
    }
    
    /* Service Layout */
    .service-layout {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
    
    .service-sidebar {
        position: static !important;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-about {
        grid-column: span 3;
    }
}

/* ============================================
   MOBILE (768px)
   ============================================ */
@media screen and (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .top-bar {
        display: none !important;
    }
    
    .nav-container {
        padding: 10px 15px;
    }
    
    .logo img {
        height: 36px;
    }
    
    .logo-text {
        font-size: 1.375rem;
    }
    
    /* Page Hero */
    .page-hero {
        padding: 35px 0;
    }
    
    .page-hero h1 {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .page-hero .subtitle {
        font-size: 1rem;
    }
    
    .breadcrumb {
        font-size: 0.8125rem;
    }
    
    /* Service Content */
    .service-detail-section {
        padding: 40px 0;
    }
    
    .service-content {
        padding: 25px;
        border-radius: 12px;
    }
    
    .service-content h2 {
        font-size: 1.5rem;
    }
    
    .service-content h3 {
        font-size: 1.125rem;
        margin: 25px 0 15px;
    }
    
    .service-content ul li {
        padding: 12px 0 12px 35px;
        font-size: 0.9375rem;
    }
    
    .service-content ul li::before {
        width: 22px;
        height: 22px;
        top: 12px;
    }
    
    .service-content .cta-buttons {
        flex-direction: column;
    }
    
    .service-content .cta-buttons .btn {
        width: 100%;
    }
    
    /* Sidebar */
    .sidebar-widget {
        padding: 20px;
        border-radius: 12px;
    }
    
    /* CTA Banner */
    .cta-banner {
        padding: 40px 0;
    }
    
    .cta-banner h2 {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 0;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-about {
        grid-column: span 2;
        text-align: center;
    }
    
    /* Floating Buttons */
    .floating-buttons {
        right: 15px;
        bottom: 15px;
        gap: 10px;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

/* ============================================
   SMALL MOBILE (480px)
   ============================================ */
@media screen and (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 12px;
    }
    
    .nav-container {
        padding: 8px 12px;
    }
    
    .logo img {
        height: 32px;
    }
    
    .logo-text {
        font-size: 1.25rem;
    }
    
    .mobile-menu-btn {
        width: 40px;
        height: 40px;
    }
    
    .mobile-menu-btn span {
        width: 20px;
    }
    
    .nav-menu {
        padding-top: 70px;
    }
    
    .nav-link {
        padding: 14px 15px;
        font-size: 0.9375rem;
    }
    
    .mega-menu-grid {
        padding: 12px 15px !important;
    }
    
    .mega-menu-col a {
        padding: 8px 10px;
        font-size: 0.875rem;
    }
    
    /* Page Hero */
    .page-hero {
        padding: 30px 0;
    }
    
    .page-hero h1 {
        font-size: 1.5rem;
    }
    
    /* Service Content */
    .service-detail-section {
        padding: 30px 0;
    }
    
    .service-content {
        padding: 20px 15px;
    }
    
    .service-content h2 {
        font-size: 1.375rem;
    }
    
    .service-content h3 {
        font-size: 1.0625rem;
    }
    
    .service-content ul li {
        padding-left: 30px;
        font-size: 0.875rem;
    }
    
    /* Buttons */
    .btn {
        padding: 10px 16px;
        font-size: 0.875rem;
    }
    
    .btn-lg {
        padding: 12px 20px;
        font-size: 0.9375rem;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .footer-about {
        grid-column: span 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    /* Floating */
    .floating-buttons {
        right: 12px;
        bottom: 12px;
    }
    
    .floating-btn {
        width: 46px;
        height: 46px;
        font-size: 1.125rem;
    }
}

/* ============================================
   LAPTOP (1024px - 1400px)
   ============================================ */
@media screen and (min-width: 1025px) and (max-width: 1400px) {
    html {
        font-size: 15px;
    }
    
    .container {
        max-width: 1140px;
    }
    
    .nav-container {
        max-width: 1140px;
        padding: 10px 15px;
    }
    
    .nav-link {
        padding: 8px 10px;
        font-size: 0.875rem;
    }
    
    .nav-actions .btn {
        padding: 8px 14px;
        font-size: 0.8125rem;
    }
    
    .mega-menu {
        min-width: 680px;
        padding: 20px 25px;
    }
    
    .mega-menu-grid {
        gap: 20px;
    }
    
    .service-layout {
        grid-template-columns: 1fr 340px;
        gap: 30px;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.hidden { display: none !important; }
.visible { display: block !important; }

/* Print */
@media print {
    .header, .footer, .floating-buttons, .mobile-menu-btn, .nd-chat-widget {
        display: none !important;
    }
}

/* ============================================
   V5.0 - STICKY HEADER & FLOATING BUTTONS FIX
   ============================================ */

/* Ensure Sticky Header on Desktop */
@media (min-width: 769px) {
    .header {
        position: sticky !important;
        top: 0 !important;
        z-index: 1000 !important;
        background: #fff !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
    }
}

/* Mobile Fixed Header */
@media (max-width: 768px) {
    .header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 9998 !important;
        background: #fff !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
    }
    
    body {
        padding-top: 60px !important;
        padding-bottom: 70px !important;
    }
    
    .nav-container {
        padding: 10px 15px !important;
    }
    
    .logo-text {
        font-size: 1.3rem !important;
    }
    
    .logo img {
        height: 32px !important;
    }
}

/* Compact Floating Buttons */
.floating-buttons {
    position: fixed !important;
    bottom: 100px !important;
    right: 15px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    z-index: 998 !important;
}

.floating-buttons.minimized .floating-btn:not(.minimize-btn) {
    transform: scale(0) !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.floating-btn {
    width: 45px !important;
    height: 45px !important;
    border-radius: 50% !important;
    font-size: 1.1rem !important;
    transition: all 0.3s ease !important;
}

.minimize-btn {
    background: #6b7280 !important;
    width: 35px !important;
    height: 35px !important;
    font-size: 0.9rem !important;
    border: none !important;
    color: #fff !important;
    cursor: pointer !important;
}

.minimize-btn i {
    transition: transform 0.3s !important;
}

.floating-buttons.minimized .minimize-btn i {
    transform: rotate(180deg) !important;
}

/* Chat Widget Non-Overlap */
.nd-chat-widget {
    bottom: 170px !important;
    right: 15px !important;
    z-index: 997 !important;
}

.nd-chat-toggle {
    width: 45px !important;
    height: 45px !important;
    font-size: 1.1rem !important;
}

@media (max-width: 768px) {
    .floating-buttons {
        bottom: 85px !important;
        right: 12px !important;
    }
    
    .floating-btn {
        width: 40px !important;
        height: 40px !important;
        font-size: 1rem !important;
    }
    
    .minimize-btn {
        width: 32px !important;
        height: 32px !important;
    }
    
    .nd-chat-widget {
        bottom: 145px !important;
        right: 12px !important;
    }
    
    .nd-chat-toggle {
        width: 40px !important;
        height: 40px !important;
        font-size: 1rem !important;
    }
}
