html {
    scroll-behavior: smooth;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

img {
    max-width: 100%;
}

/* General Body Styling */
body {
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    background-color: #99D9EA;
    margin: 0;
    padding: 0;
    text-align: center;
    color: black;
}

/* Header Styles */
header {
    background-color: #99D9EA;
    color: rgba(0, 0, 0, 0.815);
}

header img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

/* Container - General width constraint */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header container layout */
header .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

header nav {
    width: 100%;
}

/* Navigation Links */
nav ul {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

nav ul li a {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 30px;
    color: white;
    display: inline-block;
    position: relative;
    padding: 10px 10px 16px;
    text-decoration: none;
    transition: color 0.22s ease, transform 0.22s ease;
    white-space: nowrap;
}

nav ul li a::after {
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 6px;
    height: 3px;
    border-radius: 999px;
    background: #F08233;
    opacity: 0;
    transform: scaleX(0.35);
    transform-origin: center;
    transition: opacity 0.22s ease, transform 0.22s ease;
}

nav ul li a:hover {
    color: #ffe1cc;
    transform: translateY(-1px);
}

nav ul li a[aria-current="page"] {
    color: #ffffff;
}

nav ul li a:hover::after {
    opacity: 0.55;
    transform: scaleX(0.7);
}

nav ul li a[aria-current="page"]::after {
    opacity: 1;
    transform: scaleX(1);
}

/* Nav Design Button */
.nav-design-btn {
    background-color: #F08233;
    color: white;
    padding: 8px 14px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.nav-design-btn:hover {
    background-color: #e2701f;
}

/* Hero Section */
.hero {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    background-color: #99D9EA;
    color: black;
    padding: 55px 0;
    text-align: center;
    scroll-margin-top: 20px;
}

.hero h2 {
    font-size: 28px;
}

.hero p {
    font-size: 36px;
}

/* About Section */
.about {
    background-color: #99D9EA;
    padding: 50px 0;
    color: black;
}

.about h1 {
    font-size: 28px;
}

.about h2 {
    font-size: 28px;
}

.about p {
    font-size: 28px;
}

/* Services Section */
.services {
    background-color: #026873;
    padding: 50px 0;
    color: rgb(0, 0, 0);
}

.services h2 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 34px;
    line-height: 1.15;
    text-decoration: underline;
}

.services-intro {
    max-width: 760px;
    margin: 0 auto 28px;
    color: #ffffff;
    font-size: 20px;
    line-height: 1.5;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}

.service-item {
    background-color: #F08233;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 320px;
    padding: 0;
    width: 100%;
    color: #000000;
    text-decoration: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.service-item img {
    display: block;
    width: 100%;
    height: 118px;
    flex: 0 0 118px;
    object-fit: cover;
    object-position: center;
    background: #99D9EA;
}

.service-item-render img {
    object-fit: contain;
    padding: 8px;
}

.service-item h3 {
    margin: 16px 14px 10px;
    font-size: 22px;
    line-height: 1.2;
}

.service-item p {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0 14px 18px;
    font-size: 16px;
    line-height: 1.45;
}

.service-item:hover {
    background-color: #005f6b;
    color: #ffffff;
    transform: translateY(-5px);
}

.service-item:focus-visible,
.services-cta-link:focus-visible {
    outline: 3px solid #ffffff;
    outline-offset: 4px;
}

.services-cta {
    margin: 28px auto 0;
    padding: 22px;
    max-width: 760px;
    border-radius: 8px;
    background: rgba(153, 217, 234, 0.9);
    color: #003f4f;
}

.services-cta p {
    margin: 0 0 12px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.25;
}

.services-cta-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 10px 18px;
    border-radius: 8px;
    background: #F08233;
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.services-cta-link:hover {
    background: #d26e27;
    transform: translateY(-2px);
}

@media (max-width: 1100px) {
    .service-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Our Work Section */
.our-work {
    background-color: #99D9EA;
    padding: 30px 0;
    color: #000;
    scroll-margin-top: 20px;
}

.our-work h2 {
    font-size: 28px;
    margin-bottom: 15px;
    text-decoration: underline;
}

.work-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    gap: 20px;
    align-items: stretch;
}

.work-item {
    background-color: #F08233;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    cursor: pointer;
}

.work-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.work-item h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    margin: 0;
    padding: 12px 12px 8px;
    font-size: 22px;
    line-height: 1.2;
}

.work-item p {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 112px;
    margin: 0;
    padding: 10px 14px 16px;
    flex: 1;
    font-style: italic;
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
}

.work-item-link {
    display: inline-block;
    margin: 0 0 16px;
    padding: 10px 16px;
    border-radius: 999px;
    background: #003f4f;
    color: white;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
}

.work-item-link:hover {
    background: #00181e;
}

/* Contact Section */
.contact {
    background-color: #99D9EA;
    padding: 50px 0;
    color: black;
}

.contact h2 {
    font-size: 28px;
}

.contact p {
    font-size: 16px;
}

/* Footer */
footer {
    background-color: #99D9EA;
    color: #003f4f;
    text-align: center;
    padding: 20px 0;
}

/* Responsive Adjustments for Mobile Screens */
@media (max-width: 480px) {
    body {
        font-size: 16px;
    }

    nav {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    nav ul {
        flex-direction: row;
        padding: 0;
        flex-wrap: wrap;
        width: 100%;
        gap: 8px;
        justify-content: center;
    }

    nav ul li a {
        font-size: 14px;
        padding: 8px 8px 10px;
        white-space: nowrap;
    }

    .service-item,
    .work-item {
        width: 100%;
        margin: 20px 0;
    }

    .hero h2,
    .about h2,
    .contact h2 {
        font-size: 24px;
    }

    .hero p,
    .about p,
    .contact p {
        font-size: 14px;
    }

    .nav-design-btn {
        width: 100%;
        font-size: 16px !important;
        padding: 10px 14px !important;
        margin: 10px 0 0 0 !important;
    }

    .social-float {
        bottom: 10px;
        left: 5px;
        padding: 0.25rem;
    }

    .social-float img {
        width: 30px;
    }
}

.about .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #99D9EA;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0;
    text-align: center;
}

.social-float {
    position: fixed;
    bottom: 20px;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.5rem;
    z-index: 100;
}

.social-float img {
    width: 40px;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    padding: 1.5rem 0;
}

.social-links img {
    width: 32px;
    height: 32px;
}

@media (max-width: 768px) {
    .social-links img,
    .social-float img {
        width: 24px;
        height: 24px;
    }

    nav ul {
        flex-direction: row;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav ul li a {
        font-size: 18px;
        padding: 8px;
    }

    .hero h2,
    .about h2,
    .contact h2 {
        font-size: 20px;
    }

    .hero p,
    .about p,
    .contact p {
        font-size: 14px;
        padding: 0 10px;
    }

    .service-item,
    .work-item {
        width: 90%;
        margin: 15px auto;
    }

    .about .container {
        padding: 15px;
    }

    header {
        padding: 10px 0;
    }

    header .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

.property-development {
    background-color: #F08233;
    padding: 50px 0;
    color: #003f4f;
    text-align: center;
}

.property-development h2 {
    font-size: 28px;
    margin-bottom: 18px;
    text-decoration: underline;
}

.property-development .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
    border-radius: 8px;
    background: #99D9EA;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.property-development-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.property-development-images img {
    width: 45%;
    max-width: 400px;
    height: 250px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.12);
    background: #99D9EA;
}

@media (max-width: 900px) {
    .property-development-images {
        flex-direction: column;
        align-items: center;
    }

    .property-development-images img {
        flex: none;
        width: 90%;
        height: 180px;
    }

    .property-development .container {
        padding: 12px;
    }
}

.special-img {
    height: 250px !important;
    object-fit: contain !important;
    background: #F08233;
    border-radius: 8px;
}

.work-gallery .work-item img.special-img {
    height: 200px !important;
    flex: 0 0 200px;
    border-radius: 0;
}

@media (max-width: 900px) {
    .property-development-images img:nth-child(2) {
        display: none;
    }
}

@media (max-width: 768px) {
    .work-gallery {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 0 10px;
    }

    .work-item {
        width: 100% !important;
        margin: 0;
    }

    .work-item img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        object-position: center;
        display: block;
        border-radius: 8px;
    }
}

@media (max-width: 768px) {
    .property-development-images {
        flex-direction: column;
        align-items: center;
    }

    .property-development-images img {
        width: 100% !important;
        height: auto !important;
        max-width: 100%;
        border-radius: 0;
        margin-bottom: 12px;
    }
}

/* Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Modal Container */
.modal-content {
    background: #99D9EA;
    border-radius: 12px;
    max-width: 700px;
    width: 100%;
    padding: 30px 30px 40px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    max-height: 90vh;
    overflow-y: auto;
}

/* Close Button */
.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 26px;
    background: none;
    border: none;
    color: #333;
    cursor: pointer;
}

/* Nav Trigger Button */
.open-questionnaire-btn {
    background-color: #F08233;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 20px auto;
    display: block;
}

.open-questionnaire-btn:hover {
    background-color: #d26e27;
}

/* Form Elements */
.modal-content form label {
    font-weight: bold;
    margin-top: 20px;
    display: block;
    color: #222;
}

.modal-content form input[type="text"],
.modal-content form input[type="email"],
.modal-content form input[type="tel"],
.modal-content form input[type="file"],
.modal-content form select,
.modal-content form textarea {
    width: 100%;
    padding: 12px;
    margin-top: 8px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box;
    font-size: 15px;
    background: #ffffff;
}

/* Textareas */
.modal-content form textarea {
    resize: vertical;
}

/* Checkbox Group */
.modal-content form .checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.modal-content form .checkbox-group label {
    font-weight: normal;
}

/* Submit Button */
.modal-content form button[type="submit"] {
    margin-top: 30px;
    padding: 14px 28px;
    font-size: 16px;
    border: none;
    border-radius: 10px;
    background-color: #F08233;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: block;
    width: 100%;
}

.modal-content form button[type="submit"]:hover {
    background-color: #d26e27;
}

/* Responsive */
@media (max-width: 600px) {
    .modal-content {
        padding: 20px;
    }

    .close-modal {
        top: 10px;
        right: 15px;
    }

    .open-questionnaire-btn {
        width: 90%;
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .modal-content {
        width: 90vw !important;
        max-height: 90vh;
        overflow-y: auto;
        margin: 5vh auto;
        padding: 20px;
        border-radius: 10px;
        box-sizing: border-box;
    }

    .form-container input,
    .form-container textarea,
    .form-container button {
        width: 100% !important;
        font-size: 16px;
    }

    .form-container label {
        font-size: 16px;
    }

    .close-modal {
        position: fixed !important;
        top: 10px !important;
        right: 10px !important;
        z-index: 1000 !important;
    }
}

.about-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 20px 30px;
    line-height: 1.6;
}

.about-box h1,
.about-box h2,
.about-box h3 {
    font-weight: bold;
    margin-bottom: 15px;
}

.about-box p {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-box h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
}

.about-box h2 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 10px;
}

.about-box h3 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.carousel-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.carousel-modal-img {
    max-width: 85%;
    max-height: 80%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.carousel-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 42px;
    color: white;
    cursor: pointer;
    z-index: 10000;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(240, 130, 51, 0.9);
    color: white;
    border: none;
    font-size: 36px;
    padding: 12px 18px;
    cursor: pointer;
    border-radius: 8px;
}

.carousel-arrow.left {
    left: 30px;
}

.carousel-arrow.right {
    right: 30px;
}

.carousel-arrow:hover {
    background: rgba(210, 110, 39, 0.95);
}

@media (max-width: 768px) {
    .carousel-modal-img {
        max-width: 92%;
        max-height: 70%;
    }

    .carousel-arrow {
        font-size: 28px;
        padding: 10px 14px;
    }

    .carousel-arrow.left {
        left: 10px;
    }

    .carousel-arrow.right {
        right: 10px;
    }

    .carousel-close {
        top: 10px;
        right: 18px;
        font-size: 34px;
    }
}

/* Garden Rooms Product Page */
.product-page .container {
    width: min(1200px, 92%);
    margin: 0 auto;
}

.brand-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 12px 22px;
    border-radius: 999px;
    border: 2px solid #F08233;
    background: #F08233;
    color: white;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.brand-btn:hover {
    background: #d26e27;
    transform: translateY(-2px);
}

.brand-btn-secondary {
    background: transparent;
    color: #003f4f;
}

.brand-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.65);
    color: #00181e;
}

.section-kicker {
    margin: 0;
    color: #003f4f;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.product-hero {
    padding: 28px 0 34px;
    scroll-margin-top: 20px;
}

.product-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 30px;
    align-items: stretch;
}

.product-hero-copy,
.product-main-image-card,
.product-feature-card,
.product-tab-panel,
.product-spec-card,
.product-faq-item,
.product-cta-banner-inner {
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}

.product-hero-copy {
    height: 100%;
    padding: 28px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.74);
    text-align: left;
}

.product-hero-copy h1 {
    margin: 10px 0 16px;
    font-size: 34px;
    line-height: 1.12;
}

.product-lead {
    margin: 0 0 20px;
    font-size: 21px;
    line-height: 1.6;
}

.product-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.product-pill-row span {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: #003f4f;
    font-size: 16px;
    font-weight: 700;
}

.product-action-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 22px;
}

.product-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.product-stat-card {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    text-align: left;
}

.product-stat-card strong {
    display: block;
    margin-bottom: 8px;
    color: #003f4f;
    font-size: 22px;
}

.product-stat-card p {
    margin: 0;
    font-size: 17px;
    line-height: 1.5;
}

.product-hero-visual {
    display: flex;
}

.product-main-image-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.74);
}

.product-main-image-card img {
    display: block;
    width: 100%;
    flex: 1;
    min-height: 0;
    aspect-ratio: 5 / 4;
    object-fit: cover;
}

.product-image-meta {
    padding: 18px 20px 22px;
    background: rgba(255, 255, 255, 0.86);
    text-align: left;
}

.product-image-meta p {
    margin: 0;
    font-size: 21px;
    line-height: 1.6;
}

.product-thumb-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 14px;
}

.product-thumb {
    padding: 0;
    border: 3px solid transparent;
    border-radius: 18px;
    background: white;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-thumb img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.product-thumb.is-active,
.product-thumb:hover {
    border-color: #F08233;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.product-section {
    padding: 18px 0 40px;
}

.product-section-alt {
    padding: 26px 0 46px;
}

.product-section-heading {
    max-width: 780px;
    margin: 0 auto 24px;
}

.product-section-heading h2 {
    margin: 10px 0 14px;
    font-size: clamp(30px, 4vw, 48px);
}

.product-section-heading p {
    margin: 0;
    font-size: 21px;
    line-height: 1.5;
}

.product-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.product-feature-card {
    padding: 28px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.74);
    text-align: left;
}

.product-feature-card-accent {
    background: linear-gradient(160deg, rgba(240, 130, 51, 0.95), rgba(255, 255, 255, 0.55));
}

.product-feature-card h2 {
    margin: 0 0 16px;
    font-size: 34px;
}

.product-feature-card p,
.product-checklist,
.product-steps {
    font-size: 21px;
    line-height: 1.6;
}

.product-checklist,
.product-steps {
    margin: 0;
    padding-left: 22px;
}

.product-tab-controls {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.55);
}

.product-tab {
    min-width: 120px;
    padding: 12px 20px;
    border: none;
    border-radius: 999px;
    background: transparent;
    color: #003f4f;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.product-tab.is-active,
.product-tab:hover {
    background: #003f4f;
    color: white;
}

.product-tab-panels {
    margin-top: 22px;
}

.product-tab-panel {
    padding: 30px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.74);
    text-align: left;
}

.product-tab-panel h3 {
    margin: 0 0 12px;
    font-size: 30px;
}

.product-tab-panel p {
    margin: 0;
    font-size: 21px;
    line-height: 1.6;
}

.product-spec-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.product-spec-card {
    padding: 24px;
    border-radius: 24px;
    background: #F08233;
    text-align: left;
}

.product-spec-card h3 {
    margin: 0 0 12px;
    font-size: 28px;
}

.product-spec-card p {
    margin: 0;
    font-size: 18px;
    line-height: 1.6;
}

.product-faq-list {
    display: grid;
    gap: 16px;
}

.product-faq-item {
    padding: 20px 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.74);
    text-align: left;
}

.product-faq-item summary {
    cursor: pointer;
    font-size: 22px;
    font-weight: 700;
    list-style: none;
}

.product-faq-item summary::-webkit-details-marker {
    display: none;
}

.product-faq-item p {
    margin: 14px 0 0;
    font-size: 18px;
    line-height: 1.6;
}

.product-cta-banner {
    padding: 10px 0 60px;
}

.product-cta-banner-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    padding: 32px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(240, 130, 51, 1), rgba(153, 217, 234, 0.88));
    text-align: left;
}

.product-cta-banner-inner h2 {
    margin: 10px 0 12px;
    font-size: 34px;
    line-height: 1.12;
}

.product-cta-banner-inner p {
    font-size: 21px;
    line-height: 1.6;
}

.product-cta-banner-inner p:last-child {
    margin-bottom: 0;
}

@media (max-width: 1100px) {
    .product-stat-grid,
    .product-spec-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-hero-grid,
    .product-feature-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .brand-btn {
        width: 100%;
    }

    .product-lead {
        font-size: 19px;
    }

    .product-action-row {
        flex-direction: column;
    }

    .product-stat-grid,
    .product-feature-grid,
    .product-spec-grid,
    .product-thumb-row {
        grid-template-columns: 1fr;
    }

    .product-main-image-card img {
        aspect-ratio: auto;
    }

    .product-feature-card,
    .product-tab-panel,
    .product-spec-card,
    .product-cta-banner-inner {
        padding: 22px;
    }

    .product-section-heading p,
    .product-tab-panel p {
        font-size: 18px;
    }

    .product-tab-controls {
        display: flex;
        width: 100%;
        border-radius: 24px;
    }

    .product-tab {
        flex: 1 1 auto;
        min-width: 0;
    }
}

/* Final responsive pass */
@media (max-width: 900px) {
    body {
        font-size: 18px;
        line-height: 1.45;
    }

    .container,
    .product-page .container {
        width: min(100% - 24px, 1200px);
    }

    header {
        padding: 10px 0 14px;
    }

    header .container {
        flex-direction: column;
        gap: 10px;
    }

    header img {
        width: min(300px, 78vw);
    }

    nav ul {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        width: 100%;
        margin: 0;
    }

    nav ul li a {
        width: 100%;
        min-height: 42px;
        padding: 9px 8px 11px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.16);
        font-size: clamp(13px, 3.7vw, 17px);
        line-height: 1.15;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    nav ul li a::after {
        left: 8px;
        right: 8px;
        bottom: 5px;
        height: 2px;
    }

    nav ul li:last-child {
        grid-column: 1 / -1;
    }

    .nav-design-btn {
        width: min(100%, 360px);
        margin: 0 auto;
        font-size: 16px;
    }

    .hero,
    .about,
    .services,
    .our-work,
    .property-development,
    .product-hero,
    .product-section,
    .product-section-alt,
    .product-cta-banner {
        padding: 28px 0;
    }

    .hero h1 {
        font-size: clamp(34px, 10vw, 48px);
        line-height: 1;
    }

    .hero h2,
    .about h2,
    .services h2,
    .contact h2,
    .property-development h2,
    .our-work h2,
    .product-hero-copy h1,
    .product-cta-banner-inner h2,
    .product-feature-card h2 {
        font-size: clamp(24px, 7vw, 32px);
        line-height: 1.15;
    }

    .hero p,
    .about p,
    .services-intro,
    .property-development p,
    .product-lead,
    .product-feature-card p,
    .product-checklist,
    .product-image-meta p,
    .product-cta-banner-inner p {
        font-size: 17px;
        line-height: 1.55;
    }

    .about .container,
    .property-development .container,
    .product-hero-copy,
    .product-feature-card,
    .product-main-image-card,
    .product-cta-banner-inner {
        border-radius: 8px;
    }

    .service-list,
    .work-gallery {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0;
    }

    .service-item,
    .work-item {
        width: 100% !important;
        margin: 0;
    }

    .service-item {
        padding: 0;
        min-height: 320px;
    }

    .service-item img {
        height: 170px;
        flex-basis: 170px;
        margin: 0;
        width: 100%;
    }

    .service-item-render img {
        padding: 10px;
    }

    .service-item h3,
    .work-item h3 {
        font-size: 22px;
        line-height: 1.2;
    }

    .work-item h3 {
        min-height: 50px;
        padding: 12px 12px 8px;
    }

    .service-item h3 {
        margin: 16px 14px 10px;
    }

    .service-item p,
    .work-item p {
        font-size: 17px;
        line-height: 1.5;
    }

    .work-item p {
        min-height: 100px;
        padding: 10px 14px 16px;
    }

    .services-cta {
        margin-top: 20px;
        padding: 18px;
    }

    .services-cta p {
        font-size: 19px;
    }

    .services-cta-link {
        width: 100%;
    }

    .work-item img,
    .special-img {
        height: 210px !important;
        border-radius: 0;
    }

    .work-item-link {
        max-width: calc(100% - 24px);
        font-size: 15px;
        white-space: normal;
    }

    .product-hero-grid,
    .product-feature-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .product-pill-row {
        gap: 8px;
    }

    .product-pill-row span {
        flex: 1 1 150px;
        justify-content: center;
        border-radius: 8px;
        font-size: 14px;
        text-align: center;
    }

    .brand-btn {
        width: 100%;
        border-radius: 8px;
    }

    .product-action-row {
        width: 100%;
        margin-bottom: 0;
    }

    .product-main-image-card img {
        aspect-ratio: 4 / 3;
    }

    .product-hero-copy,
    .product-feature-card,
    .product-cta-banner-inner {
        padding: 20px;
    }

    .product-checklist {
        padding-left: 20px;
    }

    .property-development-images {
        gap: 14px;
    }

    .property-development-images img {
        width: 100% !important;
        max-width: 100%;
        height: auto !important;
        border-radius: 8px;
    }

    .modal-overlay {
        padding: 12px;
    }

    .modal-content {
        width: 100%;
        max-height: 88vh;
    }
}

@media (max-width: 420px) {
    .container,
    .product-page .container {
        width: min(100% - 16px, 1200px);
    }

    nav ul {
        gap: 6px;
    }

    nav ul li a {
        min-height: 40px;
        padding: 8px 6px 10px;
        font-size: 13px;
    }

    .hero,
    .about,
    .services,
    .our-work,
    .property-development,
    .product-hero,
    .product-section,
    .product-section-alt,
    .product-cta-banner {
        padding: 22px 0;
    }

    .hero p,
    .about p,
    .property-development p,
    .product-lead,
    .product-feature-card p,
    .product-checklist,
    .product-image-meta p,
    .product-cta-banner-inner p {
        font-size: 16px;
    }

    .work-item img,
    .special-img {
        height: 190px !important;
    }

    .carousel-arrow {
        font-size: 22px;
        padding: 8px 10px;
    }
}
