  :root {
            --samsung-blue: #1428a0;
            --samsung-black: #000000;
            --card-bg: #0d0d0d;
            --accent: #2189ff;
            --text-white: #ffffff;
            --text-gray: #a0a0a0;
            --whatsapp-green: #25d366;
            --nav-bg: rgba(0, 0, 0, 0.95);
            --footer-bg: #000000;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }

        body {
            font-family: 'SamsungOne', 'Segoe UI', Arial, sans-serif;
            background-color: var(--samsung-black);
            color: var(--text-white);
            line-height: 1.8;
        }

        /* --- NAVIGATION (Dark Theme) --- */
        nav {
            background: var(--nav-bg);
            backdrop-filter: blur(15px);
            padding: 15px 8%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--samsung-blue);
        }

        .logo-box img { 
            height: 75px; 
            width: auto;
            border-radius: 12px;
            object-fit: contain;
        }

        .nav-links { display: flex; gap: 30px; list-style: none; }
        .nav-links a {
            color: var(--text-white);
            text-decoration: none;
            font-weight: 700;
            font-size: 0.85rem;
            text-transform: uppercase;
            transition: 0.3s;
        }
        .nav-links a:hover { color: var(--accent); }

        .menu-toggle { display: none; font-size: 1.8rem; color: white; cursor: pointer; }

        /* --- HERO --- */
        .hero {
            height: 85vh;
            background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.6)), 
                        url('images/blogachero.png');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 0 10%;
        }

        .hero-content h1 { font-size: clamp(2.2rem, 6vw, 4.5rem); font-weight: 900; text-transform: uppercase; margin-bottom: 15px; }
        .hero-content span { color: var(--accent); }
        .hero-content p { font-size: 1.2rem; color: var(--text-gray); margin-bottom: 30px; max-width: 800px; margin-inline: auto; }

        /* HERO BUTTONS */
        .hero-btns { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-top: 20px; }
        .btn-hero { padding: 18px 40px; border-radius: 5px; text-decoration: none; font-weight: 800; text-transform: uppercase; font-size: 1rem; display: flex; align-items: center; gap: 10px; transition: 0.3s; }
        .btn-hero-call { background: var(--samsung-blue); color: white; }
        .btn-hero-whatsapp { background: var(--whatsapp-green); color: white; }
        .btn-hero:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.4); }

        /* --- SERVICE CARDS --- */
        .section { padding: 80px 10%; }
        .strong-title { font-size: 2.8rem; text-align: center; margin-bottom: 50px; font-weight: 900; text-transform: uppercase; }
        
        .service-grid { 
            display: grid; 
            grid-template-columns: repeat(2, 1fr); 
            gap: 40px; 
        }

        .service-card { background: var(--card-bg); border: 1px solid #1a1a1a; border-radius: 15px; overflow: hidden; transition: 0.4s; }
        .service-card:hover { border-color: var(--samsung-blue); transform: translateY(-5px); }
        .card-img { height: 320px; width: 100%; background-size: cover; background-position: center; }
        .card-content { padding: 40px; }
        .card-content h3 { font-size: 1.7rem; margin-bottom: 15px; color: var(--accent); font-weight: 800; }
        .card-content p { color: var(--text-gray); margin-bottom: 25px; font-size: 1rem; }

        .card-btns { display: flex; gap: 15px; }
        .btn-card { padding: 14px; text-align: center; text-decoration: none; font-weight: 700; font-size: 12px; text-transform: uppercase; flex: 1; border-radius: 4px; transition: 0.3s; }
        .btn-book { background: var(--samsung-blue); color: white; }
        .btn-read { border: 1px solid #333; color: white; }

        /* --- INFO SECTION --- */
        .info-split { display: flex; flex-wrap: wrap; align-items: stretch; padding: 80px 10%; background: #050505; }
        .info-image { flex: 1; min-width: 350px; }
        .info-image img { width: 100%; height: 100%; object-fit: cover; border-radius: 20px 0 0 20px; border: 1px solid #222; }
        .info-text { flex: 1; min-width: 350px; padding: 60px; background: #0d0d0d; border-radius: 0 20px 20px 0; border: 1px solid #222; display: flex; flex-direction: column; justify-content: center; }
        .info-text h2 { font-size: 2.5rem; margin-bottom: 25px; font-weight: 900; color: white; }

        /* --- FAQ --- */
        .faq-section { background: #000; padding: 80px 10%; }
        .faq-item { background: #0d0d0d; border: 1px solid #1a1a1a; padding: 30px; margin-bottom: 20px; border-radius: 10px; border-left: 5px solid var(--samsung-blue); }
        .faq-item h4 { color: var(--accent); margin-bottom: 10px; font-size: 1.2rem; }

        /* --- FOOTER (Black Color) --- */
        footer { 
            background: var(--footer-bg); 
            padding: 80px 10% 40px; 
            border-top: 4px solid var(--samsung-blue); 
            text-align: center; 
        }
        .footer-grid { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
            gap: 40px; 
            justify-items: center;
        }
        .footer-col h4 { color: white; margin-bottom: 25px; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px; }
        .footer-col a { color: var(--text-gray); text-decoration: none; display: block; margin-bottom: 12px; font-size: 0.85rem; }
        .footer-col a:hover { color: var(--accent); }

        .social-container { display: flex; gap: 15px; margin-top: 20px; justify-content: center; }
        .social-icon { width: 50px; height: 50px; background: #111; border-radius: 10px; display: flex; justify-content: center; align-items: center; color: white; border: 1px solid #222; transition: 0.3s; }
        .social-icon:hover { background: var(--samsung-blue); border-color: var(--accent); }

        .whatsapp-float { position: fixed; bottom: 30px; right: 30px; background: var(--whatsapp-green); color: white; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 30px; z-index: 9999; box-shadow: 0 10px 20px rgba(0,0,0,0.5); }

        @media (max-width: 992px) {
            .service-grid { grid-template-columns: 1fr; }
            .info-image img, .info-text { border-radius: 20px; }
        }

        @media (max-width: 500px) {
            nav { padding: 15px 5%; }
            .menu-toggle { display: block; }
            .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background: #000; padding: 20px; border-bottom: 2px solid var(--samsung-blue); }
            .nav-links.active { display: flex; }
            .hero-btns { flex-direction: column; width: 100%; }
            .btn-hero { width: 100%; justify-content: center; }
        }







        /*==============location============*/
           
      /* Section Container Styling */
    .location-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px;
    }

    .section-title {
        text-align: center;
        font-size: 2.2rem;
        margin-bottom: 30px;
        color: #ffffff;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* Google Map Wrapper */
    .map-wrapper {
        background: #1e1e1e; /* Matches your dark-surface */
        padding: 12px;
        border-radius: 15px;
        border: 1px solid #333;
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        margin-bottom: 50px;
    }

    .map-container {
        position: relative;
        width: 100%;
        height: 450px;
    }

    .map-container iframe {
        width: 100%;
        height: 100%;
        border: 0;
        border-radius: 10px;
        /* Subtle dark filter to match dark theme */
        filter: grayscale(10%) contrast(1.1);
    }

    /* Location Info Cards */
    .location-info-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        margin-bottom: 50px;
    }

    .info-card {
        background: #1e1e1e;
        padding: 25px;
        border-radius: 12px;
        border: 1px solid #333;
        text-align: left;
        transition: 0.3s;
    }

    .info-card:hover {
        border-color: #034ea2;
        transform: translateY(-5px);
    }

    .info-card i {
        font-size: 2rem;
        color: #034ea2;
        margin-bottom: 15px;
    }

    .info-card h3 {
        margin: 10px 0;
        color: #fff;
    }

    /* Appointment Banner */
    .booking-banner {
        background: linear-gradient(135deg, #034ea2, #000);
        padding: 40px;
        border-radius: 15px;
        text-align: center;
        border: 1px solid #444;
    }

    .booking-banner h2 { color: #fff; margin-bottom: 15px; }
    
    .btn-location-call {
        display: inline-block;
        padding: 15px 35px;
        background: #fff;
        color: #000;
        text-decoration: none;
        border-radius: 5px;
        font-weight: bold;
        margin-top: 15px;
        transition: 0.3s;
    }

    .btn-location-call:hover {
        background: #034ea2;
        color: #fff;
    }

    @media (max-width: 768px) {
        .map-container { height: 300px; }
        .section-title { font-size: 1.8rem; }
    }
      





    /*contact==========*/
        .contact-page-container {
        padding: 60px 20px;
        background-color: var(--samsung-black);
        color: var(--text-white);
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

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

    /* Section 1: Interactive Contact Cards */
    .contact-methods {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        margin-bottom: 60px;
    }

    .method-card {
        background: var(--card-bg);
        padding: 40px;
        border-radius: 15px;
        text-align: center;
        border: 1px solid #222;
        transition: 0.3s;
        text-decoration: none;
        display: block;
    }

    .method-card:hover {
        border-color: var(--accent);
        transform: translateY(-5px);
    }

    .method-card i {
        font-size: 2.5rem;
        color: var(--accent);
        margin-bottom: 20px;
    }

    .method-card h3 { color: var(--text-white); margin-bottom: 10px; }
    .method-card p { color: var(--text-gray); }

    /* Section 2: Form & Summary */
    .contact-flex {
        display: flex;
        flex-wrap: wrap;
        gap: 40px;
        margin-bottom: 80px;
    }

    .form-column {
        flex: 1.5;
        min-width: 320px;
        background: var(--card-bg);
        padding: 40px;
        border-radius: 20px;
        border: 1px solid #222;
    }

    .form-group { margin-bottom: 20px; }
    .form-group label { display: block; margin-bottom: 10px; color: var(--text-gray); font-size: 0.9rem; }
    
    .form-group input, .form-group select, .form-group textarea {
        width: 100%;
        padding: 14px;
        background: #1a1a1a;
        border: 1px solid #333;
        border-radius: 8px;
        color: white;
        font-size: 1rem;
    }

    .form-group input:focus { border-color: var(--accent); outline: none; }

    .whatsapp-btn {
        width: 100%;
        padding: 16px;
        background: var(--whatsapp-green);
        color: white;
        border: none;
        border-radius: 8px;
        font-size: 1.1rem;
        font-weight: bold;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        transition: 0.3s;
    }

    .whatsapp-btn:hover { background: #1ebd59; box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3); }

   
    @media (max-width: 768px) {
        .contact-flex { flex-direction: column; }
    }



    /*=========================  abu dhabi rpair===============================*/
       .abudhabi-page {
        background-color: var(--samsung-black);
        color: var(--text-white);
        font-family: 'Segoe UI', sans-serif;
        overflow-x: hidden;
    }

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

    /* Floating Depth Design */
    .ad-section {
        display: flex;
        align-items: stretch;
        margin: 100px 0;
        gap: 0;
        position: relative;
    }

    .ad-visual {
        flex: 1.3;
        position: relative;
        min-height: 550px;
        z-index: 1;
        /* Unique Capital Shape */
        clip-path: circle(70.7% at 30% 50%);
        border: 4px solid var(--samsung-blue);
    }

    .ad-visual img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .ad-glass-panel {
        flex: 1;
        background: rgba(255, 255, 255, 0.03);
        backdrop-filter: blur(25px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 60px;
        margin-left: -150px; /* Deep Overlap */
        margin-top: 60px;
        margin-bottom: 60px;
        z-index: 10;
        display: flex;
        flex-direction: column;
        justify-content: center;
        box-shadow: 0 40px 100px rgba(0,0,0,0.8);
        border-right: 5px solid var(--accent);
    }

    /* Reverse Layout for Abu Dhabi Villas */
    .ad-reverse { flex-direction: row-reverse; }
    .ad-reverse .ad-glass-panel { margin-left: 0; margin-right: -150px; border-right: none; border-left: 5px solid var(--accent); }
    .ad-reverse .ad-visual { clip-path: circle(70.7% at 70% 50%); }

    /* SEO & Typography */
    .premium-label {
        font-size: 0.9rem;
        letter-spacing: 5px;
        color: var(--accent);
        text-transform: uppercase;
        font-weight: 900;
        margin-bottom: 15px;
        display: block;
    }

    h2 { font-size: 3rem; line-height: 1; margin-bottom: 25px; }
    h2 span { display: block; font-size: 1.5rem; color: var(--text-gray); font-weight: 300; margin-top: 10px;}

    .ad-seo-text {
        font-size: 1.1rem;
        line-height: 2;
        color: var(--text-gray);
        margin-bottom: 35px;
    }

    /* Capital City Button */
    .btn-ad {
        padding: 18px 50px;
        background: linear-gradient(45deg, var(--samsung-blue), var(--accent));
        color: white;
        text-decoration: none;
        font-weight: bold;
        border-radius: 50px;
        width: fit-content;
        transition: 0.4s;
        box-shadow: 0 10px 20px rgba(33, 137, 255, 0.3);
    }

    .btn-ad:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(33, 137, 255, 0.5); }

    /* District SEO Bar */
    .district-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
        padding: 40px 0;
        border-top: 1px solid #222;
        text-align: center;
    }

    .district-grid span { color: var(--accent); font-weight: bold; font-size: 0.9rem; }

    @media (max-width: 992px) {
        .ad-section { flex-direction: column; }
        .ad-glass-panel { margin: -100px 20px 40px 20px !important; padding: 30px; }
        .ad-visual { min-height: 400px; clip-path: none !important; }
        h2 { font-size: 2.2rem; }
    }





    /*=========================AJman repair==================*/
     .ajman-premium-seo {
        background-color: var(--samsung-black);
        color: var(--text-white);
        font-family: 'Segoe UI', sans-serif;
        overflow-x: hidden;
        padding-bottom: 100px;
    }

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

    /* Out of Box Overlap Section */
    .overlap-row {
        display: flex;
        align-items: stretch; /* Ensures Equal Height */
        margin: 120px 0;
        position: relative;
    }

    .image-holder {
        flex: 1;
        position: relative;
        min-height: 550px;
    }

    .organic-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* Unique Organic Shape from before */
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        border: 2px solid var(--accent);
        box-shadow: 0 20px 50px rgba(33, 137, 255, 0.15);
    }

    .glass-content {
        flex: 1;
        padding: 60px;
        background: rgba(20, 20, 20, 0.7);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 25px;
        z-index: 10;
        margin-left: -100px; /* The "Out of Box" overlap */
        align-self: center;
        box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    }

    /* Reverse Layout for Unique Flow */
    .reverse-row { flex-direction: row-reverse; }
    .reverse-row .glass-content { margin-left: 0; margin-right: -100px; text-align: right; }
    .reverse-row .organic-img { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }

    /* Keyword and Typography Styling */
    .seo-tag {
        color: var(--accent);
        text-transform: uppercase;
        letter-spacing: 3px;
        font-weight: 800;
        font-size: 0.8rem;
        display: block;
        margin-bottom: 15px;
    }

    h2 { font-size: 2.8rem; line-height: 1.1; margin-bottom: 20px; color: #fff; }
    h2 span { color: var(--accent); }

    .seo-paragraph {
        color: var(--text-gray);
        font-size: 1.05rem;
        line-height: 1.9;
        margin-bottom: 30px;
    }

    /* Unique Button Design */
    .btn-unique-ajman {
        display: inline-block;
        padding: 16px 40px;
        background: var(--accent);
        color: white;
        text-decoration: none;
        font-weight: bold;
        border-radius: 0 20px 0 20px;
        transition: 0.4s;
    }

    .btn-unique-ajman:hover {
        border-radius: 20px 0 20px 0;
        background: var(--samsung-blue);
        box-shadow: 0 10px 20px rgba(33, 137, 255, 0.3);
    }

    @media (max-width: 992px) {
        .overlap-row { flex-direction: column; }
        .glass-content { margin: -60px 10px 0 10px !important; padding: 30px; text-align: left !important; }
        .image-holder { min-height: 350px; }
        h2 { font-size: 2.2rem; }
    }

    /*=========================dubai repair==============*/
 .dubai-landing {
        background-color: var(--samsung-black);
        color: var(--text-white);
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .hero-local {
        background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?q=80&w=1470');
        background-size: cover;
        background-position: center;
        padding: 100px 20px;
        text-align: center;
    }

    .hero-local h1 { font-size: 3rem; margin-bottom: 15px; color: var(--text-white); }
    .hero-local h1 span { color: var(--accent); }
    .hero-local p { color: var(--text-gray); font-size: 1.2rem; max-width: 700px; margin: 0 auto 30px; }

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

    /* Local Stats Section */
    .local-info-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
        margin-top: -120px; /* Overlaps hero slightly */
    }

    .info-box {
        background: var(--card-bg);
        border: 1px solid #222;
        padding: 30px;
        border-radius: 15px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }

    .info-box i { font-size: 2.5rem; color: var(--accent); margin-bottom: 15px; }
    .info-box h3 { margin-bottom: 10px; color: var(--text-white); }

    /* Service Areas in Dubai First */
    .coverage-list {
        background: #080808;
        padding: 60px 20px;
        border-radius: 20px;
        margin: 60px 0;
        text-align: center;
    }

    .area-tags {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        margin-top: 30px;
    }

    .tag {
        background: #1a1a1a;
        padding: 10px 20px;
        border-radius: 50px;
        border: 1px solid var(--samsung-blue);
        font-size: 0.9rem;
    }

    /* Comparison Section (Inverter vs Standard) */
    .compare-section {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        margin-bottom: 60px;
        align-items: center;
    }

    .compare-text h2 { color: var(--accent); margin-bottom: 20px; }
    .compare-image img { width: 100%; border-radius: 15px; border: 1px solid #333; }

    /* Booking CTA */
    .local-cta {
        background: var(--samsung-blue);
        padding: 50px;
        border-radius: 20px;
        text-align: center;
    }

    .btn-dubai {
        display: inline-block;
        padding: 15px 40px;
        background: var(--text-white);
        color: var(--samsung-blue);
        text-decoration: none;
        border-radius: 8px;
        font-weight: bold;
        font-size: 1.1rem;
        margin-top: 20px;
        transition: 0.3s;
    }

    .btn-dubai:hover { background: var(--accent); color: white; }

    @media (max-width: 768px) {
        .compare-section { grid-template-columns: 1fr; }
        .hero-local h1 { font-size: 2rem; }
    }

    /*===========================sharjah repair====================*/
 .sharjah-seo-page {
        background-color: var(--samsung-black);
        color: var(--text-white);
        font-family: 'Segoe UI', Roboto, sans-serif;
        overflow-x: hidden;
    }

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

    /* Unique Sharjah Overlap Design */
    .shj-row {
        display: flex;
        align-items: stretch;
        margin-bottom: 120px;
        position: relative;
    }

    .shj-img-wrap {
        flex: 1.2;
        position: relative;
        min-height: 600px;
        clip-path: polygon(0 0, 100% 5%, 100% 95%, 0% 100%); /* Unique Angular Cut */
        transition: 0.5s;
    }

    .shj-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .shj-content {
        flex: 1;
        background: rgba(15, 15, 15, 0.9);
        border: 1px solid var(--samsung-blue);
        padding: 60px;
        margin-left: -80px; /* Overlap */
        margin-top: 50px;
        margin-bottom: 50px;
        z-index: 5;
        display: flex;
        flex-direction: column;
        justify-content: center;
        box-shadow: -20px 20px 40px rgba(0,0,0,0.8);
    }

    /* Reverse Layout */
    .shj-reverse { flex-direction: row-reverse; }
    .shj-reverse .shj-content { margin-left: 0; margin-right: -80px; border-color: var(--accent); }
    .shj-reverse .shj-img-wrap { clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 95%); }

    /* Typography & SEO */
    .city-tag {
        background: var(--samsung-blue);
        color: white;
        padding: 5px 15px;
        font-size: 0.75rem;
        font-weight: bold;
        display: inline-block;
        margin-bottom: 20px;
        width: fit-content;
    }

    h2 { font-size: 3rem; line-height: 1.1; margin-bottom: 25px; color: #fff; }
    h2 span { color: var(--accent); }

    .seo-text {
        color: var(--text-gray);
        font-size: 1.05rem;
        line-height: 1.9;
        margin-bottom: 30px;
    }

    .seo-text ul {
        margin-top: 15px;
        list-style: none;
        padding: 0;
    }

    .seo-text ul li {
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .seo-text ul li i { color: var(--accent); font-size: 0.8rem; }

    /* Unique Button */
    .btn-shj {
        padding: 18px 45px;
        background: transparent;
        color: white;
        border: 2px solid var(--accent);
        text-decoration: none;
        font-weight: bold;
        text-align: center;
        transition: 0.3s;
        display: inline-block;
    }

    .btn-shj:hover {
        background: var(--accent);
        box-shadow: 0 0 20px var(--accent);
    }

    /* Area List Bar */
    .area-bar {
        text-align: center;
        border-top: 1px solid #222;
        padding-top: 40px;
        margin-top: 40px;
    }

    .area-bar span {
        color: var(--text-gray);
        margin: 0 10px;
        font-size: 0.9rem;
    }

    @media (max-width: 992px) {
        .shj-row { flex-direction: column; }
        .shj-content { margin: -100px 20px 0 20px !important; padding: 30px; }
        .shj-img-wrap { min-height: 400px; }
    }



    /*=========================samung refrigreator repair ==================*/
      .master-fridge-page {
        background-color: var(--samsung-black);
        color: var(--text-white);
        font-family: 'Segoe UI', Tahoma, sans-serif;
        line-height: 1.7;
    }

    /* 1. Hero Banner */
    .hero-banner {
        height: 80vh;
        background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/samung-friderepir-hero.jpg');
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        border-bottom: 4px solid var(--samsung-blue);
    }

    .hero-banner h1 { font-size: 4rem; text-transform: uppercase; letter-spacing: -1px; }
    .hero-banner h1 span { color: var(--accent); display: block; font-size: 1.5rem; letter-spacing: 5px; margin-top: 10px; }

    .container { max-width: 1300px; margin: 0 auto; padding: 40px 20px; }

    /* 2. Equal Height Layout - Flex Stretch */
    .seo-section {
        display: flex;
        align-items: stretch; /* Forces Equal Height */
        margin: 100px 0;
        background: #080808;
        border-radius: 30px;
        overflow: hidden;
        border: 1px solid #1a1a1a;
    }

    .visual-side {
        flex: 1;
        min-height: 600px;
    }

    .visual-side img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .text-side {
        flex: 1.2;
        padding: 60px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .text-side h2 { font-size: 2.5rem; color: var(--accent); margin-bottom: 25px; line-height: 1.1; }
    .text-side p { margin-bottom: 20px; color: var(--text-gray); font-size: 1.05rem; }

    .reverse { flex-direction: row-reverse; }

    /* 3. Redesigned FAQ Section */
    .faq-grid-wrapper {
        padding: 80px 0;
    }

    .faq-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .faq-card {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid #222;
        padding: 40px;
        border-radius: 20px;
        transition: 0.3s;
    }

    .faq-card:hover { border-color: var(--accent); background: #0c0c0c; }
    .faq-card h4 { color: var(--accent); margin-bottom: 15px; font-size: 1.2rem; display: flex; align-items: center; gap: 10px; }
    .faq-card p { font-size: 0.95rem; color: var(--text-gray); }

    .btn-action {
        display: inline-block;
        padding: 15px 40px;
        background: var(--samsung-blue);
        color: white;
        text-decoration: none;
        font-weight: bold;
        border-radius: 5px;
        margin-top: 10px;
        transition: 0.3s;
    }

    .btn-action:hover { background: var(--accent); }

    @media (max-width: 992px) {
        .seo-section { flex-direction: column; }
        .visual-side { min-height: 350px; }
        .faq-grid { grid-template-columns: 1fr; }
        .hero-banner h1 { font-size: 2.5rem; }
    }



    /*=======================samsung washing repair =========================*/
     .washer-master-page {
        background-color: var(--samsung-black);
        color: var(--text-white);
        font-family: 'Segoe UI', Arial, sans-serif;
        line-height: 1.8;
    }

    /* Hero Section */
    .washer-hero {
        height: 65vh;
        background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('images/samsung-washing-hero.jpg');
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        border-bottom: 5px solid var(--samsung-blue);
    }

    .washer-hero h1 { font-size: clamp(2rem, 6vw, 4.5rem); text-transform: uppercase; font-weight: 900; line-height: 1; }
    .washer-hero h1 span { color: var(--accent); display: block; font-size: 1.4rem; letter-spacing: 6px; margin-top: 15px; }

    .container { max-width: 1300px; margin: 0 auto; padding: 40px 20px; }

    /* Industrial Equal Height Grid */
    .tech-row {
        display: flex;
        align-items: stretch; /* Locked Height */
        margin: 100px 0;
        background: #060606;
        border: 1px solid #1a1a1a;
    }

    .tech-img {
        flex: 1;
        min-height: 650px;
        filter: contrast(1.1) brightness(0.9);
    }

    .tech-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .tech-text {
        flex: 1.2;
        padding: 60px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
    }

    .tech-text h2 { font-size: 2.6rem; color: var(--accent); margin-bottom: 25px; line-height: 1.1; }
    .tech-text p { color: var(--text-gray); font-size: 1.08rem; margin-bottom: 20px; }

    .reverse { flex-direction: row-reverse; }

    /* Empty WhatsApp Button */
    .wa-btn-empty {
        display: inline-block;
        padding: 18px 45px;
        background: var(--whatsapp-green);
        color: white;
        text-decoration: none;
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-top: 20px;
        width: fit-content;
        transition: 0.3s;
    }

    .wa-btn-empty:hover { background: #1eb956; transform: scale(1.03); }

    /* Technical Diagnostic Specs (Keyword Booster) */
    .specs-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin-top: 60px;
    }

    .spec-item {
        background: #111;
        padding: 20px;
        border-left: 3px solid var(--samsung-blue);
    }

    .spec-item strong { color: #fff; display: block; font-size: 0.9rem; text-transform: uppercase; }
    .spec-item span { color: var(--text-gray); font-size: 0.85rem; }

    /* Redesigned FAQ Logic */
    .logic-box {
        background: #0a0a0a;
        padding: 80px 40px;
        border-radius: 40px;
        margin: 100px 0;
        border: 1px solid #222;
    }

    .logic-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .logic-card h4 { color: var(--accent); margin-bottom: 15px; font-size: 1.3rem; border-bottom: 1px solid #333; padding-bottom: 10px; }
    .logic-card p { font-size: 1rem; color: #ccc; }

    @media (max-width: 992px) {
        .tech-row { flex-direction: column; }
        .tech-img { min-height: 350px; }
        .logic-grid { grid-template-columns: 1fr; }
    }



    /*====================ac repir============================*/
    .ac-specialist-page {
        background-color: var(--samsung-black);
        color: var(--text-white);
        font-family: 'Segoe UI', Tahoma, sans-serif;
        line-height: 1.6;
    }

    /* 1. Hero Banner Design */
    .ac-hero {
        height: 80vh;
        background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                    url('images/samsung-ac-hero.jpg') center/cover no-repeat;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        border-bottom: 4px solid var(--accent);
    }

    .ac-hero-content h1 {
        font-size: 4.5rem;
        text-transform: uppercase;
        font-weight: 900;
        letter-spacing: -2px;
        margin-bottom: 20px;
    }

    .ac-hero-content p {
        font-size: 1.4rem;
        color: var(--accent);
        letter-spacing: 5px;
        text-transform: uppercase;
    }

    .container { max-width: 1400px; margin: 0 auto; padding: 80px 20px; }

    /* 2. Horizontal Flow Sections */
    .ac-module {
        display: flex;
        gap: 50px;
        margin-bottom: 150px;
        align-items: center;
    }

    .ac-visual {
        flex: 1;
        position: relative;
    }

    .ac-visual img {
        width: 100%;
        height: 600px;
        object-fit: cover;
        border-radius: 4px;
        box-shadow: 20px 20px 0px var(--accent); /* Offset shadow design */
    }

    .ac-text {
        flex: 1.2;
        padding: 40px;
    }

    .module-tag {
        background: var(--accent);
        color: white;
        padding: 5px 15px;
        font-size: 0.8rem;
        font-weight: bold;
        display: inline-block;
        margin-bottom: 20px;
    }

    .ac-text h2 {
        font-size: 3.5rem;
        margin-bottom: 25px;
        line-height: 1;
    }

    .ac-text p {
        color: var(--text-gray);
        font-size: 1.15rem;
        margin-bottom: 30px;
        text-align: justify;
    }

    /* Buttons */
    .btn-ac {
        display: inline-block;
        padding: 20px 50px;
        text-decoration: none;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 2px;
        transition: 0.4s;
        border: 2px solid var(--accent);
    }

    .btn-fill { background: var(--accent); color: white; }
    .btn-wa { background: var(--whatsapp-green); border-color: var(--whatsapp-green); color: black; }

    .btn-ac:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(33, 137, 255, 0.3); }

    /* 3. Frost-Edge FAQ */
    .frost-faq {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-top: 80px;
    }

    .faq-frost-card {
        background: linear-gradient(145deg, #0f0f0f, #050505);
        padding: 50px;
        border-top: 2px solid #222;
        position: relative;
    }

    /* Blue Line Animation */
    .faq-frost-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--accent);
        transition: 0.6s ease;
    }

    .faq-frost-card:hover::after { width: 100%; }

    .faq-frost-card h4 {
        color: var(--accent);
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    .reverse { flex-direction: row-reverse; }
    .reverse .ac-visual img { box-shadow: -20px 20px 0px var(--accent); }

    @media (max-width: 992px) {
        .ac-module, .reverse { flex-direction: column; }
        .ac-visual img { height: 400px; box-shadow: 10px 10px 0px var(--accent); }
        .ac-text h2 { font-size: 2.5rem; }
        .frost-faq { grid-template-columns: 1fr; }
        .ac-hero-content h1 { font-size: 2.5rem; }
    }




    /*=========================digital in verter========================*/
      .matrix-page-wrapper {
        background-color: var(--samsung-black);
        color: var(--text-white);
        font-family: 'Segoe UI', sans-serif;
        padding: 60px 0;
    }

    .container { max-width: 1350px; margin: 0 auto; padding: 0 25px; }

    /* Heading Module Design */
    .module-label {
        color: var(--accent);
        text-transform: uppercase;
        letter-spacing: 6px;
        font-size: 0.75rem;
        font-weight: 900;
        margin-bottom: 10px;
        display: block;
    }

    /* Split-Section Design */
    .matrix-row {
        display: flex;
        align-items: stretch;
        margin-bottom: 100px;
        border: 1px solid #1a1a1a;
        background: var(--card-bg);
    }

    .matrix-img {
        flex: 1;
        min-height: 550px;
        position: relative;
        overflow: hidden;
    }

    .matrix-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.8s ease;
        filter: grayscale(20%) contrast(1.1);
    }

    .matrix-row:hover .matrix-img img { transform: scale(1.1); filter: grayscale(0%); }

    .matrix-content {
        flex: 1.2;
        padding: 70px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        border-left: 2px solid var(--accent);
    }

    .matrix-content h2 {
        font-size: 2.8rem;
        line-height: 1.1;
        margin-bottom: 25px;
        font-weight: 800;
    }

    .matrix-content p {
        font-size: 1.05rem;
        color: var(--text-gray);
        margin-bottom: 30px;
        line-height: 1.8;
    }

    /* Colored Buttons based on Root */
    .btn-logic {
        display: inline-block;
        padding: 18px 45px;
        text-decoration: none;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        transition: 0.4s;
        width: fit-content;
    }

    .btn-accent { background: var(--accent); color: var(--text-white); }
    .btn-outline { border: 2px solid var(--text-white); color: var(--text-white); }
    .btn-wa { background: var(--whatsapp-green); color: var(--samsung-black); }

    .btn-logic:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(33, 137, 255, 0.4); }

    /* Animated Glow-Bar FAQ */
    .glow-faq-container { margin-top: 120px; }
    
    .glow-faq-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
        margin-top: 60px;
    }

    .glow-card {
        background: #050505;
        padding: 45px;
        position: relative;
        border: 1px solid #111;
    }

    .glow-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        height: 3px;
        width: 0;
        background: var(--accent);
        box-shadow: 0 0 15px var(--accent);
        transition: 0.6s ease;
    }

    .glow-card:hover::after { width: 100%; }

    .glow-card h4 {
        color: var(--accent);
        font-size: 1.25rem;
        margin-bottom: 15px;
        font-weight: 700;
    }

    .glow-card p { color: var(--text-gray); font-size: 1rem; }

    .reverse { flex-direction: row-reverse; }
    .reverse .matrix-content { border-left: none; border-right: 2px solid var(--accent); }

    @media (max-width: 992px) {
        .matrix-row, .reverse { flex-direction: column; }
        .matrix-img { min-height: 350px; }
        .glow-faq-grid { grid-template-columns: 1fr; }
        .matrix-content { padding: 40px; border: none; border-top: 2px solid var(--accent); }
    }



    /*========================dryer repair =====================*/
        .dryer-pro-page {
        background-color: var(--samsung-black);
        color: var(--text-white);
        font-family: 'Segoe UI', Roboto, sans-serif;
        padding: 0 4%; /* Minor side gap */
    }

    .container { max-width: 1400px; margin: 0 auto; padding: 40px 0; }

    /* 1. Hero Section */
    .hero-banner {
        height: 70vh;
        margin-top: 20px;
        background: linear-gradient(to right, rgba(0,0,0,0.9), rgba(0,0,0,0.4)), 
                    url('images/samsung-acherobanner.jpg') center/cover no-repeat;
        display: flex;
        align-items: center;
        padding: 0 8%;
        border-radius: 20px;
        border: 1px solid #222;
    }

    .hero-content h1 { font-size: 4rem; font-weight: 900; line-height: 1.1; }
    .hero-content span { color: var(--dryer-orange); }

    /* 2. Grid for Service Modules */
    .service-row {
        display: flex;
        gap: 80px;
        margin-bottom: 120px;
        align-items: center;
    }

    .service-row.reverse { flex-direction: row-reverse; }

    .service-text { flex: 1.2; }
    .service-image { flex: 1; }

    .service-image img {
        width: 100%;
        height: 500px;
        object-fit: cover;
        border-radius: 15px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.5);
        transition: 0.4s;
    }

    .service-image img:hover { transform: scale(1.02); border: 1px solid var(--dryer-orange); }

    .service-text h2 { font-size: 2.8rem; margin-bottom: 20px; color: var(--text-white); }
    .service-text p { font-size: 1.15rem; color: var(--text-gray); line-height: 1.9; margin-bottom: 30px; }

    /* 3. Button Styling */
    .btn-wrap { display: flex; gap: 20px; }
    
    .btn {
        padding: 18px 40px;
        text-decoration: none;
        font-weight: 700;
        text-transform: uppercase;
        border-radius: 5px;
        transition: 0.3s ease;
        display: inline-block;
    }

    .btn-primary { background: var(--dryer-orange); color: white; }
    .btn-secondary { background: var(--samsung-blue); color: white; }
    
    .btn:hover { transform: translateY(-5px); filter: brightness(1.2); }

    /* 4. SEO Keyword Vault */
    .seo-vault {
        background: #080808;
        padding: 60px;
        border-radius: 20px;
        margin-top: 100px;
        border: 1px solid #111;
    }

    .seo-vault p {
        color: #333; /* Subversive SEO: blending keywords with background */
        font-size: 0.85rem;
        line-height: 2.2;
        text-align: justify;
    }

    @media (max-width: 992px) {
        .service-row, .service-row.reverse { flex-direction: column; text-align: center; }
        .hero-content h1 { font-size: 2.5rem; }
        .btn-wrap { justify-content: center; }
    }





    /*==============microwave repair================*/
     .page-wrapper {
            padding: 0 4%; /* Minor side gaps as requested */
        }

        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 40px 0; /* Adjusted top/bottom padding */
        }

        /* Hero Banner */
        .hero-banner {
            height: 70vh;
            margin-top: 20px;
            background: linear-gradient(to right, rgba(0,0,0,0.95), rgba(0,0,0,0.4)), 
                        url('images/samsung-microwave-hero-banner.jpg') center/cover no-repeat;
            display: flex;
            align-items: center;
            padding: 0 6%;
            border-radius: 20px;
            border: 1px solid #1a1a1a;
            box-shadow: 0 15px 30px rgba(0,0,0,0.5);
        }

        .hero-content {
            max-width: 650px;
        }
        .hero-content h1 { font-size: 4rem; font-weight: 900; line-height: 1.1; margin: 0; }
        .hero-content span { color: var(--oven-amber); }
        .hero-content p { color: var(--text-dim); font-size: 1.25rem; margin: 25px 0 40px; }

        /* Service Modules */
        .service-row {
            display: flex;
            gap: 70px;
            margin: 100px 0;
            align-items: center;
            background-color: var(--card-dark);
            padding: 40px;
            border-radius: 15px;
            border: 1px solid #1a1a1a;
        }

        .service-row.reverse { flex-direction: row-reverse; }

        .service-img { flex: 1; }
        .service-img img {
            width: 100%;
            height: 500px; /* Slightly larger images */
            object-fit: cover;
            border-radius: 12px;
            border: 1px solid #333;
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
            transition: 0.4s;
        }
        .service-img img:hover { border-color: var(--oven-amber); transform: translateY(-5px); }

        .service-text { flex: 1.2; padding-left: 20px;}
        .service-text h2 { font-size: 2.8rem; margin-bottom: 20px; color: var(--text-main); }
        .service-text p { font-size: 1.1rem; color: var(--text-dim); line-height: 1.9; margin-bottom: 30px; }

        /* Premium Buttons */
        .btn-group { display: flex; gap: 20px; flex-wrap: wrap; }
        
        .btn {
            padding: 18px 40px;
            text-decoration: none;
            font-weight: 700;
            text-transform: uppercase;
            border-radius: 8px;
            transition: 0.3s ease;
            display: inline-block;
            font-size: 0.95rem;
            letter-spacing: 0.5px;
            border: none;
            cursor: pointer;
        }

        .btn-amber { background: var(--oven-amber); color: #000; }
        .btn-blue { background: var(--samsung-blue); color: #fff; }
        .btn:hover { transform: translateY(-3px); box-shadow: 0 12px 25px rgba(0,0,0,0.5); filter: brightness(1.1); }

        @media (max-width: 992px) {
            .service-row, .service-row.reverse { flex-direction: column; text-align: center; }
            .hero-content h1 { font-size: 2.8rem; }
            .btn-group { justify-content: center; }
            .service-img img { height: 350px; }
            .service-text { padding-left: 0; }
        }




        /* ==================services ================*/
  .services-page {
        background-color: var(--samsung-black);
        color: var(--text-white);
        font-family: 'Segoe UI', Arial, sans-serif;
        padding: 40px 20px;
    }

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

    .main-title { text-align: center; font-size: 2.5rem; margin-bottom: 50px; color: var(--text-white); }
    .main-title span { color: var(--accent); }

    /* Services Grid */
    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
        margin-bottom: 80px;
    }

    .s-card {
        background: var(--card-bg);
        border: 1px solid #1a1a1a;
        border-radius: 15px;
        padding: 30px;
        transition: 0.3s;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .s-card:hover { border-color: var(--samsung-blue); transform: translateY(-10px); }

    .s-card i { font-size: 2.5rem; color: var(--accent); margin-bottom: 20px; }
    .s-card h3 { font-size: 1.4rem; margin-bottom: 15px; }
    .s-card p { color: var(--text-gray); font-size: 0.95rem; line-height: 1.6; margin-bottom: 25px; }

    .btn-group { display: flex; gap: 10px; }

    .btn-s {
        flex: 1;
        padding: 12px;
        border-radius: 8px;
        text-align: center;
        font-weight: bold;
        text-decoration: none;
        font-size: 0.9rem;
        transition: 0.3s;
        cursor: pointer;
    }

    .btn-book { background: var(--samsung-blue); color: white; border: none; }
    .btn-book:hover { background: var(--accent); }

    .btn-read { border: 1px solid var(--text-gray); color: var(--text-white); }
    .btn-read:hover { background: white; color: black; }

    /* Extra Sections */
    .extra-section { padding: 80px 0; border-top: 1px solid #1a1a1a; }
    .trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; text-align: center; }
    .trust-item h2 { color: var(--accent); font-size: 2.5rem; }

    .banner-cta {
        background: linear-gradient(rgba(20, 40, 160, 0.2), rgba(0,0,0,0.9)), url('https://images.unsplash.com/photo-1581092160562-40aa08e78837?q=80&w=1000');
        background-size: cover;
        padding: 100px 40px;
        border-radius: 20px;
        text-align: center;
        margin: 40px 0;
    }

    @media (max-width: 768px) { .main-title { font-size: 1.8rem; } }