@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden; /* Prevent horizontal overflow globally */
}

body {
    font-family: 'Inter Tight', sans-serif;
    letter-spacing: 0.02em;
    background: #F7F7F7;
}

:root {
    /* colors */
    --tx-black: #000000;
    --tx-black-05: rgba(0, 0, 0, 0.5);
    --tx-white: #ffffff;
    --tx-white-05: rgba(255, 255, 255, 0.5);
    --navbar-bg: rgb(26, 26, 26, 0.5);
    --dark-bg: rgb(26, 26, 26);
    --custom-gradient-bg: linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, #ffedc6 85%, #b07900 100%);

    /* font weights */
    --tx-fw-regular: 400;
    --tx-fw-medium: 500;
    --tx-fw-semibold: 600;
    --tx-fw-bold: 700;
    --tx-fw-extrabold: 800;

    /* font-size */
    --txs-12: 12px;
    --txs-13: 13px;
    --txs-14: 14px;
    --txs-15: 15px;
    --txs-16: 16px;
    --txs-18: 18px;
    --txs-20: 20px;
    --txs-22: 22px;
    --txs-24: 24px;
    --txs-26: 26px;
    --txs-28: 28px;
    --txs-30: 30px;
    --txs-32: 32px;
    --txs-34: 34px;
    --txs-44: 44px;
    --txs-70: 70px;
}

.landing-gradient-tx {
    background: linear-gradient(
    165deg, 
    #B07900 0%, 
    #000000 48%, 
    #000000 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gsection-title {
    font-size: var(--txs-14);
    font-weight: var(--tx-fw-regular);
    line-height: 1.3;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    background: linear-gradient(
        135deg, 
        #B07900 13%, 
        #000000 44%, 
        #000000 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Section */
section {
    padding: 100px 0;
}

/* ── Reusable Section Headings ── */
.section-label {
    font-size: var(--txs-14);
    font-weight: var(--tx-fw-regular);
    text-transform: uppercase;
    letter-spacing: 0;
    color: var(--tx-white);
    margin-bottom: 30px;
}

.section-title {
    font-size: var(--txs-44);
    font-weight: 300;
    color: var(--tx-black);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 56px;
}

.section-title strong {
    font-weight: var(--tx-fw-semibold);
}

/* ── FAQ Section (Bootstrap Overrides) ── */
.faq-accordion .accordion-item {
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: transparent;
}

.faq-accordion .accordion-item:first-child {
    border-top: none;
}

.faq-accordion .accordion-button {
    background: transparent;
    box-shadow: none;
    color: var(--tx-black);
    font-size: var(--txs-18);
    font-weight: var(--tx-fw-medium);
    padding: 22px 0;
    border: none;
    gap: 16px;
    line-height: 1.3;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
}

.faq-accordion .accordion-button::after {
    flex-shrink: 0;
    width: 14px;
    height: 8px;
    margin-left: auto;
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='5' viewBox='0 0 9 5' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M8.12137 1.06066L7.59097 1.59099L4.76777 4.41417C4.37724 4.80477 3.74408 4.80477 3.35355 4.41417L0.53033 1.59099L0 1.06066L1.06066 0L1.59099 0.53033L4.06066 3L6.53037 0.53033L7.06067 0L8.12137 1.06066Z' fill='black'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    transition: transform 0.3s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--tx-black);
    background: transparent;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
}

.faq-accordion .accordion-body {
    padding: 0 0 20px 0;
    font-size: var(--txs-16);
    color: var(--tx-black-05);
    font-weight: var(--tx-fw-regular);
    line-height: 1.65;
}

@media (max-width: 767px) {
    .faq-accordion .accordion-button {
        font-size: var(--txs-14);
    }

    .faq-accordion .accordion-body {
        font-size: var(--txs-13);
    }

}

/* Navbar */
.custom-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--navbar-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 14px 0;
    transition: background-color 0.3s ease;
}

.custom-navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: var(--txs-15);
    font-weight: var(--tx-fw-medium);
    color: var(--tx-white);
    line-height: normal;
}

.navbar-menu {
    display: flex;
    align-items: center;
}

.navbar-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 32px;
}

.navbar-links a {
    text-decoration: none;
    color: var(--tx-white);
    font-size: var(--txs-14);
    font-weight: var(--tx-fw-regular);
    transition: opacity 0.3s ease;
    opacity: 0.7;
}

.navbar-links a:hover {
    opacity: 1;
}

.navbar-links a.active {
    opacity: 1;
    color: var(--tx-white);
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-btn {
    background-color: var(--tx-white) !important;
    color: var(--tx-black) !important;
    padding: 10px 24px;
    border-radius: 36px;
    text-decoration: none;
    font-size: var(--txs-14);
    font-weight: var(--tx-fw-medium);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .mobile-menu-toggle {
        display: block;
    }

    .navbar-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--dark-bg);
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    }

    .navbar-menu.active {
        max-height: 400px;
        padding: 20px 0;
    }

    .navbar-links {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .navbar-links li {
        width: 100%;
    }

    .navbar-links a {
        display: block;
        padding: 12px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        font-size: var(--txs-16);
    }
}

/* Footer */
.site-footer {
    background-color: #1a1a1a;
    padding: 70px 0 0;
}

.footer-top {
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Brand */
.footer-brand {
    padding-right: 32px;
}

.footer-logo {
    font-size: 26px;
    font-weight: var(--tx-fw-medium);
    color: var(--tx-white);
    margin-bottom: 30px;
    line-height: normal;
}

.footer-logo span {
    color: var(--tx-white);
}

.footer-tagline {
    font-size: var(--txs-16);
    color: var(--tx-white-05);
    font-weight: 400 !important;
    line-height: 1.55;
    margin-bottom: 0;
}

/* Columns */
.footer-col {
    padding-top: 4px;
}

.footer-col-title {
    font-size: var(--txs-14);
    font-weight: var(--tx-fw-medium);
    color: var(--tx-white);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: normal;
    margin-bottom: 30px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    text-decoration: none;
    color: var(--tx-white);
    font-size: var(--txs-14);
    font-weight: var(--tx-fw-medium);
    transition: color 0.2s ease;
    line-height: 1.3;
    letter-spacing: 0.02em;
}

.footer-links a:hover {
    color: var(--tx-white);
}

.footer-contact-text {
    font-size: var(--txs-14);
    color: var(--tx-white);
    line-height: 1.3;
    letter-spacing: 0.02em;
    margin: 0;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-socials a {
    text-decoration: none;
    color: var(--tx-white);
    font-size: 18px;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background-color: var(--tx-white);
    color: var(--tx-black);
    transform: translateY(-3px);
    border-color: var(--tx-white);
}

/* Bottom Bar */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    gap: 16px;
}

.footer-copy,
.footer-badges {
    font-size: var(--txs-12);
    color: var(--tx-white-05);
    line-height: 1.3;
    letter-spacing: 0.02em;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 767px) {

    .site-footer {
        padding: 50px 0;
    }

    .footer-brand {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .footer-col {
        margin-bottom: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .footer-tagline {
        font-size: var(--txs-14);
    }

    .footer-logo {
        font-size: var(--txs-20);
        margin-bottom: 18px;
    }

    .footer-col-title {
        font-size: var(--txs-13);
        margin-bottom: 12px;
    }

    .footer-links {
        gap: 8px;
    }

    .footer-links a {
        font-size: var(--txs-12);
    }

    .footer-contact-text {
        font-size: var(--txs-12);
    }
}

/* Our Project Gallery */
.our-gallery {
    background: url('../imgs/project-gallery.png') no-repeat center center/cover;
    padding: 0;
    overflow: hidden;
    height: 100vh;
    width: 100%;
    min-height: 800px;
    display: flex;
    align-items: center;
    color: #fff;
}

.gallery-container {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 0 5%;
    overflow: hidden; /* Prevent row negative margins from causing overflow */
}

.gallery-subtitle {
    display: block;
    font-size: var(--txs-14);
    letter-spacing: 0.25em;
    color: var(--tx-black);
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1.8;
    margin: 60px 0 0 45px;
}

.gallery-right {
    display: flex;
    gap: 20px;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.gallery-scroll-col {
    width: 250px;
    height: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 0;
}

.gallery-track-down,
.gallery-track-up {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.gallery-track-down img,
.gallery-track-up img {
    width: 265px;
    height: 290px;
    border-radius: 20px;
    object-fit: cover;
    border: 10px solid rgba(0,0,0,0.3);
}

/* Infinite Scroll Animations */
.gallery-track-down {
    animation: scrollDown 45s linear infinite;
}

.gallery-track-up {
    animation: scrollUp 45s linear infinite;
}

@keyframes scrollDown {
    0% { transform: translateY(-50%); }
    100% { transform: translateY(0); }
}

@keyframes scrollUp {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

/* Responsive */
@media (max-width: 991px) {
    .our-gallery {
        height: auto;
        padding: 0px 0;
    }

    .gallery-subtitle {
        font-size: var(--txs-24);
        color: var(--tx-white);
        text-align: center;
        margin: 40px 0 0 0;
    }
    
    .gallery-right {
        height: 560px;
        margin-top: 70px;
    }

    .gallery-track-down img, .gallery-track-up img {
        width: 240px;
        height: 270px;
        border: 8px solid rgba(0, 0, 0, 0.3);
    }
}

@media (max-width: 767px) {
    
    .gallery-scroll-col {
        width: 160px;
    }
    
    .gallery-track-down img,
    .gallery-track-up img {
        width: 200px;
        height: 200px;
    }

    .our-gallery {
        height: 600px;
        padding-bottom: 0;
    }

    .gallery-right {
        height: 580px;
        margin-top: 50px;
    }
}

/* ===== Our Services ===== */
.our-services {
    background-color: #1A1A1A;
    padding-top: 100px;
    padding-bottom: 100px;
}

.px-container {
    padding-left: 8%;
    padding-right: 8%;
}

.services-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 30px;
}

.services-counter {
    font-weight: 300;
}

.services-counter .current {
    font-size: 75px;
    line-height: 1.4;
    color: #fff;
    font-weight: 300;
}

.services-counter .total {
    font-size: 75px;
    line-height: 1.4;
    font-weight: 200;
    color: var(--tx-white-05);
}

.services-slider-container {
    width: 100%;
    overflow: hidden;
    padding-left: 8%;
}

.services-track {
    display: flex;
    gap: 30px;
    width: max-content;
    transition: transform 0.6s cubic-bezier(0.35, 0.65, 0.4, 1);
}

.service-card {
    width: 450px;
    cursor: pointer;
}

.service-card .img-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 280px;
}

.service-card .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .img-wrapper img {
    transform: scale(1.05);
}

.slider-nav-arrow {
    position: absolute;
    top: 39%;
    right: 8%; /* Matches the container padding */
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid var(--tx-white-05);
    background: var(--tx-black-05);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tx-white);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.slider-nav-arrow:hover {
    background: var(--tx-white);
    color: var(--tx-black);
}

.service-name {
    font-size: var(--txs-26);
    font-weight: var(--tx-fw-regular);
    margin-bottom: 12px;
    line-height: 1;
    letter-spacing: 0.02em;
}

.service-desc {
    font-size: var(--txs-16);
    font-weight: var(--tx-fw-regular);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Animation handled by JavaScript */
.hero-section {
    position: relative;
    padding: 140px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-mask {
    position: absolute;
    top: 8%;
    left: -1%;
    /* transform: translate(-50%, -50%); */
    width: 90vw;
    z-index: 0;
    pointer-events: none;
    /* opacity: 0.6; */
}

.hero-content {
    padding-right: 5%;
}

.hero-title {
    font-size: 70px;
    font-weight: 300;
    line-height: 1.1;
    color: var(--tx-black);
    letter-spacing: normal;
    margin-bottom: 24px;
}

.hero-gradient-text {
    font-weight: var(--tx-fw-semibold);
    background: linear-gradient(
        345deg, 
        #B07900 13%, 
        #000000 44%, 
        #000000 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.hero-description {
    font-size: 20px;
    color: var(--tx-black);
    line-height: 1.3;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(#000, #000) padding-box,
                linear-gradient(135deg, #FFDC90 0%, #FFEDC6 44%, #674806 100%) border-box;
    color: var(--tx-white);
    padding: 16px 36px;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background: #1A1A1A;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    color: var(--tx-white);
}

.hero-image-col {
    padding-left: 0%;
    padding-right: 5%;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 40px 40px 40px 10px;
    z-index: 3;
}

.hero-image-wrapper::before {
    position: absolute;
    content: '';
    top: 5px;
    bottom: -5px;
    left: 10px;
    right: -10px; /* Use right instead of width: 100% to keep it within bounds relative to left */
    background: var(--custom-gradient-bg);
    z-index: -1;
    border-radius: 40px 40px 40px 40px;
}

.hero-main-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    aspect-ratio: 4/4.5;
}

.hero-badge-group {
    position: absolute;
    top: 12%;
    right: -73px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-badge {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.1) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.8);
    border-left: 1px solid rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    border-right: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.3), 0 15px 35px rgba(0, 0, 0, 0.1);
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 10;
    width: 146px;
    height: 146px;
    border-radius: 50%;
}

.hero-badge .badge-icon {
    margin-bottom: 12px;
}

.hero-badge .badge-text {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--tx-black);
}

/* ===== Why Us ===== */
.why-us {
    padding: 120px 0 100px;
    background-color: var(--tx-white);
    overflow: hidden;
}

.dark-label {
    letter-spacing: 0.02em;
    font-size: var(--txs-14);
    color: var(--tx-black);
    text-transform: uppercase;
    font-weight: var(--tx-fw-medium);
    margin-bottom: 30px;
    line-height: 1.3;
}


.dark-title {
    font-size: 34px;
    line-height: 1.3;
    margin-bottom: 70px;
    color: var(--tx-black);
}

.dark-title strong {
    font-weight: var(--tx-fw-semibold);
}

.feature-box {
    padding: 0 15px;
}

.feature-calc {
    font-size: 60px;
    font-weight: var(--tx-fw-medium);
    background: linear-gradient(325deg, #B07900 13%, #000000 44%, #000000 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 40px;
    line-height: 1;
    letter-spacing: 0.02em;
    display: inline-block;
}

.feature-title {
    font-size: var(--txs-18);
    font-weight: var(--tx-fw-medium);
    color: var(--tx-black);
    margin-bottom: 20px;
}

.offer-icon {
    display: flex;
    align-items: center;
    gap: 12px;
}

.offer-icon svg {
    width: 30px;
    height: 30px;
}

.feature-desc-h {
    font-size: var(--txs-18);
    color: var(--tx-black);
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 0;
    letter-spacing: 0.02em;
}

.feature-desc {
    font-size: 16px;
    color: var(--tx-black-05);
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 0;
    letter-spacing: 0.02em;
}

.feature-divider {
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: rgba(0, 0, 0, 0.06);
}

.why-us-media {
    z-index: 1;
}

.rounded-media {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.play-btn-glass {
    text-decoration: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: all 0.3s ease;
    padding: 0;
}

.play-btn-glass:hover {
    background: var(--tx-white-05);
    transform: translate(-50%, -50%) scale(1.05);
}

.media-glow {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    max-width: 500px;
    height: 60px;
    background: rgba(218, 165, 32, 0.4);
    filter: blur(40px);
    z-index: -1;
    border-radius: 50%;
}

/* ===== What We Offer & Warranty & Solutions ===== */
.we-offer {
    border-bottom-left-radius: 72px;
    border-bottom-right-radius: 72px;
    z-index: 2;
    padding-bottom: 140px;
    position: relative;
}

.offer-title {
    line-height: 1.2;
}

.offer-feature {
    display: flex;
    flex-direction: column;
}

.offer-divider {
    border: none;
    border-top: 1px solid rgba(0,0,0,0.2);
    margin: 20px 0;
    opacity: 1;
}

/* Warranty Section */
.our-work {
    background-color: var(--tx-white);
    position: relative;
    padding: 0 !important;
}

.warranty-container {
    margin-top: -50px;
    z-index: 10;
    position: relative;
}

.warranty-banner {
    border-radius: 200px;
    padding: 60px 0;
    background: var(--tx-black);
}

.warranty-bg-img {
    background: url('../imgs/our-works.png') no-repeat center center;
    background-size: cover;
}

.warranty-main-title {
    font-size: 44px;
    font-weight: 300;
    margin-bottom: 66px;
}

.warranty-main-title strong {
    font-weight: var(--tx-fw-semibold);
}

.warranty-title {
    font-size: var(--txs-18);
    font-weight: var(--tx-fw-medium);
    margin-bottom: 20px;
    line-height: 1.3;
    color: var(--tx-white);
}

.warranty-desc {
    font-size: var(--txs-16);
    font-weight: 300;
    line-height: 1.3;
    color: var(--tx-white) !important;
    margin-bottom: 0;
}

/* Interior Solutions Section */
.interior-solution {
    border-top-left-radius: 72px;
    border-top-right-radius: 72px;
    margin-top: -50px;
    z-index: 2;
    position: relative;
    padding: 100px 0 !important;
}

.solution-icons-wrapper {
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 50px;
    row-gap: 70px;
}

.solution-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 125px;
    margin-bottom: 0px;
}

.solution-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-icon img {
    width: 98px;
    height: 98px;
}

.solution-title {
    font-size: 16px;
    font-weight: var(--tx-fw-regular);
    color: var(--tx-black);
    margin: 0;
}

/* Contact Us Page */
.contact-page-section {
    padding-top: 120px !important;
    padding-bottom: 80px !important;
    min-height: 100vh;
    background: #f8f8f8;
}

.contact-main-card {
    background: #fff;
    box-shadow: 0 30px 80px rgba(0,0,0,0.08);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.03);
}

.contact-img-col {
    position: relative;
    min-height: 700px;
}

.contact-img-wrapper {
    height: 100%;
    width: 100%;
}

.contact-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-social-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    padding: 12px 30px;
    display: flex;
    gap: 25px;
    z-index: 10;
}

.floating-social-nav a {
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.floating-social-nav a:hover {
    opacity: 1;
    transform: translateY(-3px);
    color: #fff;
}


.contact-form-col {
    position: relative;
    background: #fff;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 5;
}

.contact-headline {
    font-size: var(--txs-44);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--tx-black);
    letter-spacing: -0.02em;
}

.gold-gradient-text {
    background: linear-gradient(325deg, #B07900 13%, #000000 44%, #000000 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.contact-subtext {
    font-size: var(--txs-16);
    color: rgba(0, 0, 0, 0.5);
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 40px;
    max-width: 450px;
}

/* Form UI Refresh */
.contact-form-col .form-label {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.3);
    font-weight: 400;
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.contact-form-col .form-control {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-weight: 400;
    padding: 16px;
    font-size: var(--txs-13);
    background: #fff;
    color: var(--tx-black);
}

.contact-form-col .form-control::placeholder {
    color: rgba(0,0,0,0.4);
}

.contact-form-col .form-control:focus {
    border-color: #B07900;
    background: #fff;
    box-shadow: 0 0 8px 5px rgba(176, 121, 0, 0.08);
}

/* Validation Rules */
label.error {
    color: #e74c3c;
    font-size: 11px;
    font-weight: 600;
    margin-top: 8px;
    margin-left: 10px;
    display: block;
}

input.error, textarea.error {
    border-color: #e74c3c !important;
    background-color: rgba(231, 76, 60, 0.02) !important;
}

@media (max-width: 991px) {
    .contact-form-col {
        padding: 50px 30px;
    }
    .contact-img-col {
        min-height: 450px;
    }
}

@media (max-width: 991px) {
    .section-title,.dark-title,.warranty-main-title,.contact-headline {
        font-size: var(--txs-34);
    }

    .warranty-main-title {
        margin-bottom: 35px;
    }

    .service-card { width: 350px; }
    .services-counter .current, .services-counter .total { font-size: 40px; }

    .dark-label {
        margin-bottom: 25px;
    }

    .offer-icon {
        gap: 8px;
    }

    .offer-icon svg {
        width: 24px;
        height: 24px;
    }

    .feature-calc {
        font-size: var(--txs-34);
        margin-bottom: 25px;
    }

    .feature-title {
        font-size: var(--txs-16);
        margin-bottom: 12px;
    }

    .feature-box {
        margin-top: 30px;
    }

    .dark-title {
        margin-bottom: 50px;
    }

    .services-counter .current,
    .services-counter .total {
        font-size: var(--txs-44);
    }

    .service-name {
        font-size: var(--txs-18);
    }

    .service-desc {
        font-size: var(--txs-14);
    }

    .hero-content,
    .hero-image-col {
        padding-left: 0%;
        padding-right: 0%;
    }

    .hero-badge-group {
        top: 100%;
        left: 50%; /* Standard centering: left 50% + translateX -50% */
        right: auto;
        display: flex;
        flex-direction: row;
        gap: 25px;
        transform: translate(-50%, -50%);
        width: max-content;
    }

    .hero-badge {
        width: 125px;
        height: 125px;
        box-shadow: none;
    }

    .hero-badge .badge-icon svg {
        width: 24px;
        height: 24px;
    }

    .hero-badge .badge-text {
        font-size: var(--txs-13);
    }
    
    .offer-divider {
        margin: 15px 0;
    }

    .hero-title {
        font-size: 54px;
        text-align: center;
    }

    .hero-description {
        font-size: var(--txs-18);
        text-align: center;
    }
}

@media (max-width: 767px) {

    section {
        padding: 60px 0;
    }

    .our-services {
        padding-bottom: 60px;
    }

    .section-title,.dark-title,.warranty-main-title{
        font-size: var(--txs-28);
    }

    .dark-label {
        margin-bottom: 15px;
    }

    .section-label {
        font-size: var(--txs-13);
        margin-bottom: 20px;
    }

    .warranty-title,.feature-desc-h {
        font-size: var(--txs-15);
    }

    .warranty-desc,.feature-desc {
        font-size: var(--txs-13);
    }

    .solution-icon img {
        width: 75px;
        height: 75px;
    }
    
    .solution-icons-wrapper {
        max-width: 1200px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        column-gap: 25px;
        row-gap: 35px;
    }

    .solution-title {
        font-size: 13px;
    } 

    .service-card { width: 280px; }
    .px-container, .services-slider-container { padding-left: 20px; padding-right: 20px; }
    .services-header { gap: 20px; }

    
    .dark-title {
        margin-bottom: 35px;
    }

    .services-counter .current,
    .services-counter .total {
        font-size: var(--txs-34);
    }

    .we-offer {
        padding-bottom: 100px;
    }

    .why-us,
    .hero-section {
        padding: 60px 0 60px;
    }

    .hero-section {
        padding-top: 115px;
    }

    .hero-btn {
        font-size: var(--txs-14);
        padding: 8px 24px;
    }

    .contact-btn {
        padding: 8px 18px;
        font-size: var(--txs-13);
    }

    .warranty-banner {
        border-radius: 50px;
    }

    .navbar-links a {
        font-size: var(--txs-14);
    }

    .section-title {
        margin-bottom: 35px !important;
    }
}

@media (max-width: 575px) {

    .services-header { flex-direction: column; align-items: flex-start !important; }

    .section-title,.dark-title,.warranty-main-title,.contact-headline {
        font-size: var(--txs-24);
    }

    .offer-icon svg {
        width: 18px;
        height: 18px;
    }

    .feature-desc {
        font-size: var(12px);
    }

    .feature-calc {
        font-size: var(--txs-28);
        margin-bottom: 18px;
    }

    .feature-title {
        font-size: var(--txs-14);
    }
    
    .dark-title {
        margin-bottom: 20px;
    }

    .services-counter .current,
    .services-counter .total {
        font-size: var(--txs-24);
    }

    .service-name {
        font-size: var(--txs-14);
    }

    .service-desc {
        font-size: var(--txs-12);
    }

    .offer-divider {
        margin: 8px 0;
    }

    .we-offer,
    .interior-solution {
        border-radius: 0 !important;
    }

    .gallery-subtitle {
        font-size: var(--txs-18);
        letter-spacing: 0.25em;
        color: #fff;
        letter-spacing: 0;
        word-spacing: 0.2rem;
        margin: 60px 0 0 0;
    }

    .gallery-subtitle br {
        display: none;
    }

    .site-footer {
        padding-bottom: 20px;
    }

    .gallery-right {
        height: 670px;
        margin-top: 50px;
    }

    .hero-content, .hero-image-col {
        padding: 0 2%;
    }

    .hero-badge {
        width: 90px;
        height: 90px;
    }

    .hero-badge .badge-icon {
        margin-bottom: 6px;
    }

    .hero-badge .badge-text {
        font-size: var(--txs-12);
    }

    .hero-title {
        font-size: var(--txs-44);
        text-align: center;
    }

    .hero-description {
        font-size: var(--txs-16);
        text-align: center;
    }

    .hero-btn {
        width: fit-content;
        margin: 0 auto;
    }

    .hero-image-wrapper::before {
        display: none;
    }

    .slider-nav-arrow {
        top: 39%;
        right: 5%;
        width: 45px;
        height: 45px;
    }

    .section-title,.contact-headline {
        margin-bottom: 25px !important;
    }

    .warranty-desc,.feature-desc {
        font-size: var(--txs-12);
    }

}

/* ===== Video Modal ===== */
#videoModal .modal-content {
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    background: #000;
}

#videoModal .btn-close {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    padding: 10px;
    background-size: 14px;
    margin-right: -10px;
    transition: all 0.3s ease;
}

#videoModal .btn-close:hover {
    background-color: rgba(255, 255, 255, 0.4);
    transform: rotate(90deg);
}

.modal-backdrop.show {
    backdrop-filter: blur(8px);
    background-color: rgba(0, 0, 0, 0.8);
}

/* ===== Office Branch Icons & Info ===== */
.office-info-card {
    background: #fff;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.02);
    margin-top: 50px;
}

.branch-title {
    font-size: 24px;
    font-weight: var(--tx-fw-medium);
    margin-bottom: 22px;
    color: var(--tx-black);
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.branch-text {
    font-size: 16px;
    color: var(--tx-black-05);
    line-height: 1.3;
    margin-bottom: 0;
    font-weight: 300;
}

.office-contact-item {
    display: flex;
    align-items: center;
    gap: 18px;
}


.office-contact-link {
    font-size: 16px;
    color: var(--tx-black);
    text-decoration: none;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 10px;
}

.office-contact-link svg {
    width: 30px;
    height: 30px;
}

@media (max-width: 991px) {

    .contact-img-col {
        display: none;
    }

    .office-info-card {
        padding: 40px;
    }

    .contact-page-section {
        padding-top: 120px !important;
        padding-bottom: 60px !important;
    }

    .contact-subtext {
        font-size: var(--txs-14);
        margin-bottom: 25px;
    }

    .branch-title {
        font-size: var(--txs-20);
    }
}

@media (max-width: 768px) {
    .office-contact-link {
        font-size: 14px;
    }

    .office-contact-link svg {
        width: 18px;
        height: 18px;
    }

    .office-info-card {
        padding: 25px;
    }

    .branch-title {
        font-size: var(--txs-18);
        margin-bottom: 12px;
    }

    .branch-text {
        font-size: var(--txs-14);
    }

    .contact-form-col .form-control {
        padding: 12px;
    }
}

@media (max-width: 575px) {
    .branch-text {
        font-size: var(--txs-13);
    }
}
