/* ========== RESET SECTION ========== */
/* === * for all HTML pages===*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ==========BODY SECTION ========== */
body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #d8e7ec;
    color: #333;
}

/* ================= TAGLINE ================= */
/*.tagline {
    font-family: 'Great Vibes', cursive;
    font-size: 26px;
    font-weight: 400;
    color: #8b6b3e;
    margin-top: 4px;
    letter-spacing: 0.5px;
   }
*/
.tagline {
    font-family: "Lucida Calligraphy", "Lucida Handwriting", cursive;
    font-size: 32px;
    font-weight: normal;
    color: #8b6b3e;
    margin-top: 6px;
    letter-spacing: 0.5px;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.subtitle-badge {
    display: inline-block;
    padding: 7px 20px;
    background: rgba(231, 230, 231, 0.8);
    border-radius: 45px;
    font-family: 'Cinzel Decorative', serif;
    font-size: 22px;
    color: #8a6b3f;
    backdrop-filter: blur(6px);
    /* premium glass effect */
}


/* ==========LOGO/BRAND ========== */
.logo {
    text-align: center;
}

.logo h1 {
    font-family: 'Alfa Slab One', serif;
    font-weight: 900;
    font-size: 66px;
    letter-spacing: 2px;
    color: #ba946182;

    -webkit-text-stroke: 2px #ffffff;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: geometricPrecision;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.25);
}

.outline-text {
    color: #d3c4b4;
    /* text color */
    -webkit-text-stroke: 2px white;
    font-weight: 800;
}

/* ================= HEADER ================= */
.main-header {
    background: rgb(210, 210, 202);
    padding: 20px 0 0;
}

/* ================= NAVBAR ================= */
.navbar {
    background: linear-gradient(to bottom, #06304e, #0f6ea8);
    padding: 14px 0;
    margin-top: 15px;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;

    border-bottom: 5px solid #d4af37;
    box-shadow: 0 4px 12px rgba(174, 108, 108, 0.25);
}

/* ================= NAV LINKS ================= */
.navbar a {
    color: #ffffff;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 10px;
    transition: color 0.3s ease;
}


/* Hover only */
.navbar a:hover {
    color: #d4af37;
}

.navbar a {
    position: relative;
}

.navbar a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 3px;
    background-color: rgb(221, 175, 82);
    transition: width 0.3s ease;
}

/* On hover & click */
.navbar a:hover::after,
.navbar a:focus::after,
.navbar a.active::after {
    width: 100%;
}



/* ==========RESPONCE SECTION ========== */
@media (max-width: 600px) {
    .navbar a {
        display: block;
        margin: 10px 0;
    }
}

/* ===== CONTACT HERO ===== */
.contact-hero {
    background: linear-gradient(rgba(10, 61, 98, 0.9), rgba(30, 39, 46, 0.9)),
        url("images/construction-bg.jpg");
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 90px 20px;
}

.contact-hero h2 {
    font-size: 40px;
    margin-bottom: 15px;
}

.contact-hero p {
    max-width: 700px;
    margin: auto;
    font-size: 17px;
    line-height: 1.6;
}

/* ===== INFO CARDS ===== */


.info-row p {
    color: #eaeaea;
}

.info-row a {
    color: inherit;
    /* inherit parent color */
}



.contact-card span {
    font-size: 28px;
}

.contact-card h4 {
    margin: 12px 0 6px;
    color: #0a3d62;
}

/* ===== MAIN CONTACT ===== */


.contact-wrapper {
    max-width: 1100px;
    margin: 60px auto 0;
    display: flex;
    gap: 50px;
}


.contact-text h3 {
    color: #0a3d62;
    margin-bottom: 15px;
}

.contact-text ul {
    margin-top: 15px;
    list-style: none;
}

.contact-text li {
    margin-bottom: 8px;
}

/* FORM */

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 14px;
    border: 1px solid #ccc;
}

.contact-form button {
    width: 100%;
    padding: 14px;
    background-color: #0a3d62;
    color: white;
    border: none;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

/* MAP */


/* RESPONSIVE */
@media (max-width: 900px) {
    .contact-cards {
        flex-direction: column;
        align-items: center;
    }

    .contact-wrapper {
        flex-direction: column;
    }

    .contact-hero h2 {
        font-size: 30px;
    }
}

/* ===== CONTACT SECTION (PROFESSIONAL) ===== */


/* Heading */
.contact-heading {
    text-align: center;
    margin-bottom: 50px;
}

.contact-heading h2 {
    font-size: 36px;
    color: #0a3d62;
    margin-bottom: 10px;
}

.contact-heading p {
    max-width: 750px;
    margin: auto;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* LEFT PANEL */
.contact-info-panel h3 {
    font-size: 28px;
    margin-bottom: 35px;
}

.info-row {
    display: flex;
    gap: 16px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.info-row span {
    font-size: 24px;
}

.info-row p {
    margin-top: 4px;
    font-size: 15px;
    line-height: 1.6;
    color: #dff9fb;
}

/* Form */
.form-group {
    margin-bottom: 18px;
}

.contact-form-panel input,
.contact-form-panel textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.contact-form-panel input:focus,
.contact-form-panel textarea:focus {
    border-color: #0a3d62;
    outline: none;
}

/* Button */
.contact-form-panel button {
    width: 100%;
    padding: 15px;
    background-color: #0a3d62;
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form-panel button:hover {
    background-color: #073a5c;
    transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-info-panel,
    .contact-form-panel {
        padding: 40px 25px;
    }

    .contact-heading h2 {
        font-size: 30px;
    }
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 80px;
}

.social-links img {
    width: 60px;
    height: 60px;
    transition: transform 0.3s ease;
}

.social-links img:hover {
    transform: scale(1.15);
}

/* Center social icons inside blue panel */
.contact-info-panel .social-links {
    display: flex;
    justify-content: center;
    /* 👈 THIS centers them */
    align-items: center;
    gap: 16px;
    margin-top: 25px;
}

/* ===map section===*/

/*Google Map – rounded, centered*/
/* === MAP SECTION (FINAL) === */


/* Directions Button */
.directions-btn {
    margin-top: 15px;
}




html {
    scroll-behavior: smooth;
}

/* foooter */
/* ===== FOOTER ===== */

.footer {
    background: linear-gradient(135deg,
            #0b1220 0%,
            #0f172a 70%,
            #1a2238 100%);
    color: #ffffff;
    padding: 30px 20px 20px;
    margin-top: 0px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0px;
}

.footer-col p {
    color: #9ca3af;
    font-size: 17px;
    line-height: 1.6;
    margin: 15px 0;
}

/* Brand */
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.brand h2 {
    font-size: 25px;
    font-weight: 700;
}

.brand span {
    font-size: 20px;
    letter-spacing: 2px;
    color: #9ca3af;
}

/* Headings */
.footer-col h3 {
    color: #f59e0b;
    text-transform: uppercase;
    font-size: 20px;
    margin-bottom: 15px;
    margin-top: 0;
    letter-spacing: 1px;
    font-family: 'Alfa Slab One', serif;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 1.5px;


}

.footer-col h4 {
    color: #f59e0b;
}

footer {
    background-color: #261e2e;
    color: #ffffff;
    text-align: center;
    padding: 12px 15px;
    margin-top: 10px;
}

footer p {
    font-size: 15px;
    letter-spacing: 0.6px;
}

/* Lists */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
    color: #9ca3af;
    font-size: 19px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #9ca3af;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

/* Social Icons */
.social-icons a {
    color: #9ca3af;
    margin-right: 15px;
    font-size: 16px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #f59e0b;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 60px;
    /* 👈 control size here */
    height: 60px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
}


/* Contact */
.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.contact-list i {
    color: #f59e0b;
    /* yellow icon */
    font-size: 18px;
    margin-top: 3px;
}

.contact-list span {
    color: #9ca3af;
    font-size: 19px;
    line-height: 1.5;
}


/* Bottom */
.footer-bottom {
    border-top: 1px solid #1f2933;
    margin-top: 40px;
    padding-top: 15px;
    text-align: center;
    font-size: px;
    color: #9ca3af;
}

.footer {
    background: linear-gradient(135deg,
            #0b1220 0%,
            #0f172a 50%,
            #111827 100%);
}

/* HERO SECTION */


.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h2 {
    font-size: 48px;
    margin-bottom: 15px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.3;
    margin: 10px auto 0;
    max-width: 700px;
}

.hero-btn {
    padding: 12px 30px;
    background: #ff6a00;
    color: #a65c5c;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s ease;
}

.hero-btn:hover {
    background: #e65c00;
}


/* GALLERY SECTION */
.gallery-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    padding: 4px 8%;
    margin-bottom: 20px;

}

.gallery-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Zoom Effect */
.gallery-card:hover img {
    transform: scale(1.1);
}

/* Overlay */
.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    color: rgb(207, 196, 196);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    text-align: center;
}

.gallery-card:hover .overlay {
    opacity: 1;
}

.overlay h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.overlay p {
    font-size: 20px;
}

.hero-section {
    position: relative;
    height: 65vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

/* CSS */
.button-15 {
    display: inline-block;
    /* instead of block */
    padding: 14px 36px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;

    background: linear-gradient(135deg, #eaa83e, #ae3555);
    color: #ffffff;
    margin-top: 15px;
    border: none;
    border-radius: 40px;
    /* modern rounded */
    text-decoration: none;

    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(35, 34, 25, 0.25);
}

/* Hover */
.button-15:hover {
    background: linear-gradient(135deg, #0e4168, #3f91d3);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(84, 36, 36, 0.35);
}

/* Active (click effect) */
.button-15:active {
    transform: translateY(0);
    box-shadow: 0 5px 15px rgba(31, 27, 27, 0.2);
}

/* Focus accessibility */
.button-15:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(66, 161, 236, 0.4);
}

/* Video */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

/* Dark overlay */
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

/* Content on top */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #e6e4e4;
    max-width: 800px;
    padding: 20px;

}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.6rem;
    color: #e0e0e0;
}

/* zoom feature for photo gallary*/

/* ================= IMAGE MODAL ================= */
.image-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
    z-index: 9999;
}

.image-modal.active {
    opacity: 1;
    visibility: visible;
}

.image-modal img {
    max-width: 85%;
    max-height: 75vh;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.modal-content-text {
    text-align: center;
    color: #fff;
    margin-top: 20px;
}

.modal-content-text h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.modal-content-text p {
    font-size: 18px;
    margin: 4px 0;
}

.close-btn {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

/* ================= FILTER BUTTONS ================= */

.filter-buttons {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 24px;
    margin-top: 40px;
}

.filter-btn {
    padding: 15px 28px;
    margin: 10px;
    border: none;
    background: linear-gradient(135deg, #e5a339, #e1c914);
    font-weight: 600;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.3s ease;
    ;
}

.filter-btn:hover {
    background: linear-gradient(135deg, #0e4168, #3f91d3);
    color: #fff;
}

.filter-btn.active {
    background: linear-gradient(135deg, #0e4168, #3f91d3);
    color: #fff;
}

/* ===== UNIVERSAL HERO ===== */
.page-hero {
    position: relative;
    height: 66vh;

    background-image: url("../images/Interior_Projects/inte_project7.jpeg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

/* Dark overlay */
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

/* Text above overlay */
.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-size: 18px;
}

.page-hero-content h3 {
    font-size: 3rem;
    margin-bottom: 10px;
    font-size: 18px;
    color: #f29719
}

.page-hero-content p {
    font-size: 1.4rem;
    color: #e0e0e0;
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.3;
    margin: 10px auto 0;
    max-width: 700px
}


.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-hero-content p {
    font-size: 1.4rem;
    color: #e0e0e0;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: #f4f6f8;
    padding: 80px 20px;
}

.contact-container {
    max-width: 1100px;
    margin: -120px auto 0;
    display: flex;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    margin-top: 3px;
    margin-bottom: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
}

/* LEFT PANEL */
.contact-info-panel {
    flex: 1;
    background: linear-gradient(to bottom, #07283f, #906241);
    color: #fff;
    padding: 55px;
}

.contact-info-panel h3 {
    font-size: 45px;
    margin-bottom: 35px;
}

.info-row {
    display: flex;
    gap: 16px;
    margin-bottom: 15px;
}

.info-row p {
    font-size: 20px;
    line-height: 1.6;
    color: #dff9fb;
}

.contact-info-panel a {
    color: #f6d365;
    text-decoration: none;
}

.contact-info-panel a:hover {
    text-decoration: underline;
}

/* SOCIAL */
.social-links {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 30px;
}

.social-links img {
    width: px;
    transition: transform 0.3s ease;
}

.social-links img:hover {
    transform: scale(1.15);
}

/* RIGHT PANEL */
.contact-form-panel {
    flex: 1.2;
    padding: 55px;
}

.contact-form-panel h3 {
    font-size: 45px;
    color: #0a3d62;
    margin-bottom: 35px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: none;
    background: #f3f6f9;
    margin-bottom: 18px;
    transition: 0.3s;
    font-size: 19px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(11, 60, 93, 0.2);
}

/* BUTTON – MATCH GALLERY */
.contact-form-panel button {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #eaa83e, #ae3555);
    border-radius: 30px;
    border: none;
    color: #fff;
    font-weight: 600;
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form-panel button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

/* ===== MAP ===== */
.map-wrapper {
    margin: 60px auto;
    text-align: center;
}

.map-container {
    max-width: 900px;
    margin: auto;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.map-container iframe {
    width: 100%;
    height: 420px;
    border: 0;
}

.directions-btn a {
    display: inline-block;
    /* instead of block */
    padding: 14px 36px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;

    background: linear-gradient(135deg, #eaa83e, #ae3555);
    color: #ffffff;
    margin-top: 15px;
    border: none;
    border-radius: 40px;
    /* modern rounded */
    text-decoration: none;

    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(35, 34, 25, 0.25);
}

.directions-btn a:hover {
    background: linear-gradient(135deg, #0e4168, #3f91d3);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(84, 36, 36, 0.35);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
        margin-top: -70px;
    }

    .contact-info-panel,
    .contact-form-panel {
        padding: 35px 25px;
    }

    .page-hero-content h1 {
        font-size: 2.2rem;
    }
}

/*=====our products and services section======*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #d8e7ec;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    background: #f4f6f8;
    padding: 80px 20px;
}

.services-section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.services-section-heading .label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #d4af37;
    margin-bottom: 10px;
}

.services-section-heading h2 {
    font-family: 'Alfa Slab One', serif;
    font-size: 38px;
    color: #0a3d62;
    margin-bottom: 12px;
}

.services-section-heading p {
    font-size: 16px;
    color: #555;
    max-width: 600px;
    margin: auto;
    line-height: 1.6;
}

/* ===== SERVICE BLOCK ===== */
.service-block {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1370px;
    margin: 0 auto 60px;
    padding: 80px 60px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.13);
}

/* Alternate: image on left */
.service-block.reverse {
    flex-direction: row-reverse;
}

/* TEXT SIDE */
.service-text {
    flex: 1;
}

.service-icon-title {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.service-icon-box {
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, #d4af37, #eaa83e);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #0a3d62;
    flex-shrink: 0;
}

.service-text h3 {
    font-family: 'Alfa Slab One', serif;
    font-size: 30px;
    color: #0a3d62;
    -webkit-text-stroke: 0.1px rgb(239, 246, 248);
}

.service-text p {
    font-size: 22px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 22px;
}

/* CHECKLIST */
.service-checklist {
    list-style: none;
    margin-bottom: 28px;
}

.service-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    color: #333;
    margin-bottom: 10px;
}

.service-checklist li i {
    color: #d4af37;
    font-size: 20px;
}

/* LINK */
.discuss-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #0a3d62;
    text-decoration: none;
    border-bottom: 2px solid #0a3d62;
    padding-bottom: 4px;
    transition: color 0.3s, border-color 0.3s;
}

.discuss-link:hover {
    color: #d4af37;
    border-color: #d4af37;
}

/* IMAGE SIDE */
.service-image {
    flex: 1;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 375px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 12px 12px 0px #d4af37;
    display: block;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 860px) {

    .service-block,
    .service-block.reverse {
        flex-direction: column;
    }

    .service-image img {
        height: 240px;
        box-shadow: 8px 8px 0px #d4af37;
    }

    .service-block {
        padding: 35px 25px;
    }
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(135deg, #0a3d62 0%, #07283f 50%, #906241 100%);
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 5px;
}

/* Decorative background circles */
.cta-banner::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.08);
    top: -100px;
    left: -100px;
}

.cta-banner::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.08);
    bottom: -80px;
    right: -80px;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: auto;
}

.cta-label {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #d4af37;
    margin-bottom: 20px;
}

.cta-content h2 {
    font-family: 'Alfa Slab One', serif;
    font-size: 42px;
    /* Adjust this value */
    font-weight: 6;
    letter-spacing: 1px;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.2;


    -webkit-text-stroke: px #ffffff;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: geometricPrecision;
    text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.005);
}

.cta-sub {
    font-size: 22px;
    color: #c8d6e5;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* BUTTONS */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.cta-btn-primary {
    padding: 16px 38px;
    background: linear-gradient(135deg, #eaa83e, #d4af37);
    color: #0a3d62;
    font-size: 21px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 40px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #f0b84a, #e0c040);
}

.cta-btn-secondary {
    padding: 16px 38px;
    background: transparent;
    color: #ffffff;
    font-size: 21px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin-bottom: 1px;
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .cta-content h2 {
        font-size: 28px;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        text-align: center;
    }
}

/* ═══════════════════════════════════════
   ✨ PREMIUM DESIGN SYSTEM — GLOBAL
   ═══════════════════════════════════════ */

/* ── PAGE PRELOADER ── */
.page-preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: linear-gradient(135deg, #0d1f35, #1a3558);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
    animation: preloaderPulse 1.4s ease-in-out infinite;
    border-radius: 20px;
    object-fit: contain;
}

.preloader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(201, 168, 76, 0.2);
    border-top-color: #c9a84c;
    border-radius: 50%;
    animation: preloaderSpin 0.8s linear infinite;
}

.preloader-text {
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: 'DM Sans', sans-serif;
}

@keyframes preloaderSpin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes preloaderPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1
    }

    50% {
        transform: scale(1.08);
        opacity: 0.7
    }
}

/* ── BACK TO TOP BUTTON ── */
.back-to-top {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 8500;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c9a84c, #e2c97e);
    color: #1a3558;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 12px 32px rgba(201, 168, 76, 0.55);
}

/* ── BUTTON SHIMMER EFFECT ── */
.btn-shimmer {
    position: relative;
    overflow: hidden;
}

.btn-shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent 0%,
            rgba(255, 255, 255, 0.35) 50%,
            transparent 100%);
    transition: none;
}

.btn-shimmer:hover::after {
    animation: shimmerSweep 0.7s ease forwards;
}

@keyframes shimmerSweep {
    0% {
        left: -100%;
    }

    100% {
        left: 150%;
    }
}

/* ── COUNTER ANIMATION FORMATTING ── */
[data-count-target] {
    font-variant-numeric: tabular-nums;
}

/* ── SECTION DIVIDERS ── */
.section-divider {
    position: relative;
    width: 100%;
    height: 0;
    overflow: visible;
    z-index: 5;
}

.section-divider::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: inherit;
}

.section-divider-wave {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.section-divider-wave svg {
    display: block;
    width: 100%;
    height: 40px;
}

.section-divider-angle-down {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 60%);
    margin-bottom: -30px;
    position: relative;
    z-index: 2;
}

.section-divider-angle-up {
    clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 100%);
    margin-top: -30px;
    position: relative;
    z-index: 2;
}

/* ── BADGE PULSE ── */
@keyframes badgePulse {
    0% {
        box-shadow: 0 2px 10px rgba(201, 168, 76, 0.4);
    }

    50% {
        box-shadow: 0 4px 20px rgba(201, 168, 76, 0.7), 0 0 0 4px rgba(201, 168, 76, 0.1);
    }

    100% {
        box-shadow: 0 2px 10px rgba(201, 168, 76, 0.4);
    }
}

.badge-pulse {
    animation: badgePulse 2.5s ease-in-out infinite;
}

/* ── ENHANCED STAGGERED REVEALS ── */
.reveal-stagger {
    opacity: 0;
    transform: translateY(36px) scale(0.97);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-stagger.in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* ── TEXT GRADIENT (Hero titles etc.) ── */
.text-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #e2c97e 50%, #c9a84c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── FROSTED GLASS CARD ── */
.glass-card {
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

/* ── DARK SECTION NOISE TEXTURE ── */
.noise-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
    z-index: 0;
}


@media (max-width: 768px) {

    /* Base Resets & Layout */
    html,
    body {
        overflow-x: hidden !important;
        width: 100vw !important;
        position: relative !important;
    }

    /* Layout Adjustments - Force stacking on all complex containers */
    .services-grid,
    .proj-grid,
    .int-grid,
    .test-grid,
    .gallery-mosaic,
    .award-photos-grid,
    .vm-grid,
    .owner-grid,
    .story-section,
    .contact-wrapper,
    .service-block,
    .contact-container,
    .hero-content,
    .int-hero-content,
    .page-hero,
    .hero,
    .why-section,
    .renown-card.featured,
    .footer-container,
    .cert-strip,
    .certs-strip,
    .hero-btns,
    .cta-actions {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Padding Reduction */
    section,
    .services-section,
    .civil-section,
    .interior-section,
    .test-section,
    .awards-section,
    .story-section,
    .owner-section,
    .cta-banner,
    .gallery-preview,
    .why-left-panel,
    .contact-info-panel,
    .contact-form-panel,
    .renown-section,
    .sec-header {
        padding: 40px 15px !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
    }

    /* Typography Overrides - Fluid & Mobile Friendly */
    h1,
    .hero-h1 {
        font-size: clamp(1.8rem, 8vw, 2.4rem) !important;
        line-height: 1.1 !important;
        margin-bottom: 15px !important;
    }

    h2,
    .sec-title,
    .cta-banner h2 {
        font-size: 1.7rem !important;
        line-height: 1.2 !important;
    }

    h3,
    .sc-text h3 {
        font-size: 1.3rem !important;
    }

    p,
    .hero-sub,
    .sec-sub,
    .sb-text p {
        font-size: 0.95rem !important;
        line-height: 1.65 !important;
    }

    /* Header & Mobile Menu (Critical Ph 1) */
    .main-header {
        position: relative !important;
        z-index: 10001 !important;
        padding: 10px 0 !important;
        background: #fff !important;
        min-height: 70px !important;
    }

    .logo {
        padding: 0 15px 0 70px !important;
        /* Make room for left hamburger */
        text-align: left !important;
        width: 100% !important;
    }

    .logo h1 {
        font-size: 24px !important;
        -webkit-text-stroke: 1px white !important;
        line-height: 1 !important;
        margin: 0 !important;
        letter-spacing: 0.5px !important;
    }

    .subtitle-badge {
        font-size: 11px !important;
        padding: 2px 8px !important;
        margin-top: 4px !important;
    }

    .tagline {
        font-size: 12px !important;
        line-height: 1.2 !important;
    }

    .hamburger {
        display: flex !important;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 50% !important;
        left: 15px !important;
        /* Moved to left */
        right: auto !important;
        transform: translateY(-50%) !important;
        z-index: 10002;
        font-size: 1.2rem !important;
        background: rgba(226, 201, 126, 0.95) !important;
        /* Premium Light Gold */
        color: #1a3558 !important;
        /* Dark Blue Icon */
        width: 44px !important;
        height: 44px !important;
        padding: 0 !important;
        border-radius: 12px !important;
        border: 1px solid rgba(201, 168, 76, 0.4) !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
        cursor: pointer;
        transition: all 0.3s var(--ease) !important;
        backdrop-filter: blur(8px) !important;
    }

    .hamburger:active {
        transform: translateY(-50%) scale(0.92) !important;
        background: #1a3558 !important;
    }

    .hamburger.active {
        background: #d4af37 !important;
        color: #1a3558 !important;
        border-color: #fff !important;
    }

    .navbar {
        position: fixed !important;
        top: 0;
        left: -100% !important;
        width: 85% !important;
        height: 100vh !important;
        background: linear-gradient(135deg, #06304e, #0f6ea8) !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        padding: 100px 20px 40px !important;
        gap: 15px !important;
        transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
        z-index: 10000 !important;
        box-shadow: 10px 0 30px rgba(0, 0, 0, 0.5) !important;
    }

    .navbar.active {
        left: 0 !important;
    }

    .navbar a {
        font-size: 1.05rem !important;
        padding: 12px 15px !important;
        width: 100% !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        text-align: left !important;
    }

    /* Hero Fixes - Prevent merging with header */
    .hero,
    .int-hero,
    .detail-hero,
    .page-hero {
        height: auto !important;
        min-height: 480px !important;
        padding: 110px 0 50px !important;
        /* Increased top padding */
        align-items: center !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
    }

    .int-hero-bread,
    .hero-bread {
        top: 85px !important;
        /* Move below navbar */
        left: 20px !important;
        font-size: 0.7rem !important;
    }

    .int-hero-content,
    .detail-hero-content {
        padding: 20px !important;
        width: 100% !important;
    }

    .int-hero-content h2,
    .detail-hero-content h1 {
        font-size: 1.8rem !important;
        margin-bottom: 20px !important;
    }

    .hero-content {
        padding: 40px 15px !important;
        text-align: center !important;
    }

    .hero-eyebrow {
        justify-content: center !important;
        margin-bottom: 20px !important;
    }

    .hero-btns {
        gap: 12px !important;
        width: 100% !important;
    }

    .hero-tags {
        justify-content: center !important;
        gap: 8px !important;
        margin-top: 20px !important;
    }

    .hero-tag {
        font-size: 0.75rem !important;
    }

    /* Trust Stats 2x2 Grid (Ph 2) */
    .trust-bar,
    .stats-bar,
    .feature-stats {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    }

    .trust-stat,
    .stat-item,
    .fstat {
        border-right: 1px solid rgba(255, 255, 255, 0.1) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    }

    .trust-stat:nth-child(2n),
    .stat-item:nth-child(2n),
    .fstat:nth-child(2n) {
        border-right: none !important;
    }

    /* Service Blocks (Ph 5 Fix) */
    .service-block {
        border-radius: 15px !important;
        margin-bottom: 30px !important;
        overflow: hidden !important;
    }

    .sb-image {
        height: 260px !important;
        width: 100% !important;
        padding: 0 !important;
    }

    .sb-image img {
        border-radius: 15px 15px 0 0 !important;
        box-shadow: none !important;
    }

    .sb-text {
        padding: 30px 20px !important;
        text-align: left !important;
    }

    .sb-checklist {
        margin-bottom: 25px !important;
    }

    .service-block.reverse {
        direction: ltr !important;
    }

    /* Project Masonry Fixes (Ph 3) */
    .proj-grid,
    .int-grid,
    .gallery-mosaic,
    .award-photos-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }

    .proj-card,
    .int-card,
    .g-tile,
    .award-photo-tile {
        width: 100% !important;
        height: auto !important;
        min-height: 240px !important;
    }

    .proj-thumb,
    .int-thumb {
        height: 220px !important;
    }

    /* Owner Section Stack (Ph 4) */
    .owner-grid {
        gap: 30px !important;
    }

    .owner-card {
        max-width: 100% !important;
    }

    .owner-right {
        text-align: left !important;
    }

    .owner-quote-block {
        padding: 20px !important;
    }

    /* Footer (Crucial Readability) */
    .footer-container {
        gap: 40px !important;
        text-align: center !important;
    }

    .brand,
    .social-icons {
        justify-content: center !important;
    }

    .contact-list li {
        text-align: left !important;
        align-items: flex-start !important;
    }

    /* Forms */
    .contact-wrapper {
        gap: 30px !important;
    }

    input,
    textarea {
        width: 100% !important;
        box-sizing: border-box !important;
        font-size: 16px !important;
    }

    /* Buttons Fluid */
    .btn-hero-primary,
    .btn-hero-ghost,
    .btn-cta-main,
    .btn-cta-gold,
    .btn-gold-fill,
    .btn-sm {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 0 12px 0 !important;
        justify-content: center !important;
    }

    /* Filter Pills Scroll Horizontal */
    .filter-tabs {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        gap: 12px !important;
        padding: 5px 5px 15px !important;
        margin-bottom: 20px !important;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start !important;
        scrollbar-width: none;
    }

    .filter-tabs::-webkit-scrollbar {
        display: none;
    }

    .filter-tab {
        flex: 0 0 auto !important;
        white-space: nowrap !important;
    }

    /* Disable Hover Effects on Touch */
    .service-card:hover,
    .proj-card:hover,
    .int-card:hover,
    .test-card:hover,
    .g-tile:hover {
        transform: none !important;
        box-shadow: var(--shadow-sm) !important;
    }

    /* Hide Elements */
    .hero-counters,
    .hero-scroll,
    .hc-card,
    .wa-tt {
        display: none !important;
    }

    .wa-float {
        width: 52px;
        height: 52px;
        bottom: 20px;
        right: 20px;
        font-size: 1.5rem;
    }

    /* ── Portfolio Section Accessibility ── */
    .gallery-grid,
    .proj-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .proj-card {
        min-height: auto !important;
        margin-bottom: 5px !important;
    }

    .proj-card:hover {
        transform: none !important;
    }

    /* Make overlay visible by default on mobile cards UNLESS in list view */
    .gallery-grid:not(.list-view) .card-overlay {
        opacity: 1 !important;
        background: linear-gradient(to top, rgba(13, 31, 53, 0.85) 0%, rgba(13, 31, 53, 0.45) 100%) !important;
        display: flex !important;
        padding-bottom: 20px !important;
        pointer-events: none !important;
    }

    .gallery-grid.list-view .card-overlay {
        opacity: 0 !important;
        pointer-events: none !important;
    }

    .overlay-label,
    .overlay-cost {
        opacity: 1 !important;
        transform: none !important;
    }

    .overlay-btn {
        opacity: 1 !important;
        transform: none !important;
        pointer-events: auto !important;
        background: #d4af37 !important;
        color: #1a3558 !important;
        z-index: 10 !important;
        display: inline-flex !important;
    }

    /* Keep project info bar visible if user prefers it */
    .card-info {
        display: flex !important;
        opacity: 1 !important;
        background: rgba(13, 31, 53, 0.9);
        border-radius: 0 0 16px 16px;
    }

    /* Hide info bar if overlay is visible */

    /* ── Filter Bar Polish ── */
    .filter-section {
        padding: 20px 10px !important;
        position: relative !important;
        text-align: center;
    }

    .filter-right {
        display: flex !important;
        width: 100% !important;
        justify-content: space-between !important;
        margin-top: 15px !important;
        padding-top: 15px !important;
        border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
    }

    .view-toggle {
        display: flex !important;
    }

    .filter-pills {
        justify-content: center !important;
        gap: 8px !important;
    }

    .pill {
        padding: 6px 14px !important;
        font-size: 0.72rem !important;
    }
}

/* Base Hamburger Default (Hidden on Desktop) */
.hamburger {
    display: none;
}