/* =========================================
    1. CSS VARIABLES & RESET
    ========================================= */
    :root {
        /* PROFESSIONAL PALETTE: Royal Blue & Slate */
        --primary-color: #2563eb;       /* Trustworthy Royal Blue */
        --primary-dark: #1e40af;        /* Darker Blue for hover */
        --primary-light: #eff6ff;       /* Very light blue for backgrounds */
        
        --accent-color: #0ea5e9;        /* Sky Blue accent */
        
        --bg-color: #f8fafc;            /* Cool off-white */
        --surface-color: #ffffff;
        
        --text-main: #0f172a;           /* Dark Slate (Softer than black) */
        --text-secondary: #475569;      /* Medium Slate */
        
        --border-color: #e2e8f0;
        
        --shadow-sm: 0 1px 2px 0 rgb(15 23 42 / 0.05);
        --shadow-md: 0 4px 6px -1px rgb(15 23 42 / 0.1), 0 2px 4px -2px rgb(15 23 42 / 0.1);
        --shadow-lg: 0 10px 15px -3px rgb(15 23 42 / 0.1), 0 4px 6px -4px rgb(15 23 42 / 0.1);
        
        --radius-md: 0.75rem;
        --radius-lg: 1.25rem;
        --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        --header-height: 80px;
    }
    
    [data-theme="dark"] {
        --primary-color: #3b82f6;
        --primary-dark: #60a5fa;
        --primary-light: rgba(59, 130, 246, 0.1);
        
        --accent-color: #22d3ee;
        
        --bg-color: #0f172a;
        --surface-color: #1e293b;
        --text-main: #f1f5f9;
        --text-secondary: #94a3b8;
        --border-color: #334155;
        
        --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.5);
        --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.5);
    }
    
    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    
    body {
        font-family: 'Inter', sans-serif;
        background-color: #ffffff;
        color: var(--text-main);
        line-height: 1.6;
        overflow-x: hidden;
        transition: background-color 0.3s, color 0.3s;
        font-family: Ubuntu, Cantarell, DejaVu Sans, sans-serif;
        
    }
    
    h1, h2, h3, h4, h5, h6 { font-family: 'Poppins', sans-serif; color: var(--text-main); line-height: 1.2; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    img { max-width: 100%; display: block; }
    button, input, textarea, select { font-family: inherit; }
    
    .container {
        width: 100%;
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 1.5rem;
    }
    
    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.85rem 2rem;
        border-radius: var(--radius-md);
        font-weight: 600;
        cursor: pointer;
        transition: var(--transition);
        border: none;
        gap: 0.5rem;
        font-size: 0.95rem;
    }
    
    .btn-primary { background-color: var(--primary-color); color: white; box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2); }
    .btn-primary:hover { background-color: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3); }
    
    .btn-outline {
        background-color: transparent;
        border: 2px solid var(--primary-color);
        color: var(--primary-color);
    }
    .btn-outline:hover { background-color: var(--primary-light); color: var(--primary-dark); border-color: var(--primary-dark); }
    
    .section-padding { padding: 6rem 0; }
    .section-title { text-align: left; margin-bottom: 4rem; }
    .section-title h2 { font-size: 2.5rem; font-weight: 700; margin-bottom: 1rem; letter-spacing: -0.5px; text-shadow: 1px 2px 3px #00000045;}
    .section-title p { color: var(--text-secondary); width: 100%; margin: 0 auto; font-size: 1.1rem; }
    
    /* Loader */
    #loader {
        position: fixed; top: 0; left: 0; width: 100%; height: 100%;
        background-color: var(--surface-color); z-index: 9999;
        display: flex; justify-content: center; align-items: center;
        transition: opacity 0.5s ease, visibility 0.5s ease;
    }
    .spinner {
        width: 50px; height: 50px; border: 4px solid var(--border-color);
        border-top-color: var(--primary-color); border-radius: 50%;
        animation: spin 1s linear infinite;
    }
    @keyframes spin { to { transform: rotate(360deg); } }
    
    /* =========================================
        HEADER & LOGO DESIGN
        ========================================= */
    header {
        position: fixed; top: 0; left: 0; width: 100%; height: var(--header-height);
        background-color: rgb(255 255 255); backdrop-filter: blur(12px);
        z-index: 1000; border-bottom: 1px solid var(--border-color);
        transition: var(--transition);
    }
    [data-theme="dark"] header { background-color: rgba(15, 23, 42, 0.95); border-bottom: 1px solid var(--border-color); }
    
    .nav-container { display: flex; justify-content: space-between; align-items: center; height: 100%; }
    
    /* Professional Logo Styling */
    .logo {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        text-decoration: none;
        user-select: none;
    }
    
    .logo-icon-box {
        width: 54px;
        height: 52px;
        /* background: var(--primary-color); */
        color: white;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        /* box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3); */
        position: relative;
        overflow: hidden;
    }
    .logo-icon-box::after {
        content: '';
        position: absolute;
        top: -50%; left: -50%;
        width: 200%; height: 200%;
        background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
        transform: rotate(45deg);
        animation: shine 3s infinite;
    }
    @keyframes shine { 0% { transform: translateX(-100%) rotate(45deg); } 100% { transform: translateX(100%) rotate(45deg); } }
    
    .logo-text {
        display: flex;
        flex-direction: column;
        line-height: 1;
    }
    
    .logo-text span {
        font-family: 'Poppins', sans-serif;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: -0.5px;
    }
    
    .logo-main {
        font-size: 1.4rem;
        color: #0e6f30;
    }
    .logo-sub { font-size: 0.7rem; color: #ff9109; letter-spacing: 1px; margin-top: 2px; font-weight: 600; }
    
    /* Nav Links */
    .nav-links { display: flex; gap: 2.5rem; }
    .nav-links a { 
        font-weight: 500; 
        color: var(--text-secondary); 
        font-size: 0.98rem;
        position: relative;
        transition: var(--transition); 
        font-family: Ubuntu, Cantarell, DejaVu Sans, sans-serif;
    }
    .nav-links a:hover { color: var(--primary-color); }
    .nav-links a::after {
        content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
        background-color: var(--primary-color); transition: width 0.3s ease;
    }
    .nav-links a:hover::after { width: 100%; }
    
    .nav-actions { display: flex; align-items: center; gap: 1.25rem; }
    .cart-btn-wrapper { position: relative; cursor: pointer; color: var(--text-main); transition: var(--transition); }
    .cart-btn-wrapper:hover { color: var(--primary-color); }
    .cart-badge {
        position: absolute; top: -6px; right: -8px;
        background-color: var(--accent-color); color: #fff;
        font-size: 0.65rem; width: 18px; height: 18px;
        border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700;
        border: 2px solid var(--surface-color);
    }
    .theme-toggle, .mobile-menu-btn {
        background: none; border: none; font-size: 1.25rem;
        color: var(--text-main); cursor: pointer; display: flex; align-items: center;
        transition: var(--transition);
    }
    .theme-toggle:hover { color: var(--primary-color); }
    .mobile-menu-btn { display: none; }
    
    @media (max-width: 768px) {
        .mobile-menu-btn { display: block; }
        .nav-links {
            position: absolute; top: var(--header-height); left: 0; width: 100%;
            background-color: var(--surface-color); flex-direction: column; padding: 2rem; gap: 1.5rem;
            box-shadow: var(--shadow-lg); transform: translateY(-150%); transition: transform 0.3s ease; z-index: 900;
            border-top: 1px solid var(--border-color);
        }
        .nav-links.active { transform: translateY(0); }
        .logo-main { font-size: 1.2rem; }
        .logo-sub { font-size: 0.6rem; }
    }
    
    /* Hero Slider */
    #hero {
        position: relative; width: 100%; height: 90vh; min-height: 600px;
        overflow: hidden; margin-top: 0; margin-top: 70px;
    }
    .hero-slide {
        position: absolute; top: 0; left: 0; width: 100%; height: 100%;
        opacity: 0; transition: opacity 0.8s ease-in-out;
        display: flex; align-items: center; justify-content: center;
    }
    .hero-slide.active { opacity: 1; z-index: 1; }
    .slide-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: -1; filter: brightness(0.7); }
    .slide-content {
        position: relative;
        z-index: 2;
        text-align: center;
        color: #fff;
        max-width: 740px;
        padding: 0px 1.5rem;
        transform: translateY(30px);
        opacity: 0;
        transition: all 0.8s ease 0.3s;
    }
    .hero-slide.active .slide-content { transform: translateY(0); opacity: 1; }
    .slide-content h1 { font-size: 3.8rem; line-height: 1.1; margin-bottom: 1.5rem; color: #fff; text-shadow: 0 4px 6px rgba(0,0,0,0.3); font-weight: 800; }
    .slide-content p {
        font-size: 1.10rem;
        margin-bottom: 2.5rem;
        opacity: 0.95;
        font-weight: 500;
        text-transform: capitalize;
    }
    .slider-arrow {
        position: absolute; top: 50%; transform: translateY(-50%);
        background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(4px);
        color: white; border: 1px solid rgba(255,255,255,0.3); width: 50px; height: 50px;
        border-radius: 50%; cursor: pointer; z-index: 10;
        display: flex; align-items: center; justify-content: center;
        font-size: 1.5rem; transition: var(--transition);
    }
    .slider-arrow:hover { background: var(--primary-color); border-color: var(--primary-color); }
    .prev-arrow { left: 30px; }
    .next-arrow { right: 30px; }
    .slider-dots { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; gap: 12px; z-index: 10; }
    .dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255, 255, 255, 0.4); cursor: pointer; transition: var(--transition); border: 1px solid transparent; }
    .dot.active { background: #fff; transform: scale(1.2); border-color: rgba(0,0,0,0.1); }
    
    @media (max-width: 768px) {
        .slide-content h1 { font-size: 2.5rem; }
        .slider-arrow { width: 40px; height: 40px; font-size: 1.2rem; }
        .prev-arrow { left: 10px; } .next-arrow { right: 10px; }
        #hero { height: 80vh; min-height: 550px; }
    }
    
    /* =========================================
        SERVICES GRID (Icon Box)
        ========================================= */
    .service-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2rem;
        padding-bottom: 2rem;
    }
    .service-card2 {
        background: var(--surface-color);
        padding: 2.5rem 1.5rem;
        border-radius: var(--radius-lg);
        text-align: center;
        box-shadow: var(--shadow-sm);
        border: 1px solid var(--border-color);
        transition: var(--transition);
        cursor: pointer;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        overflow: hidden;
    }
    .service-card2:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
        border-color: var(--primary-color);
    }
    .service-card2::before {
        content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
        background: var(--primary-color); transform: scaleX(0); transform-origin: left;
        transition: transform 0.3s ease;
    }
    .service-card2:hover::before { transform: scaleX(1); }
    
    .icon-box {
        width: 67px;
        height: 62px;
        background: var(--primary-light);
        border-radius: 34px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 1.5rem;
        color: #ff9109;
        transition: var(--transition);
        will-change: transform;
        transform: translateZ(0);
    }
    .service-card2:hover .icon-box {
        background: var(--primary-color);
        color: white;
        transform: rotate(360deg);
    }
    .icon-box svg { width: 27px; height: 36px; stroke-width: 2.5; }
    
    .service-card2 h3 {
        font-size: 1.25rem;
        color: var(--text-main);
        font-weight: 600;
    }
    
    /* =========================================
        SLIDER SECTION
        ========================================= */
    .slider-container { position: relative; overflow: hidden; padding: 1rem 0; }
    .slider-track {
        display: flex; gap: 1.5rem;
        transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
        cursor: grab;
    }
    .slider-track:active { cursor: grabbing; }
    
    .service-card {
        min-width: 320px; max-width: 320px;
        background-color: var(--surface-color); border: 1px solid var(--border-color);
        border-radius: var(--radius-lg); padding: 0;
        transition: var(--transition); display: flex; flex-direction: column; user-select: none;
        overflow: hidden;
    }
    .service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: #ff9109; }
    
    .service-card-img {
        height: 200px;
        width: 100%;
        object-fit: cover;
    }
    
    .service-card-body {
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }
    
    .service-icon {
        width: 45px; height: 45px; background-color: var(--surface-color); color: var(--primary-color);
        border-radius: 50%; display: flex; align-items: center; justify-content: center;
        font-size: 1.4rem; margin-top: -45px; margin-bottom: 1rem;
        border: 4px solid var(--surface-color); z-index: 2; box-shadow: var(--shadow-sm);
    }
    
    .service-card h3 { margin-bottom: 0.5rem; font-size: 1.3rem; font-weight: 700; }
    .service-card p { color: var(--text-secondary); font-size: 0.95rem; margin-bottom: 1.5rem; flex-grow: 1; line-height: 1.5; }
    .service-price { font-size: 1.5rem; font-weight: 700; color: var(--primary-color); margin-bottom: 1.5rem; }
    
    .slider-controls { display: flex; justify-content: center; gap: 1rem; margin-top: 3rem; }
    .slider-btn {
        width: 45px; height: 45px; border-radius: 50%; border: 1px solid var(--border-color);
        background: var(--surface-color); color: var(--text-main); cursor: pointer;
        transition: var(--transition); display: flex; align-items: center; justify-content: center;
    }
    .slider-btn:hover { background-color: var(--primary-color); color: white; border-color: var(--primary-color); }
    
    /* =========================================
        MODAL STYLES
        ========================================= */
    .modal-overlay {
        position: fixed; top: 0; left: 0; width: 100%; height: 100%;
        background-color: rgba(15, 23, 42, 0.6); backdrop-filter: blur(4px);
        z-index: 2000; display: flex; justify-content: center; align-items: center;
        opacity: 0; visibility: hidden; transition: var(--transition); padding: 1rem;
    }
    .modal-overlay.active, .modal-overlay.open { opacity: 1; visibility: visible; }
    
    /* Service Detail Modal */
    .service-modal {
        background-color: var(--surface-color);
        width: 100%; max-width: 850px;
        border-radius: var(--radius-lg);
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        overflow: hidden;
        transform: scale(0.95);
        transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        position: relative;
    }
    .modal-overlay.active .service-modal { transform: scale(1); }
    
    .modal-image-container { background-color: var(--bg-color); position: relative; }
    .modal-image { width: 100%; height: 100%; object-fit: cover; min-height: 400px; }
    .modal-close {
        position: absolute; top: 20px; right: 20px;
        background: rgba(255,255,255,0.9); color: var(--text-main);
        width: 36px; height: 36px; border-radius: 50%;
        border: none; cursor: pointer; z-index: 10;
        display: flex; align-items: center; justify-content: center;
        font-size: 1.4rem; transition: var(--transition); box-shadow: var(--shadow-md);
    }
    .modal-close:hover { background: var(--primary-color); color: white; transform: rotate(90deg); }
    
    .modal-content { padding: 2.5rem; display: flex; flex-direction: column; }
    .modal-content h2 { font-size: 2rem; margin-bottom: 0.5rem; color: var(--text-main); }
    .modal-desc { color: var(--text-secondary); margin-bottom: 1.5rem; line-height: 1.6; font-size: 1.05rem; }
    
    .modal-price-large {
        font-size: 2rem; color: var(--primary-color); font-weight: 800;
        margin-bottom: 2rem; display: flex; align-items: baseline; gap: 0.5rem;
    }
    .modal-price-large small { font-size: 1rem; color: var(--text-secondary); font-weight: 500; }
    
    .modal-form { margin-bottom: auto; display: flex; flex-direction: column; gap: 1.25rem; }
    .form-row { display: flex; gap: 1rem; }
    .form-group { flex: 1; }
    .form-label { display: block; margin-bottom: 0.5rem; font-size: 0.9rem; font-weight: 600; color: var(--text-main); }
    
    .form-input, .form-select, .form-textarea {
        width: 100%; padding: 0.85rem; border: 1px solid var(--border-color); border-radius: var(--radius-md);
        background-color: var(--bg-color); color: var(--text-main); font-family: inherit; transition: var(--transition);
    }
    .form-input:focus, .form-select:focus, .form-textarea:focus {
        outline: none; border-color: var(--primary-color);
        box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1); background-color: var(--surface-color);
    }
    .form-textarea { resize: vertical; min-height: 100px; }
    
    .modal-total-row {
        margin-top: 2rem; padding-top: 1.5rem;
        border-top: 1px solid var(--border-color);
        display: flex; justify-content: space-between; align-items: center;
    }
    .modal-total-text { font-size: 1.5rem; font-weight: 700; color: var(--text-main); }
    
    /* Sub-Service List Modal */
    .modal-content-box {
        background: var(--surface-color); width: 90%; max-width: 700px;
        border-radius: var(--radius-lg); padding: 2.5rem;
        position: relative; transform: translateY(20px);
        transition: transform 0.3s; max-height: 85vh; overflow-y: auto;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    }
    .modal-overlay.open .modal-content-box { transform: translateY(0); }
    .close-modal-box {
        position: absolute; top: 20px; right: 20px; font-size: 1.8rem;
        cursor: pointer; color: var(--text-secondary); transition: 0.2s; line-height: 1;
    }
    .close-modal-box:hover { color: var(--primary-color); }
    
    .sub-service-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
    .sub-item {
        display: flex; justify-content: space-between; align-items: center;
        padding: 1.5rem; background: var(--bg-color); border-radius: 12px;
        border: 1px solid var(--border-color); transition: 0.2s;
    }
    .sub-item:hover { border-color: var(--primary-color); background: white; box-shadow: var(--shadow-sm); }
    .sub-info h4 { color: var(--text-main); margin-bottom: 4px; font-size: 1.1rem; font-weight: 600; }
    .sub-info p { color: var(--text-secondary); font-size: 0.9rem; }
    .price-tag { font-weight: 700; color: var(--primary-color); font-size: 1.25rem; margin-right: 1.5rem; }
    .btn-add { background: var(--text-main); color: white; padding: 0.6rem 1.2rem; border-radius: 8px; font-size: 0.9rem; transition: 0.2s; border: none; cursor: pointer; }
    .btn-add:hover { background: var(--primary-color); transform: translateY(-2px); }
    
    @media (max-width: 768px) {
        .service-modal { grid-template-columns: 1fr; max-height: 90vh; overflow-y: auto; }
        .modal-image { height: 250px; min-height: auto; }
        .form-row { flex-direction: column; gap: 1.25rem; }
    }
    
    /* Other Sections */
    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
    .about-img img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; height: 450px; object-fit: cover; }
    .about-content h2 { margin-bottom: 1.5rem; font-size: 2.5rem; color: var(--text-main); }
    .about-content p { color: var(--text-secondary); margin-bottom: 1.5rem; font-size: 1.1rem; }
    .benefits-list li { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; font-weight: 500; color: var(--text-main); }
    .benefits-list i { color: var(--primary-color); font-size: 1.4rem; }
    
    .scroll-reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s ease-out; }
    .scroll-reveal.visible { opacity: 1; transform: translateY(0); }
    
    .pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
    .pricing-card {
        background-color: var(--surface-color); padding: 2.5rem; border-radius: var(--radius-lg);
        border: 1px solid var(--border-color); text-align: center; transition: var(--transition); position: relative;
    }
    .pricing-card.popular { border: 2px solid var(--primary-color); transform: scale(1.05); z-index: 2; box-shadow: var(--shadow-lg); }
    .popular-badge {
        position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
        background-color: var(--primary-color); color: white; padding: 0.4rem 1.5rem;
        border-radius: 30px; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
    }
    .price { font-size: 3rem; font-weight: 800; margin: 1.5rem 0; color: var(--text-main); }
    .price span { font-size: 1.1rem; color: var(--text-secondary); font-weight: 400; }
    .features-list { margin: 2rem 0; text-align: left; }
    .features-list li { margin-bottom: 1rem; color: var(--text-secondary); display: flex; align-items: center; gap: 0.75rem; font-size: 1.05rem; }
    
    .testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
    .testimonial-card { background-color: var(--surface-color); padding: 2.5rem; border-radius: var(--radius-lg); border: 1px solid var(--border-color); box-shadow: var(--shadow-sm); }
    .client-info { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
    .client-avatar { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; border: 2px solid var(--primary-color); }
    
    .contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 0; background-color: var(--surface-color); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
    .contact-form-wrapper { padding: 3.5rem; }
    .form-group { margin-bottom: 1.5rem; }
    .form-control { width: 100%; padding: 1rem; border: 1px solid var(--border-color); border-radius: var(--radius-md); background-color: var(--bg-color); color: var(--text-main); transition: var(--transition); }
    .form-control:focus { outline: none; border-color: var(--primary-color); background-color: var(--surface-color); }
    .map-placeholder { width: 100%; height: 100%; min-height: 400px; background-color: #cbd5e1; background-image: url('https://picsum.photos/seed/map/800/800'); background-size: cover; position: relative; display: flex; align-items: center; justify-content: center; }
    .map-overlay { background: rgba(15, 23, 42, 0.8); backdrop-filter: blur(4px); padding: 2rem; border-radius: var(--radius-md); color: white; text-align: center; border: 1px solid rgba(255,255,255,0.2); }
    
    @media (max-width: 768px) {
        .about-grid { grid-template-columns: 1fr; gap: 3rem; }
        .about-img img { height: 300px; }
        .pricing-card.popular { transform: scale(1); }
        .contact-container { grid-template-columns: 1fr; }
        .contact-form-wrapper { padding: 2rem; }
    }
    
    footer {
        background-color: #3b3b3a;
        border-top: 1px solid var(--border-color);
        padding: 5rem 0 2rem;
        color: #ffffff;
    }
    .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 3rem; margin-bottom: 4rem; }
    .footer-col h4 {
        color: #ffffff;
        margin-bottom: 1.5rem;
        font-size: 1.8rem;
        font-weight: 700;
        text-shadow: 1px 1px 3px black;
    }
    .footer-links li { margin-bottom: 0.85rem; }
    .footer-links a { transition: var(--transition); color: #ffffff; }
    .footer-links a:hover { color: #ffffff; padding-left: 5px; }
    .social-icons { display: flex; gap: 1rem; margin-top: 1.5rem; }
    .social-icons a { width: 40px; height: 40px; border-radius: 50%; background-color: var(--bg-color); display: flex; align-items: center; justify-content: center; transition: var(--transition); color: var(--text-main); border: 1px solid var(--border-color); }
    .social-icons a:hover { background-color: var(--primary-color); color: white; border-color: var(--primary-color); transform: translateY(-3px); }
    .copyright { text-align: center; padding-top: 2rem; border-top: 1px solid var(--border-color); font-size: 0.9rem; }
    
    /* Cart Sidebar */
    .cart-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(15, 23, 42, 0.5); backdrop-filter: blur(2px); z-index: 1001; opacity: 0; visibility: hidden; transition: var(--transition); }
    .cart-overlay.open { opacity: 1; visibility: visible; }
    .cart-sidebar { position: fixed; top: 0; right: -450px; width: 100%; max-width: 420px; height: 100%; background-color: var(--surface-color); z-index: 1002; box-shadow: -10px 0 30px rgba(0,0,0,0.1); transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1); display: flex; flex-direction: column; border-left: 1px solid var(--border-color); }
    .cart-sidebar.open { right: 0; }
    .cart-header { padding: 1.5rem 2rem; border-bottom: 1px solid var(--border-color); display: flex; justify-content: space-between; align-items: center; background: var(--bg-color); }
    .cart-header h3 { font-size: 1.25rem; font-weight: 700; }
    .cart-items { flex-grow: 1; overflow-y: auto; padding: 2rem; }
    .cart-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border-color); }
    .cart-item-info h4 { font-size: 1rem; margin-bottom: 0.25rem; color: var(--text-main); }
    .cart-item-price { color: var(--primary-color); font-weight: 700; font-size: 0.95rem; }
    .cart-item-controls { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.5rem; }
    .qty-btn { width: 28px; height: 28px; border-radius: 6px; border: 1px solid var(--border-color); background: var(--bg-color); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
    .qty-btn:hover { border-color: var(--primary-color); color: var(--primary-color); }
    .remove-btn { margin-left: auto; color: #ef4444; background: none; border: none; cursor: pointer; font-size: 0.85rem; font-weight: 600; text-decoration: underline; }
    .cart-footer { padding: 2rem; border-top: 1px solid var(--border-color); background-color: var(--bg-color); }
    .total-row { display: flex; justify-content: space-between; font-size: 1.25rem; font-weight: 700; margin-bottom: 1.5rem; color: var(--text-main); }
    .empty-cart-msg { text-align: center; color: var(--text-secondary); margin-top: 3rem; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
    .empty-cart-msg i { font-size: 3rem; opacity: 0.5; }
    
    /* Toast & Utility */
    #toast-container { position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 3000; display: flex; flex-direction: column; gap: 10px; }
    .toast { background-color: var(--text-main); color: white; padding: 14px 28px; border-radius: 50px; box-shadow: var(--shadow-lg); font-size: 0.95rem; opacity: 0; transform: translateY(20px); transition: all 0.3s ease; display: flex; align-items: center; gap: 10px; font-weight: 500; }
    .toast.show { opacity: 1; transform: translateY(0); }
    .toast.success { background-color: var(--primary-color); }
    .toast.error { background-color: #ef4444; }
    
    #back-to-top { position: fixed; bottom: 30px; right: 30px; background-color: var(--primary-color); color: white; width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; cursor: pointer; box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transition: var(--transition); z-index: 990; border: 3px solid var(--surface-color); }
    #back-to-top.visible { opacity: 1; visibility: visible; }
    #back-to-top:hover { transform: translateY(-5px); background-color: var(--primary-dark); }
    .search-box-div {
        background: #ff930e;
        color: white;
        font-weight: 900;
        padding: 2px;
        border-radius: 26px 0px 0px 26px;
        display: flex;
        align-items: center;
    }
    .search-box-div i{
        padding: 0px 8px;
    }
    .padding-10{
        padding: 10px;
    }
    .text-main{
        color: #0e6f30;
    }
    .set-btn{
        display: flex;
        justify-content: space-between;
        align-items: baseline;
    }
    .view_allbtn {
        font-size: 14px;
        line-height: 20px;
        color: rgb(37 99 235);
        text-decoration-line: none;
        text-transform: none;
        font-weight: 600;
        text-align: center;
        padding: 19px;
        background: #f0f8ff7a;
        border-radius: 10px;
    }
    .pricing-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 0 !important;
    }
    .pricing-card.popular {
        border: 2px solid var(--primary-color);
        transform: scale(1.05);
        z-index: 2;
        box-shadow: var(--shadow-lg);
        margin: 18px !important;
    }
    .mb-20{
        margin-bottom: 20px;
    }
    .set_background{
        background-color: #1975390f;
    }
    /* =========================================
       Search Dropdown
       ========================================= */
    .search-box-div {
        position: relative;
    }
    
    .search-dropdown {
        position: fixed;
        background: #fff;
        border: 1px solid var(--border-color, #e2e8f0);
        border-radius: 10px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.15);
        z-index: 99999;
        max-height: 360px;
        min-width: 320px;
        overflow-y: auto;
        display: none;
    }
    
    .search-dropdown.open {
        display: block;
    }
    
    .search-result-item {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 14px;
        cursor: pointer;
        border-bottom: 1px solid var(--border-color, #f1f5f9);
        transition: background 0.15s;
    }
    
    .search-result-item:last-child {
        border-bottom: none;
    }
    
    .search-result-item:hover {
        background: var(--primary-light, #eff6ff);
    }
    
    .search-result-item img {
        width: 38px;
        height: 38px;
        object-fit: cover;
        border-radius: 6px;
        flex-shrink: 0;
    }
    
    .search-result-info .search-result-title {
        font-weight: 600;
        font-size: 0.88rem;
        color: var(--text-main, #1e293b);
    }
    
    .search-result-info .search-result-price {
        font-size: 0.78rem;
        color: var(--primary-color, #2563eb);
    }
    
    .search-no-results {
        padding: 14px;
        text-align: center;
        color: var(--text-secondary, #64748b);
        font-size: 0.88rem;
    }
    