* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #222;
    background: #f5f5f5;
}

/* HEADER */

header {
    min-height: 500px;
    background-image: url("hero.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;
    color: white;
}

header h1 {
    font-size: 52px;
    max-width: 900px;
    margin: 0;
}

header p {
    font-size: 21px;
    margin-top: 20px;
}

/* NAVIGATION */

nav {
    background: #111;
    padding: 20px;
    text-align: center;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 20px;
    font-weight: bold;
}

nav a:hover {
    color: #d4af37;
}

/* HERO */

.hero {
    text-align: center;
    padding: 80px 25px;
    background: white;
}

.hero h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color:black
}

.hero p {
    max-width: 750px;
    margin: auto;
    font-size: 18px;
    line-height: 1.8;
}

.button {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 30px;
    background: #c9a227;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

/* =========================
   SERVICES
========================= */

.services {
    padding: 80px 30px;
    text-align: center;
}

.services h2 {
    font-size: 40px;
    margin-bottom: 45px;
}

.service-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 50px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 30px;
    box-sizing: border-box;
}

.service {
    width: 100%;
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    box-sizing: border-box;
}

.service img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    display: block;
    margin-bottom: 20px;
    border-radius: 10px;
}

.service details {
    width: 100%;
}

.service details summary {
    font-size: 30px;
    font-weight: bold;
    padding: 15px;
    cursor: pointer;
}

.service h3 {
    color: #b18a20;
    font-size: 24px;
}

.service p {
    line-height: 1.7;
}

/* ALUMINUM SERVICE IMAGE */

.aluminum-img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    display: block;
}

/* MOBILE SERVICES */

@media (max-width: 700px) {

    .services {
        padding: 60px 12px;
    }

    .services h2 {
        font-size: 34px;
        margin-bottom: 30px;
    }

    .service-container {
        grid-template-columns: 1fr;
        width: 100%;
        padding: 10px 0;
        gap: 30px;
    }

    .service {
        width: 100%;
        padding: 20px 15px;
    }

    .service img {
        width: 100%;
        height: 300px;
        object-fit: contain;
        margin-bottom: 15px;
    }

    .aluminum-img {
        width: 100%;
        height: 300px;
        object-fit: contain;
    }

    .service details summary {
        font-size: 27px;
        line-height: 1.2;
        padding: 15px 5px;
    }

    .service h3 {
        font-size: 25px;
    }

    .service p {
        font-size: 16px;
        line-height: 1.7;
    }
}


/* LUXURY ABOUT SECTION */

.about {
    background: #0d0d0d;
    color: white;
    padding: 100px 7%;
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 1250px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-content {
    flex: 1;
    text-align: left;
}

.about-label {
    color: #d4af37;
    font-size: 14px;
    letter-spacing: 4px;
    font-weight: bold;
    margin-bottom: 18px;
}

.about-content h2 {
    font-size: 48px;
    line-height: 1.15;
    margin: 0 0 22px;
    font-weight: 600;
}

.about-content h2 span {
    color: #d4af37;
}

.gold-line {
    width: 70px;
    height: 3px;
    background: #d4af37;
    margin-bottom: 25px;
}

.about-content h3 {
    color: #e2c35b;
    font-size: 21px;
    margin-bottom: 25px;
    font-weight: 500;
}

.about-content p {
    color: #c8c8c8;
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 18px;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image::before {
    content: "";
    position: absolute;
    top: -18px;
    right: -18px;
    width: 100%;
    height: 100%;
    border: 1px solid #d4af37;
    z-index: 0;
}

.about-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

/* CONTACT */

.contact {
    background: white;
    padding: 80px 30px;
    text-align: center;
}

.contact h2 {
    font-size: 40px;
}

.contact p {
    font-size: 18px;
    margin: 18px;
}

.contact a {
    color: #b18a20;
    text-decoration: none;
    font-weight: bold;
}

/* FOOTER */

footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 25px;
}

/* MOBILE */

@media (max-width: 700px) {

    header h1 {
        font-size: 34px;
    }

    nav a {
        display: inline-block;
        margin: 8px;
    }

    .hero h2,
    .services h2,
    .about h2,
    .contact h2 {
        font-size: 30px;
    }

    .service {
        width: 100%;
    }
}


.glass-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
    margin: 20px 0;
    width:100%;
}

.glass-gallery img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    border-radius: 10px;
    background:#f5f5f5;
}

@media(max-width:600px) {
    .glass-gallery img {
       height:220px;
}   }

.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    justify-content: center;
    align-items: center;
    padding: 15px;
    box-sizing: border-box;
}

.image-modal img {
    width: auto;
    height: auto;
    max-width: 95vw;
    max-height: 92vh;
    object-fit: contain;
    border-radius: 8px;
}

.close-image {
    position: absolute;
    top: 15px;
    right: 25px;
    color: white;
    font-size: 45px;
    cursor: pointer;
    z-index: 10000;
}


/* FULL WIDTH SERVICES */
.service-container {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 20px 30px !important;
    gap: 50px !important;
    box-sizing: border-box;
}

.service {
    width: 100% !important;
    max-width: none !important;
}

.service details {
    width: 100% !important;
}

.service details summary {
    font-size: 32px;
    padding: 20px;
}

@media (max-width: 700px) {
    .service-container {
        grid-template-columns: 1fr !important;
        padding: 15px !important;
    }
}

.aluminum-img {
  width:100%;
  height:300px;
  object-fit:contain;
  display:block;
}


/* =========================
   WHY CHOOSE US
========================= */

.why-choose-us {
    background: #11100e;
    color: #f5f1e8;
    padding: 120px 8%;
    overflow: hidden;
}

.why-heading {
    text-align: center;
    margin-bottom: 110px;
}

.section-label {
    color: #c9a96e;
    font-size: 22px;
    letter-spacing: 6px;
    margin-bottom: 24px;
    font-weight: 600;
    text-align:center;
}

.why-heading h2 {
       color:#c9a96e;
       font-size:clamp(42px,6vw,72px);
       line-height:1;
       font-weight:500;
       letter-spacing:3px;
       margin:0;
       text-align:center;
}

.why-item {
    width: 62%;
    margin-bottom: 90px;
}

.why-left {
    margin-left: 0;
    margin-right: auto;
}

.why-right {
    margin-left: auto;
    margin-right: 0;
}

.why-line {
    width: 100%;
    height: 1px;
    background: #c9a96e;
    opacity: 0.7;
    margin-bottom: 25px;
}

.why-content {
    padding: 0 5px;
}

.why-content span {
    color: #c9a96e;
    font-size: 13px;
    letter-spacing: 3px;
}

.why-content h3 {
    font-size: clamp(28px, 3vw, 46px);
    font-weight: 500;
    margin: 12px 0 18px;
    letter-spacing: -1px;
}

.why-content p {
    max-width: 650px;
    font-size: 16px;
    line-height: 1.9;
    color: #c9c4ba;
    margin: 0;
}

/* Mobile */
@media (max-width: 768px) {

    .why-choose-us {
        padding: 80px 5%;
    }

    .why-heading {
        margin-bottom: 80px;
    }

    .why-heading h2 {
       color:#c9a96e;
       font-size:clamp(42px,6vw,72px);
       line-height:1;
       font-weight:500;
       letter-spacing:3px;
       margin:0;
       text-align:center;
    }

    .why-item {
        width: 82%;
        margin-bottom: 75px;
    }

    .why-left {
        margin-left: 0;
        margin-right: auto;
    }

    .why-right {
        margin-left: auto;
        margin-right: 0;
    }

    .why-content h3 {
        font-size: 28px;
        line-height: 1.15;
    }

    .why-content p {
        font-size: 14px;
        line-height: 1.8;
    }

    .why-line {
        margin-bottom: 20px;
    }
}

/* Full-width Why Choose Us section */

.why-choose-us {
    display: block !important;
    position: relative !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 100% !important;
    margin: 0 !important;
    padding: 100px 8% !important;
    box-sizing: border-box !important;
}

@media (max-width: 768px) {
    .why-choose-us {
        width: 100% !important;
        min-width: 100% !important;
        padding: 70px 5% !important;
    }
}

/* =========================
   WHY CHOOSE US - TEXT + IMAGES
========================= */

.why-item {
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
    margin-bottom: 100px;
}

.why-left {
    margin-left: 0;
    margin-right: auto;
}

.why-right {
    margin-left: auto;
    margin-right: 0;
}

.why-content {
    width: 50%;
}

.why-image {
    width: 38%;
    height: 260px;
    overflow: hidden;
}

.why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.why-content h3 {
    font-size: clamp(28px, 3vw, 46px);
    font-weight: 500;
    margin: 12px 0 18px;
    letter-spacing: -1px;
}

.why-content p {
    max-width: 650px;
    font-size: 16px;
    line-height: 1.9;
    color: #c9c4ba;
    margin: 0;
}

/* FULL WIDTH WHY CHOOSE US SECTION */

.why-choose-us {
    width: 100%;
    max-width: cover;
    margin: 0;
    padding-left: 5%;
    padding-right: 5%;
    box-sizing: border-box;
}

.why-item {
    width: 90%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .why-choose-us {
        width: 100%;
        padding-left: 4%;
        padding-right: 4%;
    }

    .why-item {
        width: 92%;
    }
}

.why-choose-us {
    display: block;
    width: 100vw;
    max-width: 100vw;
    margin-left: 0;
    margin-right: 0;
    box-sizing: border-box;
}

/* WHY CHOOSE US - FULL WIDTH */

.why-choose-us {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 100px 5%;
    box-sizing: border-box;
}

.why-item {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    box-sizing: border-box;
}

.why-left {
    margin-left: 0;
    margin-right: auto;
}

.why-right {
    margin-left: auto;
    margin-right: 0;
}

.why-content {
    width: 55%;
}

.why-image {
    width: 40%;
    height: 260px;
    overflow: hidden;
}

.why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {

    .why-choose-us {
        width: 100%;
        padding: 70px 4%;
    }

    .why-item {
        width: 100%;
        gap: 20px;
    }

    .why-content {
        width: 58%;
    }

    .why-image {
        width: 38%;
        height: 180px;
    }
}

/* LUXURY HERO CONTENT */

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 20px;
}

.hero-label {
    display: block;
    color: #c9a96e;
    font-size: 14px;
    letter-spacing: 6px;
    margin-bottom: 22px;
    font-weight: 500;
}

.hero-content h1 {
    color: #ffffff;
    font-size: clamp(42px, 6vw, 78px);
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: 2px;
    margin: 0;
}

.hero-line {
    width: 70px;
    height: 2px;
    background: #c9a96e;
    margin: 28px auto;
}

.hero-content p {
    max-width: 680px;
    margin: 0 auto 35px;
    color: #e5e1d9;
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.3px;
}

.hero-button {
    display: inline-block;
    padding: 14px 34px;
    border: 1px solid #c9a96e;
    color: #c9a96e;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 2px;
    transition: 0.3s ease;
}

.hero-button:hover {
    background: #c9a96e;
    color: #111;
}

@media (max-width: 768px) {

    .hero-content {
        padding: 30px 15px;
    }

    .hero-label {
        font-size: 12px;
        letter-spacing: 4px;
    }

    .hero-content h1 {
        font-size: 40px;
        line-height: 1.1;
    }

    .hero-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    .hero-button {
        padding: 13px 28px;
    }
}

/* FLOATING WHATSAPP BUTTON */

.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    color: white;
    padding: 12px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.whatsapp-icon {
    font-size: 25px;
}

.whatsapp-text {
    color: white;
}

.location-box {
    margin-top: 35px;
    text-align: center;
}

.location-box h3 {
    color: #b8941f;
    font-size: 24px;
    margin-bottom: 10px;
}

.location-box p {
    line-height: 1.7;
}

.location-button {
    display: inline-block;
    margin-top: 15px;
    padding: 13px 24px;
    background-color: #d4af37;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.location-button:hover {
    background-color: #b8941f;
}

/* MOBILE WEBSITE */

@media (max-width: 768px) {

    body {
        width: 100%;
        overflow-x: hidden;
    }

    header {
        padding: 45px 18px;
    }

    header h1 {
        font-size: 32px;
        line-height: 1.2;
    }

    header p {
        font-size: 17px;
    }

    nav {
        padding: 15px 5px;
    }

    nav a {
        margin: 0 7px;
        font-size: 14px;
    }

    .hero {
        padding: 60px 20px;
    }

    .hero h2 {
        font-size: 32px;
        line-height: 1.2;
    }

    .hero p {
        font-size: 17px;
    }

}

/* =========================================
   FINAL MOBILE RESPONSIVE DESIGN
========================================= */

@media (max-width: 700px) {

    html,
    body {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
        overflow-x: hidden;
    }

    /* HEADER */

    header {
        width: 100% !important;
        min-height: 420px !important;
        padding: 45px 18px !important;
        background-size: cover !important;
        background-position: center !important;
    }

    header h1 {
        width: 100% !important;
        max-width: 100% !important;
        font-size: 32px !important;
        line-height: 1.2 !important;
        margin: 0 !important;
    }

    header p {
        font-size: 17px !important;
        line-height: 1.5 !important;
        margin-top: 18px !important;
    }


    /* NAVIGATION */

    nav {
        width: 100% !important;
        padding: 16px 5px !important;
    }

    nav a {
        display: inline-block !important;
        margin: 6px 7px !important;
        font-size: 14px !important;
    }


    /* HERO */

    .hero {
        width: 100% !important;
        padding: 65px 20px !important;
    }

    .hero h2 {
        font-size: 32px !important;
        line-height: 1.2 !important;
        margin-bottom: 20px !important;
    }

    .hero p {
        width: 100% !important;
        max-width: 100% !important;
        font-size: 17px !important;
        line-height: 1.7 !important;
    }

    .button {
        display: inline-block !important;
        padding: 15px 28px !important;
        font-size: 16px !important;
    }


    /* SERVICES */

    .services {
        width: 100% !important;
        padding: 60px 12px !important;
    }

    .services h2 {
        font-size: 36px !important;
        margin-bottom: 35px !important;
    }

    .service-container {
        display: grid !important;
        grid-template-columns: repeat(2,minmax(0,1fr)) !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        gap: 15px !important;
    }

    .service {
        width: 100% !important;
        max-width: 100% !important;
        padding: 20px 15px !important;
        margin: 0 !important;
    }

    .service details {
        width: 100% !important;
    }

    .service details summary {
        width: 100% !important;
        font-size: 27px !important;
        line-height: 1.25 !important;
        padding: 15px 5px !important;
    }

    .service img,
    .aluminum-img {
        width: 100% !important;
        height: 48px !important;
        object-fit: contain !important;
        display: inline-block !important;
        margin-bottom: 18px !important;
    }

    .glass-gallery {
        width: 100% !important;
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    .glass-gallery img {
        width: 100% !important;
        height: 300px !important;
        object-fit: contain !important;
    }

    .service h3 {
        font-size: 25px !important;
    }

    .service p {
        font-size: 16px !important;
        line-height: 1.7 !important;
    }


    /* WHY CHOOSE US */

    .why-choose-us {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        padding: 70px 18px !important;
    }

    .why-heading {
        width: 100% !important;
        margin-bottom: 65px !important;
    }

    .why-heading h2 {
        font-size: 38px !important;
        line-height: 1.1 !important;
    }

    .why-item,
    .why-left,
    .why-right {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        display: flex !important;
        flex-direction: row !important;
        gap: 25px !important;
        margin-bottom: 70px !important;
    }

    .why-content {
        width: 100% !important;
    }

    .why-image {
        width: 100% !important;
        height: 260px !important;
    }

    .why-content h3 {
        font-size: 29px !important;
        line-height: 1.2 !important;
    }

    .why-content p {
        width: 100% !important;
        max-width: 100% !important;
        font-size: 16px !important;
        line-height: 1.8 !important;
    }


    /* =========================
   ABOUT - MOBILE
========================= */

.about {
    width: 100% !important;
    padding: 50px 15px !important;
}

.about-container {
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 15px !important;
}

.about-content {
    width: 55% !important;
    max-width: 55% !important;
    text-align: left !important;
}

.about-content h2 {
    font-size: 28px !important;
    line-height: 1.15 !important;
}

.about-content h3 {
    font-size: 17px !important;
    line-height: 1.35 !important;
}

.about-content p {
    width: 100% !important;
    max-width: 100% !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
}

.about-image {
    width: 45% !important;
    max-width: 45% !important;
}

.about-image::before {
    display: none !important;
}

.about-image img {
    width: 100% !important;
    height: 230px !important;
    max-height: 230px !important;
    object-fit: cover !important;
    display: block !important;
}

    /* CONTACT */

    .contact {
        width: 100% !important;
        padding: 65px 20px !important;
    }

    .contact h2 {
        font-size: 36px !important;
    }

    .contact p {
        width: 100% !important;
        margin: 18px 0 !important;
        font-size: 17px !important;
        line-height: 1.7 !important;
    }

    .location-box {
        width: 100% !important;
        padding: 10px 0 !important;
    }

    .location-button {
        max-width: 100% !important;
        padding: 14px 20px !important;
    }


    /* WHATSAPP */

    .whatsapp-float {
        right: 15px !important;
        bottom: 15px !important;
        padding: 11px 16px !important;
        font-size: 14px !important;
    }


    /* FOOTER */

    footer {
        width: 100% !important;
        padding: 22px 15px !important;
    }

    footer p {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }

}

/* =========================================
   FINAL MOBILE FIX — DO NOT CHANGE DESKTOP
========================================= */

@media (max-width: 700px) {

    /* BASIC MOBILE RESET */
    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    * {
        box-sizing: border-box;
    }


    /* =========================
       HEADER / HERO IMAGE
    ========================= */

    header {
        width: 100% !important;
        min-height: 500px !important;
        padding: 40px 20px !important;
        background-size: cover !important;
        background-position: center center !important;
    }

    header h1 {
        width: 100% !important;
        max-width: 100% !important;
        font-size: 34px !important;
        line-height: 1.15 !important;
    }

    header p {
        width: 100% !important;
        font-size: 17px !important;
        line-height: 1.6 !important;
    }


    /* =========================
       NAVIGATION
    ========================= */

    nav {
        width: 100% !important;
        padding: 15px 8px !important;
    }

    nav a {
        display: inline-block !important;
        margin: 6px 7px !important;
        font-size: 14px !important;
    }


    /* =========================
       HERO CONTENT
    ========================= */

    .hero {
        width: 100% !important;
        padding: 65px 20px !important;
    }

    .hero-content {
        width: 100% !important;
        max-width: 100% !important;
        padding: 25px 5px !important;
    }

    .hero-label {
        font-size: 11px !important;
        letter-spacing: 3px !important;
    }

    .hero-content h1 {
        width: 100% !important;
        font-size: 38px !important;
        line-height: 1.12 !important;
        letter-spacing: 1px !important;
    }

    .hero-content p {
        width: 100% !important;
        max-width: 100% !important;
        font-size: 15px !important;
        line-height: 1.7 !important;
    }

    .hero h2 {
        font-size: 32px !important;
        line-height: 1.2 !important;
    }

    .hero p {
        font-size: 17px !important;
        line-height: 1.7 !important;
    }


    /* =========================
       SERVICES
       ONE CARD PER ROW
    ========================= */

    .services {
        width: 100% !important;
        padding: 60px 15px !important;
    }

    .services h2 {
        font-size: 34px !important;
        line-height: 1.2 !important;
        margin-bottom: 35px !important;
    }

    .service-container {
        display: grid !important;
        grid-template-columns: 1fr !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        gap: 30px !important;
    }

    .service {
        width: 100% !important;
        max-width: 100% !important;
        padding: 18px !important;
        margin: 0 !important;
    }

    .service img,
    .aluminum-img {
        width: 100% !important;
        height: auto !important;
        max-height: 330px !important;
        object-fit: contain !important;
        display: block !important;
        margin: 0 auto 18px !important;
    }

    .service details {
        width: 100% !important;
    }

    .service details summary {
        width: 100% !important;
        font-size: 25px !important;
        line-height: 1.25 !important;
        padding: 12px 5px !important;
    }

    .service h3 {
        font-size: 23px !important;
        line-height: 1.3 !important;
    }

    .service p {
        width: 100% !important;
        font-size: 16px !important;
        line-height: 1.7 !important;
    }


    /* =========================
       GLASS GALLERY
    ========================= */

    .glass-gallery {
        display: grid !important;
        grid-template-columns: 1fr !important;
        width: 100% !important;
        gap: 12px !important;
        margin: 20px 0 !important;
    }

    .glass-gallery img {
        width: 100% !important;
        height: auto !important;
        max-height: 330px !important;
        object-fit: contain !important;
    }


    /* =========================
       WHY CHOOSE US
       STACK IMAGE + TEXT
    ========================= */

    .why-choose-us {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        padding: 70px 18px !important;
    }

    .why-heading {
        width: 100% !important;
        margin-bottom: 60px !important;
    }

    .why-heading h2 {
        width: 100% !important;
        font-size: 36px !important;
        line-height: 1.1 !important;
        letter-spacing: 2px !important;
    }

    .why-item,
    .why-left,
    .why-right {
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 28px !important;
        margin: 0 0 70px 0 !important;
    }

    .why-content {
        width: 100% !important;
        max-width: 100% !important;
        order: 1 !important;
    }

    .why-image {
        width: 100% !important;
        height: auto !important;
        max-height: 300px !important;
        overflow: hidden !important;
        order: 2 !important;
    }

    .why-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .why-content h3 {
        width: 100% !important;
        font-size: 28px !important;
        line-height: 1.2 !important;
    }

    .why-content p {
        width: 100% !important;
        max-width: 100% !important;
        font-size: 15px !important;
        line-height: 1.8 !important;
    }


    /* =========================
       ABOUT
    ========================= */

    .about {
        width: 100% !important;
        padding: 70px 20px !important;
    }

    .about-container {
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 45px !important;
    }

    .about-content {
        width: 100% !important;
        max-width: 100% !important;
        text-align: left !important;
    }

    .about-content h2 {
        font-size: 36px !important;
        line-height: 1.15 !important;
    }

    .about-content h3 {
        font-size: 20px !important;
        line-height: 1.4 !important;
    }

    .about-content p {
        width: 100% !important;
        max-width: 100% !important;
        font-size: 16px !important;
        line-height: 1.8 !important;
    }

    .about-image {
        width: 100% !important;
        max-width: 100% !important;
    }

    .about-image::before {
        display: none !important;
    }

    .about-image img {
        width: 100% !important;
        height: auto !important;
        max-height: 350px !important;
        object-fit: cover !important;
    }


    /* =========================
       CONTACT
    ========================= */

    .contact {
        width: 100% !important;
        padding: 65px 20px !important;
    }

    .contact h2 {
        font-size: 34px !important;
        line-height: 1.2 !important;
    }

    .contact p {
        width: 100% !important;
        margin: 18px 0 !important;
        font-size: 16px !important;
        line-height: 1.7 !important;
    }

    .location-box {
        width: 100% !important;
        margin-top: 30px !important;
    }

    .location-button {
        max-width: 100% !important;
        padding: 14px 20px !important;
    }


    /* =========================
       WHATSAPP
    ========================= */

    .whatsapp-float {
        right: 15px !important;
        bottom: 15px !important;
        padding: 11px 15px !important;
        font-size: 14px !important;
    }


    /* =========================
       FOOTER
    ========================= */

    footer {
        width: 100% !important;
        padding: 22px 15px !important;
    }

    footer p {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }

}

/* =========================================
   MOBILE SERVICES + WHY CHOOSE US
   ONLY — MAX WIDTH 700px
========================================= */

@media (max-width: 700px) {

   /* =========================================
   MOBILE SERVICES ONLY
   ONE SERVICE + TWO PICTURES PER ROW
========================================= */

@media (max-width: 700px) {

    .service-container {
        display: grid !important;
        grid-template-columns: 1fr !important;
        width: 100% !important;
        max-width: 100% !important;
        gap: 30px !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .service {
        width: 100% !important;
        max-width: 100% !important;
        padding: 15px !important;
        margin: 0 !important;
    }

    /* TWO LARGE PICTURES PER ROW */
.glass-gallery {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    width: 100% !important;
    margin: 15px 0 !important;
}

.glass-gallery img {
    width: 100% !important;
    height: 220px !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 !important;
    border-radius: 10px !important;
    background: #f5f5f5;
}


    /* =========================
       WHY CHOOSE US
       TEXT | IMAGE
       IMAGE | TEXT
    ========================= */

    .why-item {
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-bottom: 65px !important;
    }

    .why-content {
        width: 55% !important;
        max-width: 55% !important;
    }

    .why-image {
        width: 45% !important;
        height: 190px !important;
        overflow: hidden !important;
        flex-shrink: 0 !important;
    }

    .why-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        display: block !important;
    }


    /* ALTERNATE EVERY OTHER ITEM */

    .why-item:nth-child(even) {
        flex-direction: row-reverse !important;
    }

    .why-content h3 {
        font-size: 24px !important;
        line-height: 1.2 !important;
        margin: 10px 0 15px !important;
    }

    .why-content p {
        width: 100% !important;
        max-width: 100% !important;
        font-size: 14px !important;
        line-height: 1.7 !important;
    }

}

/* =========================================
   MOBILE SERVICES - FINAL
========================================= */

@media (max-width: 700px) {

    .service-container {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 35px !important;
        width: 100% !important;
        padding: 10px !important;
        box-sizing: border-box !important;
    }

    .service {
        width: 100% !important;
        padding: 18px !important;
        box-sizing: border-box !important;
    }

    /* TWO LARGE IMAGES SIDE-BY-SIDE */
    .glass-gallery {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px !important;
        width: 100% !important;
        margin: 20px 0 !important;
    }

    .glass-gallery img {
        width: 100% !important;
        height: 230px !important;
        object-fit: contain !important;
        border-radius: 10px !important;
        display: block !important;
    }

    /* SERVICE TITLE */
    .service details summary {
        font-size: 28px !important;
        line-height: 1.25 !important;
        padding: 15px 5px !important;
    }

    /* SERVICE DESCRIPTION */
    .service p {
        font-size: 18px !important;
        line-height: 1.7 !important;
    }

}

@media (max-width: 700px) {

    header {
        background-size: 100%;
        background-repeat: no-repeat;
        background-position: center;
        background-color: #111;
    }

    header h1 {
        text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
    }

    header p {
        color: white;
        text-shadow: 2px 2px 5px rgba(0,0,0,0.8);
    }

}

@media (max-width: 700px) {

    .service:first-child .glass-gallery {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px !important;
    }

    .service:first-child .glass-gallery img {
        width: 100% !important;
        height: 230px !important;
        object-fit: contain !important;
    }

}

.aluminum-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.aluminum-gallery .aluminum-img {
    width: 100% !important;
    height: 260px !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 !important;
}

@media (max-width: 700px) {
    .aluminum-gallery .aluminum-img {
        height: 210px !important;
    }
}

.aluminum-gallery {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 15px !important;
}

.aluminum-gallery .aluminum-img {
    width: 100% !important;
    height: 280px !important;
    margin: 0 !important;
    display: block !important;
    object-fit: contain !important;
}

.aluminum-gallery {
   background: red!important;
}

.TEST-CHECK {
   background: red !important;
}
