/* =================================
   Basic Reset
================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #ffffff;
    color: #153d34;
}


/* =================================
   Header
================================= */

.header {
    width: 100%;
    height: 86px;

    display: flex;
    align-items: center;

    background-color: #f8f5ee;

    border-bottom: 1px solid rgba(21, 61, 52, 0.12);

    position: relative;
    z-index: 1000;
}


.header-container {
    width: 100%;

    display: flex;
    align-items: center;

    padding: 0 60px;
}


/* =================================
   Logo
================================= */

.logo {
    display: flex;
    align-items: center;

    text-decoration: none;
}


.logo img {
    width: auto;
    height: 52px;

    display: block;

    object-fit: contain;
}


/* =================================
   Navigation
================================= */

.navbar {
    margin-left: auto;

    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 42px;
}


.navbar a {
    position: relative;

    color: #151515;

    font-size: 14px;
    font-weight: 500;

    text-decoration: none;

    transition: color 0.3s ease;
}


.navbar a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 1px;

    background-color: #bd9957;

    transition: width 0.3s ease;
}


.navbar a:hover {
    color: #bd9957;
}


.navbar a:hover::after {
    width: 100%;
}


/* =================================
   Hero Section
================================= */

.hero {
    width: 100%;
    min-height: calc(100vh - 86px);

    display: flex;
    align-items: center;

    padding: 75px 60px;

    background:
        radial-gradient(
            circle at 72% 30%,
            rgba(198, 161, 94, 0.09),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #123f34 0%,
            #0c342b 55%,
            #072920 100%
        );

    overflow: hidden;
}


.hero-container {
    width: 100%;
    max-width: 1240px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 0.85fr;
    align-items: center;

    gap: 80px;
}


/* =================================
   Hero Left Content
================================= */

.hero-content {
    width: 100%;
    max-width: 650px;
}


.hero-location {
    display: inline-block;

    margin-bottom: 22px;

    color: #d2ad6a;

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 3px;
}


.hero-content h1 {
    margin-bottom: 22px;

    color: #ffffff;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(44px, 4.7vw, 66px);
    font-weight: 500;

    line-height: 1.12;
    letter-spacing: -1px;
}


.hero-content h1 span {
    display: block;
}


.hero-description {
    max-width: 590px;

    margin-bottom: 30px;

    color: rgba(255, 255, 255, 0.76);

    font-size: 16px;
    line-height: 1.75;
}


/* =================================
   Hero Tags
================================= */

.hero-tags {
    display: flex;
    flex-wrap: wrap;

    gap: 11px;

    margin-bottom: 36px;
}


.hero-tags span {
    min-height: 38px;

    display: inline-flex;
    align-items: center;

    gap: 9px;

    padding: 9px 16px;

    color: #d9bd87;

    background-color: rgba(255, 255, 255, 0.025);

    border: 1px solid rgba(210, 174, 108, 0.5);
    border-radius: 30px;

    font-size: 13px;
    font-weight: 500;
}


.hero-tags i {
    width: 6px;
    height: 6px;

    display: block;

    background-color: #cda760;

    border-radius: 50%;
}


/* =================================
   Hero Buttons
================================= */

.hero-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 14px;
}


.primary-btn,
.secondary-btn {
    min-width: 155px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 16px 25px;

    border-radius: 6px;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.primary-btn {
    color: #ffffff;

    background-color: #c9a35e;

    border: 1px solid #c9a35e;

    box-shadow: 0 10px 28px rgba(201, 163, 94, 0.25);
}


.primary-btn:hover {
    background-color: #d4b273;

    transform: translateY(-3px);

    box-shadow: 0 14px 32px rgba(201, 163, 94, 0.35);
}


.secondary-btn {
    color: #ffffff;

    background-color: transparent;

    border: 1px solid rgba(255, 255, 255, 0.65);
}


.secondary-btn:hover {
    color: #123f34;

    background-color: #ffffff;

    transform: translateY(-3px);
}


/* =================================
   Hero Right Image
================================= */

.hero-visual {
    width: 100%;

    display: flex;
    justify-content: center;
}


.hero-image-box {
    position: relative;

    width: 100%;
    max-width: 510px;
    height: 500px;

    overflow: hidden;

    background-color: #143f35;

    border: 1px solid rgba(201, 164, 95, 0.55);
    border-radius: 16px;

    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
}


.hero-image-box img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.7s ease;
}


.hero-image-box:hover img {
    transform: scale(1.04);
}


.image-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(5, 30, 25, 0.05) 10%,
            rgba(5, 30, 25, 0.25) 52%,
            rgba(5, 30, 25, 0.82) 100%
        );
}


/* Image Center Title */

.image-title {
    position: absolute;

    top: 48%;
    left: 50%;

    width: 100%;

    padding: 20px;

    text-align: center;

    transform: translate(-50%, -50%);
}


.image-title span {
    display: block;

    margin-bottom: 8px;

    color: #d9b978;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 23px;
    font-weight: 600;

    letter-spacing: 2px;
}


.image-title p {
    color: #e2c891;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 18px;

    letter-spacing: 1px;
}


/* Show Flat Badge */

.image-badge {
    position: absolute;

    left: 22px;
    bottom: 22px;

    padding: 11px 14px;

    color: #ddc28b;

    background-color: rgba(8, 42, 35, 0.84);

    border: 1px solid rgba(201, 164, 95, 0.55);
    border-radius: 5px;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 1px;
    text-transform: uppercase;

    backdrop-filter: blur(6px);
}


/* =================================
   Fixed Floating Buttons
================================= */

.floating-actions {
    position: fixed;

    top: 50%;
    right: 24px;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 11px;

    transform: translateY(-50%);

    z-index: 9999;
}


.floating-btn {
    position: relative;

    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;

    background-color: #155952;

    border-radius: 50%;

    text-decoration: none;

    box-shadow: 0 8px 18px rgba(13, 55, 49, 0.2);

    transition:
        background-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.floating-btn svg {
    width: 21px;
    height: 21px;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.floating-btn:hover {
    background-color: #bc9958;

    transform: translateX(-5px);

    box-shadow: 0 10px 24px rgba(13, 55, 49, 0.28);
}


/* =================================
   Floating Button Tooltip
================================= */

.floating-btn::before {
    content: attr(data-label);

    position: absolute;

    top: 50%;
    right: 59px;

    padding: 8px 12px;

    color: #ffffff;

    background-color: #123f38;

    border-radius: 5px;

    font-size: 12px;
    font-weight: 500;

    white-space: nowrap;

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transform: translateY(-50%) translateX(8px);

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease;
}


.floating-btn::after {
    content: "";

    position: absolute;

    top: 50%;
    right: 52px;

    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 7px solid #123f38;

    opacity: 0;
    visibility: hidden;

    transform: translateY(-50%);

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}


.floating-btn:hover::before {
    opacity: 1;
    visibility: visible;

    transform: translateY(-50%) translateX(0);
}


.floating-btn:hover::after {
    opacity: 1;
    visibility: visible;
}


/* =================================
   Tablet Responsive
================================= */

@media screen and (max-width: 1100px) {

    .header-container {
        padding: 0 35px;
    }


    .navbar {
        gap: 25px;
    }


    .hero {
        padding: 65px 35px;
    }


    .hero-container {
        gap: 45px;
    }


    .hero-content h1 {
        font-size: 48px;
    }


    .hero-image-box {
        height: 470px;
    }


    .floating-actions {
        right: 16px;
    }

}


/* =================================
   Mobile Responsive
================================= */

@media screen and (max-width: 850px) {

    .header {
        height: 74px;
    }


    .header-container {
        padding: 0 20px;
    }


    .logo img {
        height: 42px;
    }


    .navbar {
        display: none;
    }


    .hero {
        min-height: auto;

        padding: 60px 22px 110px;
    }


    .hero-container {
        grid-template-columns: 1fr;

        gap: 50px;
    }


    .hero-content {
        max-width: 100%;

        text-align: center;
    }


    .hero-content h1 {
        font-size: 43px;
    }


    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }


    .hero-tags {
        justify-content: center;
    }


    .hero-buttons {
        justify-content: center;
    }


    .hero-image-box {
        max-width: 540px;
        height: 500px;
    }


    /* Mobile Bottom Floating Bar */

    .floating-actions {
        top: auto;
        right: 50%;
        bottom: 12px;

        width: calc(100% - 24px);

        flex-direction: row;
        justify-content: center;

        gap: 7px;

        padding: 8px;

        background-color: rgba(248, 245, 238, 0.96);

        border: 1px solid rgba(21, 89, 82, 0.12);
        border-radius: 50px;

        box-shadow: 0 8px 28px rgba(13, 55, 49, 0.16);

        transform: translateX(50%);
    }


    .floating-btn {
        width: 39px;
        height: 39px;

        flex-shrink: 0;

        box-shadow: none;
    }


    .floating-btn svg {
        width: 17px;
        height: 17px;
    }


    .floating-btn:hover {
        transform: translateY(-3px);
    }


    .floating-btn::before,
    .floating-btn::after {
        display: none;
    }

}


/* =================================
   Small Mobile
================================= */

@media screen and (max-width: 520px) {

    .hero {
        padding: 50px 18px 105px;
    }


    .hero-location {
        margin-bottom: 16px;
    }


    .hero-content h1 {
        font-size: 35px;

        line-height: 1.16;
    }


    .hero-description {
        font-size: 14px;
        line-height: 1.7;
    }


    .hero-tags {
        gap: 8px;
    }


    .hero-tags span {
        padding: 8px 12px;

        font-size: 11px;
    }


    .hero-buttons {
        flex-direction: column;
    }


    .primary-btn,
    .secondary-btn {
        width: 100%;
        max-width: 300px;
    }


    .hero-image-box {
        height: 410px;

        border-radius: 12px;
    }


    .image-title span {
        font-size: 19px;
    }


    .image-title p {
        font-size: 16px;
    }


    .floating-actions {
        width: calc(100% - 12px);

        bottom: 6px;

        gap: 5px;

        padding: 7px 5px;
    }


    .floating-btn {
        width: 36px;
        height: 36px;
    }


    .floating-btn svg {
        width: 16px;
        height: 16px;
    }

}
/* =================================
   Site Visit Section
================================= */

.site-visit-section {
    width: 100%;

    padding: 90px 24px;

    background-color: #ffffff;
}


/* Main Cream Card */

.site-visit-card {
    width: 100%;
    max-width: 900px;

    margin: 0 auto;

    padding: 55px 60px;

    background-color: #faf7f0;

    border: 1px solid rgba(190, 153, 87, 0.24);
    border-radius: 14px;

    box-shadow: 0 18px 50px rgba(19, 61, 52, 0.07);
}


/* =================================
   Form Heading
================================= */

.site-visit-heading {
    max-width: 650px;

    margin: 0 auto 42px;

    text-align: center;
}


.site-visit-heading span {
    display: inline-block;

    margin-bottom: 12px;

    color: #bd9957;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 3px;
}


.site-visit-heading h2 {
    margin-bottom: 12px;

    color: #123f35;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 36px;
    font-weight: 500;

    line-height: 1.2;
}


.site-visit-heading p {
    color: #7b817e;

    font-size: 14px;
    line-height: 1.7;
}


/* =================================
   Form Layout
================================= */

.site-visit-form {
    width: 100%;
}


.form-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 22px;
}


.form-group {
    width: 100%;
}


.form-group label {
    display: block;

    margin-bottom: 9px;

    color: #193f36;

    font-size: 13px;
    font-weight: 600;
}


.form-group label span {
    color: #909592;

    font-size: 11px;
    font-weight: 400;
}


/* Input, Select and Textarea */

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 15px 16px;

    color: #173f36;

    background-color: #ffffff;

    border: 1px solid rgba(23, 63, 54, 0.17);
    border-radius: 6px;

    outline: none;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease;
}


.form-group input,
.form-group select {
    height: 51px;
}


.form-group textarea {
    min-height: 115px;

    resize: vertical;
}


.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a2a6a4;
}


/* Form Field Focus */

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    background-color: #ffffff;

    border-color: #bd9957;

    box-shadow: 0 0 0 3px rgba(189, 153, 87, 0.1);
}


/* Full Width Field */

.full-width {
    margin-top: 22px;
}


/* =================================
   Consent Checkbox
================================= */

.consent-box {
    display: flex;
    align-items: flex-start;

    gap: 11px;

    margin-top: 20px;

    cursor: pointer;
}


.consent-box input {
    width: 16px;
    height: 16px;

    margin-top: 2px;

    accent-color: #155952;

    flex-shrink: 0;
}


.consent-box span {
    color: #747a77;

    font-size: 12px;
    line-height: 1.55;
}


/* =================================
   Submit Button
================================= */

.form-submit-btn {
    min-width: 220px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    margin: 30px auto 0;

    padding: 16px 28px;

    color: #ffffff;

    background-color: #155952;

    border: 1px solid #155952;
    border-radius: 6px;

    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    box-shadow: 0 10px 24px rgba(21, 89, 82, 0.18);

    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.form-submit-btn svg {
    width: 18px;
    height: 18px;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;

    transition: transform 0.3s ease;
}


.form-submit-btn:hover {
    background-color: #bd9957;
    border-color: #bd9957;

    transform: translateY(-3px);

    box-shadow: 0 14px 30px rgba(189, 153, 87, 0.25);
}


.form-submit-btn:hover svg {
    transform: translateX(4px);
}


/* =================================
   Site Visit Tablet
================================= */

@media screen and (max-width: 850px) {

    .site-visit-section {
        padding: 70px 22px 105px;
    }


    .site-visit-card {
        padding: 45px 35px;
    }


    .site-visit-heading h2 {
        font-size: 32px;
    }

}


/* =================================
   Site Visit Mobile
================================= */

@media screen and (max-width: 650px) {

    .site-visit-section {
        padding: 55px 16px 100px;
    }


    .site-visit-card {
        padding: 38px 20px;

        border-radius: 10px;
    }


    .site-visit-heading {
        margin-bottom: 32px;
    }


    .site-visit-heading h2 {
        font-size: 29px;
    }


    .site-visit-heading p {
        font-size: 13px;
    }


    .form-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }


    .full-width {
        margin-top: 18px;
    }


    .form-submit-btn {
        width: 100%;
        min-width: 0;
    }

}
/* =================================
   About Section
================================= */

.about-section {
    width: 100%;

    padding: 110px 60px;

    background-color: #ffffff;

    overflow: hidden;
}


.about-container {
    width: 100%;
    max-width: 1240px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.9fr 1fr;
    align-items: center;

    gap: 90px;
}


/* =================================
   About Image
================================= */

.about-image-wrapper {
    position: relative;

    width: 100%;

    padding-bottom: 35px;
}


.about-image-box {
    position: relative;

    width: 100%;
    height: 570px;

    overflow: hidden;

    background-color: #173f36;

    border-radius: 14px;

    box-shadow: 0 25px 65px rgba(18, 63, 53, 0.15);
}


.about-image-box img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.7s ease;
}


.about-image-box:hover img {
    transform: scale(1.04);
}


.about-image-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(8, 42, 34, 0.02) 35%,
            rgba(8, 42, 34, 0.8) 100%
        );
}


/* Image Bottom Label */

.about-image-label {
    position: absolute;

    left: 30px;
    bottom: 35px;

    color: #ffffff;
}


.about-image-label span {
    display: block;

    margin-bottom: 8px;

    color: #d5b574;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;
}


.about-image-label p {
    font-family: Georgia, "Times New Roman", serif;

    font-size: 25px;
}


/* Floating 10 FT Box */

.about-experience-box {
    position: absolute;

    right: -30px;
    bottom: 0;

    width: 190px;
    min-height: 135px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 25px;

    background-color: #f8f3e9;

    border: 1px solid rgba(189, 153, 87, 0.3);
    border-radius: 9px;

    box-shadow: 0 16px 40px rgba(18, 63, 53, 0.13);
}


.about-experience-box strong {
    display: block;

    margin-bottom: 8px;

    color: #155952;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 32px;
    font-weight: 500;
}


.about-experience-box span {
    color: #747a77;

    font-size: 12px;
    line-height: 1.5;
}


/* =================================
   About Right Content
================================= */

.about-content {
    width: 100%;
}


.section-small-title {
    display: inline-block;

    margin-bottom: 17px;

    color: #bd9957;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 3px;
}


.about-content h2 {
    max-width: 620px;

    margin-bottom: 25px;

    color: #143f35;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 44px;
    font-weight: 500;

    line-height: 1.2;
}


.about-content h2 span {
    color: #bd9957;
}


.about-description {
    max-width: 640px;

    margin-bottom: 17px;

    color: #747a77;

    font-size: 15px;
    line-height: 1.8;
}


/* =================================
   About Details
================================= */

.about-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 18px;

    margin-top: 34px;
    margin-bottom: 35px;
}


.about-detail-item {
    display: flex;
    align-items: center;

    gap: 14px;

    min-height: 84px;

    padding: 16px;

    background-color: #faf7f0;

    border: 1px solid rgba(21, 89, 82, 0.1);
    border-radius: 7px;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


.about-detail-item:hover {
    transform: translateY(-4px);

    border-color: rgba(189, 153, 87, 0.45);

    box-shadow: 0 10px 25px rgba(18, 63, 53, 0.08);
}


/* Detail Icon */

.about-detail-icon {
    width: 43px;
    height: 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    color: #bd9957;

    background-color: #ffffff;

    border: 1px solid rgba(189, 153, 87, 0.25);
    border-radius: 50%;
}


.about-detail-icon svg {
    width: 20px;
    height: 20px;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.about-detail-item span {
    display: block;

    margin-bottom: 5px;

    color: #969b98;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 0.6px;
    text-transform: uppercase;
}


.about-detail-item strong {
    display: block;

    color: #173f36;

    font-size: 13px;
    font-weight: 600;

    line-height: 1.4;
}


/* =================================
   About Button
================================= */

.about-button {
    min-width: 190px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 16px 24px;

    color: #ffffff;

    background-color: #155952;

    border: 1px solid #155952;
    border-radius: 6px;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    box-shadow: 0 10px 24px rgba(21, 89, 82, 0.16);

    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.about-button svg {
    width: 18px;
    height: 18px;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;

    transition: transform 0.3s ease;
}


.about-button:hover {
    background-color: #bd9957;
    border-color: #bd9957;

    transform: translateY(-3px);

    box-shadow: 0 14px 30px rgba(189, 153, 87, 0.23);
}


.about-button:hover svg {
    transform: translateX(4px);
}


/* =================================
   About Tablet Responsive
================================= */

@media screen and (max-width: 1050px) {

    .about-section {
        padding: 85px 35px;
    }


    .about-container {
        gap: 55px;
    }


    .about-image-box {
        height: 520px;
    }


    .about-content h2 {
        font-size: 38px;
    }


    .about-details {
        grid-template-columns: 1fr;
    }

}


/* =================================
   About Mobile Responsive
================================= */

@media screen and (max-width: 820px) {

    .about-section {
        padding: 75px 22px 110px;
    }


    .about-container {
        grid-template-columns: 1fr;

        gap: 65px;
    }


    .about-image-wrapper {
        max-width: 580px;

        margin: 0 auto;
    }


    .about-image-box {
        height: 540px;
    }


    .about-experience-box {
        right: 20px;
    }


    .about-content {
        max-width: 650px;

        margin: 0 auto;

        text-align: center;
    }


    .about-content h2,
    .about-description {
        margin-left: auto;
        margin-right: auto;
    }


    .about-details {
        grid-template-columns: repeat(2, 1fr);

        text-align: left;
    }

}


/* =================================
   About Small Mobile
================================= */

@media screen and (max-width: 570px) {

    .about-section {
        padding: 60px 16px 105px;
    }


    .about-image-wrapper {
        padding-bottom: 70px;
    }


    .about-image-box {
        height: 430px;

        border-radius: 10px;
    }


    .about-image-label {
        left: 20px;
        bottom: 24px;
    }


    .about-image-label p {
        font-size: 21px;
    }


    .about-experience-box {
        right: 12px;
        bottom: 0;

        width: 175px;
        min-height: 120px;

        padding: 20px;
    }


    .about-experience-box strong {
        font-size: 28px;
    }


    .about-content h2 {
        font-size: 32px;
    }


    .about-description {
        font-size: 14px;
        line-height: 1.75;
    }


    .about-details {
        grid-template-columns: 1fr;

        gap: 13px;
    }


    .about-detail-item {
        min-height: 76px;
    }


    .about-button {
        width: 100%;
        max-width: 300px;
    }

}
/* =================================
   Project Highlights Section
================================= */

.highlights-section {
    width: 100%;

    padding: 105px 60px;

    background-color: #f8f5ee;
}


.highlights-container {
    width: 100%;
    max-width: 1240px;

    margin: 0 auto;
}


/* =================================
   Highlights Heading
================================= */

.highlights-heading {
    max-width: 700px;

    margin: 0 auto 55px;

    text-align: center;
}


.highlights-heading > span {
    display: inline-block;

    margin-bottom: 15px;

    color: #bd9957;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 3px;
}


.highlights-heading h2 {
    margin-bottom: 16px;

    color: #143f35;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 43px;
    font-weight: 500;

    line-height: 1.22;
}


.highlights-heading h2 strong {
    color: #bd9957;

    font-weight: 500;
}


.highlights-heading p {
    max-width: 620px;

    margin: 0 auto;

    color: #777e7a;

    font-size: 15px;
    line-height: 1.75;
}


/* =================================
   Highlights Grid
================================= */

.highlights-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}


/* =================================
   Highlight Card
================================= */

.highlight-card {
    position: relative;

    min-height: 290px;

    padding: 34px 30px;

    overflow: hidden;

    background-color: #ffffff;

    border: 1px solid rgba(21, 89, 82, 0.11);
    border-radius: 10px;

    box-shadow: 0 12px 35px rgba(18, 63, 53, 0.055);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


.highlight-card::before {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 4px;

    background-color: #bd9957;

    transform: scaleX(0);
    transform-origin: left;

    transition: transform 0.35s ease;
}


.highlight-card:hover {
    transform: translateY(-8px);

    border-color: rgba(189, 153, 87, 0.45);

    box-shadow: 0 20px 45px rgba(18, 63, 53, 0.11);
}


.highlight-card:hover::before {
    transform: scaleX(1);
}


/* Card Background Number */

.highlight-number {
    position: absolute;

    top: 20px;
    right: 22px;

    color: rgba(21, 89, 82, 0.07);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 54px;
    font-weight: 600;

    line-height: 1;
}


/* Highlight Icon */

.highlight-icon {
    width: 56px;
    height: 56px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 27px;

    color: #bd9957;

    background-color: #faf7f0;

    border: 1px solid rgba(189, 153, 87, 0.25);
    border-radius: 50%;

    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.highlight-icon svg {
    width: 25px;
    height: 25px;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.55;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.highlight-card:hover .highlight-icon {
    color: #ffffff;

    background-color: #155952;

    transform: rotate(-5deg) scale(1.05);
}


/* Card Content */

.highlight-card h3 {
    position: relative;

    margin-bottom: 13px;

    color: #153f36;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 21px;
    font-weight: 500;

    line-height: 1.3;
}


.highlight-card p {
    position: relative;

    color: #777e7a;

    font-size: 13px;
    line-height: 1.75;
}


/* =================================
   Highlights Tablet Responsive
================================= */

@media screen and (max-width: 1050px) {

    .highlights-section {
        padding: 85px 35px;
    }


    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .highlights-heading h2 {
        font-size: 38px;
    }

}


/* =================================
   Highlights Mobile Responsive
================================= */

@media screen and (max-width: 700px) {

    .highlights-section {
        padding: 70px 20px 110px;
    }


    .highlights-heading {
        margin-bottom: 40px;
    }


    .highlights-heading h2 {
        font-size: 33px;
    }


    .highlights-heading p {
        font-size: 14px;
    }


    .highlights-grid {
        grid-template-columns: 1fr;

        gap: 16px;
    }


    .highlight-card {
        min-height: auto;

        padding: 30px 25px;
    }

}


/* =================================
   Highlights Small Mobile
================================= */

@media screen and (max-width: 430px) {

    .highlights-section {
        padding-left: 16px;
        padding-right: 16px;
    }


    .highlights-heading h2 {
        font-size: 29px;
    }


    .highlight-card h3 {
        font-size: 19px;
    }


    .highlight-number {
        font-size: 46px;
    }

}
/* =================================
   Connectivity Section
================================= */

.connectivity-section {
    width: 100%;
    padding: 105px 60px;
    background-color: #ffffff;
}


.connectivity-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
}


/* =================================
   Connectivity Heading
================================= */

.connectivity-heading {
    max-width: 720px;
    margin: 0 auto 55px;
    text-align: center;
}


.connectivity-heading > span {
    display: inline-block;
    margin-bottom: 15px;

    color: #bd9957;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 3px;
}


.connectivity-heading h2 {
    margin-bottom: 16px;

    color: #143f35;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 43px;
    font-weight: 500;

    line-height: 1.22;
}


.connectivity-heading h2 strong {
    color: #bd9957;
    font-weight: 500;
}


.connectivity-heading p {
    max-width: 620px;
    margin: 0 auto;

    color: #777e7a;

    font-size: 15px;
    line-height: 1.75;
}


/* =================================
   Connectivity Layout
================================= */

.connectivity-content {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    align-items: stretch;

    gap: 35px;
}


/* =================================
   Left Location Card
================================= */

.location-card {
    position: relative;

    min-height: 410px;

    display: flex;
    align-items: flex-end;

    padding: 42px;

    overflow: hidden;

    color: #ffffff;

    background:
        linear-gradient(
            145deg,
            #155952 0%,
            #0e423a 55%,
            #092f29 100%
        );

    border-radius: 14px;

    box-shadow: 0 22px 55px rgba(18, 63, 53, 0.17);
}


/* Decorative Pattern */

.location-pattern {
    position: absolute;
    inset: 0;

    opacity: 0.18;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.12) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.12) 1px,
            transparent 1px
        );

    background-size: 42px 42px;
}


.location-card::before {
    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    top: -90px;
    right: -80px;

    border: 1px solid rgba(211, 176, 106, 0.35);
    border-radius: 50%;
}


.location-card::after {
    content: "";

    position: absolute;

    width: 165px;
    height: 165px;

    top: -45px;
    right: -40px;

    border: 1px solid rgba(211, 176, 106, 0.25);
    border-radius: 50%;
}


/* Location Pin */

.location-pin {
    position: absolute;

    top: 54px;
    right: 60px;

    width: 75px;
    height: 75px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #143f35;

    background-color: #d1ad69;

    border-radius: 50%;

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);

    z-index: 2;
}


.location-pin svg {
    width: 32px;
    height: 32px;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* Location Content */

.location-card-content {
    position: relative;
    z-index: 2;
}


.location-card-content > span {
    display: block;
    margin-bottom: 13px;

    color: #d5b574;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2.5px;
}


.location-card-content h3 {
    margin-bottom: 12px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 38px;
    font-weight: 500;
}


.location-card-content p {
    margin-bottom: 25px;

    color: rgba(255, 255, 255, 0.74);

    font-size: 14px;
    line-height: 1.7;
}


/* Map Button */

.map-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 13px 18px;

    color: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 5px;

    font-size: 12px;
    font-weight: 600;

    text-decoration: none;

    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.map-button svg {
    width: 16px;
    height: 16px;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;

    transition: transform 0.3s ease;
}


.map-button:hover {
    color: #143f35;
    background-color: #ffffff;

    transform: translateY(-3px);
}


.map-button:hover svg {
    transform: translateX(4px);
}


/* =================================
   Right Connectivity List
================================= */

.connectivity-list {
    display: flex;
    flex-direction: column;

    gap: 18px;
}


/* Connectivity Item */

.connectivity-item {
    min-height: 124px;

    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;

    gap: 22px;

    padding: 25px 28px;

    background-color: #faf7f0;

    border: 1px solid rgba(21, 89, 82, 0.1);
    border-radius: 10px;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease;
}


.connectivity-item:hover {
    transform: translateX(-7px);

    background-color: #ffffff;

    border-color: rgba(189, 153, 87, 0.45);

    box-shadow: 0 15px 35px rgba(18, 63, 53, 0.09);
}


/* Connectivity Icon */

.connectivity-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    color: #bd9957;

    background-color: #ffffff;

    border: 1px solid rgba(189, 153, 87, 0.28);
    border-radius: 50%;

    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        transform 0.3s ease;
}


.connectivity-icon svg {
    width: 26px;
    height: 26px;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.55;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.connectivity-item:hover .connectivity-icon {
    color: #ffffff;
    background-color: #155952;

    transform: scale(1.05);
}


/* Connectivity Information */

.connectivity-info span {
    display: block;
    margin-bottom: 7px;

    color: #989d9a;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 1px;
    text-transform: uppercase;
}


.connectivity-info h3 {
    color: #153f36;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 21px;
    font-weight: 500;
}


/* Time */

.connectivity-time {
    min-width: 73px;

    padding-left: 22px;

    text-align: center;

    border-left: 1px solid rgba(21, 89, 82, 0.13);
}


.connectivity-time strong {
    display: block;

    color: #155952;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 34px;
    font-weight: 500;

    line-height: 1;
}


.connectivity-time span {
    display: block;
    margin-top: 5px;

    color: #989d9a;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1px;
    text-transform: uppercase;
}


/* =================================
   Connectivity Tablet
================================= */

@media screen and (max-width: 1000px) {

    .connectivity-section {
        padding: 85px 35px;
    }


    .connectivity-content {
        grid-template-columns: 1fr;
    }


    .location-card {
        min-height: 370px;
    }


    .connectivity-heading h2 {
        font-size: 38px;
    }

}


/* =================================
   Connectivity Mobile
================================= */

@media screen and (max-width: 650px) {

    .connectivity-section {
        padding: 70px 18px 110px;
    }


    .connectivity-heading {
        margin-bottom: 40px;
    }


    .connectivity-heading h2 {
        font-size: 32px;
    }


    .connectivity-heading p {
        font-size: 14px;
    }


    .location-card {
        min-height: 390px;

        padding: 30px 24px;

        border-radius: 10px;
    }


    .location-pin {
        top: 35px;
        right: 30px;

        width: 62px;
        height: 62px;
    }


    .location-pin svg {
        width: 27px;
        height: 27px;
    }


    .location-card-content h3 {
        font-size: 32px;
    }


    .connectivity-item {
        grid-template-columns: auto 1fr;

        gap: 16px;

        padding: 22px 19px;
    }


    .connectivity-item:hover {
        transform: translateY(-5px);
    }


    .connectivity-time {
        grid-column: 2;

        display: flex;
        align-items: baseline;

        gap: 5px;

        padding-left: 0;

        text-align: left;

        border-left: none;
    }


    .connectivity-time strong {
        font-size: 25px;
    }


    .connectivity-time span {
        margin-top: 0;
    }

}


/* =================================
   Small Mobile
================================= */

@media screen and (max-width: 430px) {

    .connectivity-heading h2 {
        font-size: 29px;
    }


    .location-card {
        min-height: 360px;
    }


    .location-pin {
        width: 54px;
        height: 54px;
    }


    .connectivity-icon {
        width: 50px;
        height: 50px;
    }


    .connectivity-icon svg {
        width: 22px;
        height: 22px;
    }


    .connectivity-info h3 {
        font-size: 18px;
    }

}
/* =================================
   Construction Progress Section
================================= */

.construction-section {
    width: 100%;

    padding: 105px 60px;

    background-color: #f8f5ee;
}


.construction-container {
    width: 100%;
    max-width: 1240px;

    margin: 0 auto;
}


/* =================================
   Construction Heading
================================= */

.construction-heading {
    max-width: 720px;

    margin: 0 auto 55px;

    text-align: center;
}


.construction-heading > span {
    display: inline-block;

    margin-bottom: 15px;

    color: #bd9957;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 3px;
}


.construction-heading h2 {
    margin-bottom: 16px;

    color: #143f35;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 43px;
    font-weight: 500;

    line-height: 1.22;
}


.construction-heading h2 strong {
    color: #bd9957;

    font-weight: 500;
}


.construction-heading p {
    color: #777e7a;

    font-size: 15px;
    line-height: 1.7;
}


/* =================================
   Main Status Card
================================= */

.construction-status-card {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    align-items: center;

    gap: 60px;

    margin-bottom: 35px;
    padding: 38px 42px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #155952 0%,
            #0c3a32 100%
        );

    border-radius: 12px;

    box-shadow: 0 18px 45px rgba(18, 63, 53, 0.18);
}


.status-label {
    display: inline-block;

    margin-bottom: 12px;

    color: #d7b875;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;
}


.construction-status-content h3 {
    margin-bottom: 10px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 29px;
    font-weight: 500;
}


.construction-status-content p {
    max-width: 580px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 14px;
    line-height: 1.7;
}


/* Main Progress Bar */

.progress-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 13px;
}


.progress-top span {
    color: rgba(255, 255, 255, 0.75);

    font-size: 12px;
}


.progress-top strong {
    color: #d7b875;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 28px;
    font-weight: 500;
}


.progress-bar {
    width: 100%;
    height: 8px;

    overflow: hidden;

    background-color: rgba(255, 255, 255, 0.15);

    border-radius: 20px;
}


.progress-fill {
    width: 78%;
    height: 100%;

    background-color: #d1ad69;

    border-radius: 20px;
}


/* =================================
   Construction Grid
================================= */

.construction-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}


/* Construction Card */

.construction-card {
    overflow: hidden;

    background-color: #ffffff;

    border: 1px solid rgba(21, 89, 82, 0.1);
    border-radius: 10px;

    box-shadow: 0 12px 34px rgba(18, 63, 53, 0.06);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


.construction-card:hover {
    transform: translateY(-8px);

    border-color: rgba(189, 153, 87, 0.42);

    box-shadow: 0 20px 45px rgba(18, 63, 53, 0.12);
}


/* Construction Image */

.construction-image {
    position: relative;

    width: 100%;
    height: 230px;

    overflow: hidden;

    background-color: #153f36;
}


.construction-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.6s ease;
}


.construction-card:hover .construction-image img {
    transform: scale(1.05);
}


/* Status Badges */

.construction-badge {
    position: absolute;

    top: 16px;
    right: 16px;

    padding: 8px 12px;

    color: #ffffff;

    background-color: #155952;

    border-radius: 30px;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1px;
    text-transform: uppercase;
}


.construction-badge.active {
    color: #173f36;

    background-color: #d3af6c;
}


.construction-badge.upcoming {
    color: #173f36;

    background-color: #f5eee1;
}


/* Card Content */

.construction-card-content {
    padding: 27px 25px 28px;
}


.construction-card-content > span {
    display: block;

    margin-bottom: 9px;

    color: #bd9957;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2px;
}


.construction-card-content h3 {
    margin-bottom: 11px;

    color: #153f36;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 22px;
    font-weight: 500;
}


.construction-card-content p {
    min-height: 67px;

    color: #777e7a;

    font-size: 13px;
    line-height: 1.7;
}


/* Small Progress */

.card-progress {
    margin-top: 23px;
}


.card-progress-info {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 9px;
}


.card-progress-info span {
    color: #969b98;

    font-size: 10px;
    font-weight: 600;

    text-transform: uppercase;
}


.card-progress-info strong {
    color: #155952;

    font-size: 12px;
}


.small-progress-bar {
    width: 100%;
    height: 5px;

    overflow: hidden;

    background-color: #ece9e1;

    border-radius: 20px;
}


.small-progress-fill {
    height: 100%;

    background-color: #bd9957;

    border-radius: 20px;
}


.small-progress-fill.complete {
    width: 100%;
}


.small-progress-fill.internal {
    width: 72%;
}


.small-progress-fill.finishing {
    width: 35%;
}


/* =================================
   Construction Bottom CTA
================================= */

.construction-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    margin-top: 35px;
    padding: 30px 35px;

    background-color: #ffffff;

    border: 1px solid rgba(189, 153, 87, 0.24);
    border-radius: 10px;
}


.construction-bottom span {
    display: block;

    margin-bottom: 7px;

    color: #bd9957;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2px;
}


.construction-bottom h3 {
    color: #153f36;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 24px;
    font-weight: 500;
}


.construction-button {
    min-width: 175px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 15px 22px;

    color: #ffffff;

    background-color: #155952;

    border-radius: 6px;

    font-size: 13px;
    font-weight: 600;

    text-decoration: none;

    transition:
        background-color 0.3s ease,
        transform 0.3s ease;
}


.construction-button svg {
    width: 17px;
    height: 17px;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;

    transition: transform 0.3s ease;
}


.construction-button:hover {
    background-color: #bd9957;

    transform: translateY(-3px);
}


.construction-button:hover svg {
    transform: translateX(4px);
}


/* =================================
   Construction Tablet
================================= */

@media screen and (max-width: 1000px) {

    .construction-section {
        padding: 85px 35px;
    }


    .construction-status-card {
        grid-template-columns: 1fr;

        gap: 30px;
    }


    .construction-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .construction-heading h2 {
        font-size: 38px;
    }

}


/* =================================
   Construction Mobile
================================= */

@media screen and (max-width: 700px) {

    .construction-section {
        padding: 70px 18px 110px;
    }


    .construction-heading {
        margin-bottom: 40px;
    }


    .construction-heading h2 {
        font-size: 32px;
    }


    .construction-status-card {
        padding: 30px 24px;
    }


    .construction-status-content h3 {
        font-size: 25px;
    }


    .construction-grid {
        grid-template-columns: 1fr;

        gap: 16px;
    }


    .construction-image {
        height: 245px;
    }


    .construction-card-content p {
        min-height: auto;
    }


    .construction-bottom {
        flex-direction: column;
        align-items: flex-start;

        padding: 27px 24px;
    }


    .construction-button {
        width: 100%;
    }

}


/* =================================
   Construction Small Mobile
================================= */

@media screen and (max-width: 430px) {

    .construction-heading h2 {
        font-size: 29px;
    }


    .construction-image {
        height: 215px;
    }


    .construction-bottom h3 {
        font-size: 21px;
    }

}
/* =================================
   Configuration & Pricing Section
================================= */

.pricing-section {
    width: 100%;
    padding: 105px 60px;
    background-color: #ffffff;
}


.pricing-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
}


/* =================================
   Pricing Heading
================================= */

.pricing-heading {
    max-width: 720px;
    margin: 0 auto 55px;
    text-align: center;
}


.pricing-heading > span {
    display: inline-block;
    margin-bottom: 15px;

    color: #bd9957;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 3px;
}


.pricing-heading h2 {
    margin-bottom: 16px;

    color: #143f35;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 43px;
    font-weight: 500;

    line-height: 1.22;
}


.pricing-heading h2 strong {
    color: #bd9957;
    font-weight: 500;
}


.pricing-heading p {
    max-width: 620px;
    margin: 0 auto;

    color: #777e7a;

    font-size: 15px;
    line-height: 1.75;
}


/* =================================
   Pricing Grid
================================= */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}


/* =================================
   Pricing Card
================================= */

.pricing-card {
    position: relative;

    overflow: hidden;

    background-color: #ffffff;

    border: 1px solid rgba(21, 89, 82, 0.13);
    border-radius: 12px;

    box-shadow: 0 12px 35px rgba(18, 63, 53, 0.06);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}


.pricing-card:hover {
    transform: translateY(-8px);

    border-color: rgba(189, 153, 87, 0.5);

    box-shadow: 0 22px 50px rgba(18, 63, 53, 0.12);
}


/* Pricing Card Top */

.pricing-card-top {
    min-height: 235px;

    padding: 32px 25px;

    text-align: center;

    background-color: #faf7f0;

    border-bottom: 1px solid rgba(21, 89, 82, 0.1);
}


.configuration-name {
    display: inline-block;

    margin-bottom: 14px;

    color: #bd9957;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;
}


.pricing-card-top h3 {
    min-height: 56px;

    margin-bottom: 25px;

    color: #143f35;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 21px;
    font-weight: 500;

    line-height: 1.3;
}


/* Carpet Area */

.carpet-area {
    display: flex;
    flex-direction: column;
    align-items: center;
}


.carpet-area strong {
    display: block;

    color: #155952;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 34px;
    font-weight: 500;

    line-height: 1;
}


.carpet-area span {
    display: block;

    margin-top: 8px;

    color: #909692;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 1px;
    text-transform: uppercase;
}


/* Card Body */

.pricing-card-body {
    padding: 27px 24px 28px;
}


/* Price */

.price-row {
    padding-bottom: 22px;

    text-align: center;

    border-bottom: 1px solid rgba(21, 89, 82, 0.1);
}


.price-row span {
    display: block;

    margin-bottom: 8px;

    color: #969c98;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 1px;
    text-transform: uppercase;
}


.price-row strong {
    display: block;

    color: #143f35;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 27px;
    font-weight: 500;
}


/* Features */

.pricing-features {
    list-style: none;

    display: flex;
    flex-direction: column;

    gap: 13px;

    min-height: 125px;

    margin: 24px 0;
}


.pricing-features li {
    display: flex;
    align-items: flex-start;

    gap: 10px;

    color: #747a77;

    font-size: 12px;
    line-height: 1.5;
}


.pricing-features li span {
    width: 19px;
    height: 19px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    color: #155952;

    background-color: #f3ede1;

    border-radius: 50%;

    font-size: 10px;
    font-weight: 700;
}


/* Pricing Button */

.pricing-button {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 14px 18px;

    color: #155952;

    background-color: transparent;

    border: 1px solid #155952;
    border-radius: 6px;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;

    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.pricing-button:hover {
    color: #ffffff;
    background-color: #155952;

    transform: translateY(-2px);
}


/* =================================
   Featured Pricing Card
================================= */

.featured-pricing-card {
    border: 1px solid #bd9957;

    box-shadow: 0 20px 50px rgba(189, 153, 87, 0.15);
}


.featured-pricing-card .pricing-card-top {
    color: #ffffff;

    background:
        linear-gradient(
            140deg,
            #155952 0%,
            #0d3c34 100%
        );
}


.featured-pricing-card .pricing-card-top h3,
.featured-pricing-card .carpet-area strong {
    color: #ffffff;
}


.featured-pricing-card .carpet-area span {
    color: rgba(255, 255, 255, 0.7);
}


.featured-pricing-card .pricing-button {
    color: #ffffff;

    background-color: #155952;
}


.featured-pricing-card .pricing-button:hover {
    background-color: #bd9957;
    border-color: #bd9957;
}


/* Popular Badge */

.popular-badge {
    position: absolute;

    top: 18px;
    right: -38px;

    width: 150px;

    padding: 7px 10px;

    color: #143f35;

    background-color: #d5b574;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;

    transform: rotate(45deg);

    z-index: 2;
}


/* Limited Badge */

.pricing-status {
    position: absolute;

    top: 16px;
    left: 16px;

    padding: 7px 10px;

    color: #ffffff;

    background-color: #155952;

    border-radius: 30px;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.7px;
    text-transform: uppercase;
}


/* =================================
   Pricing Disclaimer
================================= */

.pricing-disclaimer {
    max-width: 900px;

    margin: 28px auto 0;

    color: #949995;

    font-size: 10px;
    line-height: 1.65;

    text-align: center;
}


/* =================================
   Pricing Bottom CTA
================================= */

.pricing-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 35px;

    margin-top: 45px;
    padding: 35px 40px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #155952 0%,
            #0b352e 100%
        );

    border-radius: 12px;

    box-shadow: 0 18px 45px rgba(18, 63, 53, 0.16);
}


.pricing-cta span {
    display: block;

    margin-bottom: 9px;

    color: #d7b875;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2px;
}


.pricing-cta h3 {
    margin-bottom: 7px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 27px;
    font-weight: 500;
}


.pricing-cta p {
    color: rgba(255, 255, 255, 0.7);

    font-size: 13px;
    line-height: 1.6;
}


.pricing-cta-button {
    min-width: 200px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 15px 22px;

    color: #143f35;

    background-color: #d5b574;

    border-radius: 6px;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;

    transition:
        background-color 0.3s ease,
        transform 0.3s ease;
}


.pricing-cta-button svg {
    width: 17px;
    height: 17px;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;

    transition: transform 0.3s ease;
}


.pricing-cta-button:hover {
    background-color: #ffffff;

    transform: translateY(-3px);
}


.pricing-cta-button:hover svg {
    transform: translateX(4px);
}


/* =================================
   Pricing Responsive
================================= */

@media screen and (max-width: 1150px) {

    .pricing-section {
        padding: 85px 35px;
    }


    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .pricing-heading h2 {
        font-size: 38px;
    }

}


@media screen and (max-width: 700px) {

    .pricing-section {
        padding: 70px 18px 110px;
    }


    .pricing-heading {
        margin-bottom: 40px;
    }


    .pricing-heading h2 {
        font-size: 32px;
    }


    .pricing-heading p {
        font-size: 14px;
    }


    .pricing-grid {
        grid-template-columns: 1fr;

        gap: 17px;
    }


    .pricing-card-top {
        min-height: auto;
    }


    .pricing-card-top h3 {
        min-height: auto;
    }


    .pricing-features {
        min-height: auto;
    }


    .pricing-cta {
        flex-direction: column;
        align-items: flex-start;

        padding: 30px 25px;
    }


    .pricing-cta-button {
        width: 100%;
    }

}


@media screen and (max-width: 430px) {

    .pricing-heading h2 {
        font-size: 29px;
    }


    .carpet-area strong {
        font-size: 31px;
    }


    .pricing-cta h3 {
        font-size: 23px;
    }

}
/* =================================
   Gallery Section
================================= */

.gallery-section {
    width: 100%;
    padding: 105px 60px;
    background-color: #f8f5ee;
}


.gallery-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
}


/* =================================
   Gallery Heading
================================= */

.gallery-heading {
    max-width: 720px;
    margin: 0 auto 55px;
    text-align: center;
}


.gallery-heading > span {
    display: inline-block;
    margin-bottom: 15px;

    color: #bd9957;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 3px;
}


.gallery-heading h2 {
    margin-bottom: 16px;

    color: #143f35;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 43px;
    font-weight: 500;

    line-height: 1.22;
}


.gallery-heading h2 strong {
    color: #bd9957;
    font-weight: 500;
}


.gallery-heading p {
    max-width: 620px;
    margin: 0 auto;

    color: #777e7a;

    font-size: 15px;
    line-height: 1.75;
}


/* =================================
   Gallery Grid
================================= */

.gallery-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;

    gap: 18px;
}


/* Gallery Item */

.gallery-item {
    position: relative;

    width: 100%;
    height: 100%;

    overflow: hidden;

    background-color: #143f35;

    border-radius: 11px;

    cursor: pointer;

    box-shadow: 0 12px 30px rgba(18, 63, 53, 0.08);
}


.gallery-large {
    grid-row: span 2;
}


.gallery-wide {
    grid-column: span 2;
}


/* Gallery Images */

.gallery-item img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.7s ease,
        filter 0.5s ease;
}


.gallery-item:hover img {
    transform: scale(1.08);

    filter: brightness(0.8);
}


/* =================================
   Gallery Overlay
================================= */

.gallery-overlay {
    position: absolute;

    inset: 0;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 20px;

    padding: 25px;

    background:
        linear-gradient(
            180deg,
            rgba(6, 34, 28, 0.02) 20%,
            rgba(6, 34, 28, 0.25) 55%,
            rgba(6, 34, 28, 0.9) 100%
        );

    transition: background 0.4s ease;
}


.gallery-item:hover .gallery-overlay {
    background:
        linear-gradient(
            180deg,
            rgba(6, 34, 28, 0.08) 10%,
            rgba(6, 34, 28, 0.35) 50%,
            rgba(6, 34, 28, 0.95) 100%
        );
}


/* Gallery Text */

.gallery-content {
    transform: translateY(8px);

    transition: transform 0.4s ease;
}


.gallery-item:hover .gallery-content {
    transform: translateY(0);
}


.gallery-content span {
    display: block;

    margin-bottom: 8px;

    color: #d7b875;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2px;
}


.gallery-content h3 {
    color: #ffffff;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 21px;
    font-weight: 500;

    line-height: 1.3;
}


/* Gallery Plus Icon */

.gallery-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    color: #143f35;

    background-color: #d5b574;

    border-radius: 50%;

    opacity: 0;

    transform: scale(0.7);

    transition:
        opacity 0.35s ease,
        transform 0.35s ease,
        background-color 0.35s ease;
}


.gallery-icon svg {
    width: 18px;
    height: 18px;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.gallery-item:hover .gallery-icon {
    opacity: 1;

    transform: scale(1);
}


.gallery-icon:hover {
    background-color: #ffffff;
}


/* =================================
   Gallery Bottom CTA
================================= */

.gallery-bottom {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 28px;

    margin-top: 38px;

    text-align: center;
}


.gallery-bottom p {
    color: #777e7a;

    font-size: 14px;
    line-height: 1.6;
}


.gallery-button {
    min-width: 165px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 15px 22px;

    color: #ffffff;

    background-color: #155952;

    border: 1px solid #155952;
    border-radius: 6px;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;

    box-shadow: 0 10px 24px rgba(21, 89, 82, 0.16);

    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}


.gallery-button svg {
    width: 17px;
    height: 17px;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;

    transition: transform 0.3s ease;
}


.gallery-button:hover {
    background-color: #bd9957;
    border-color: #bd9957;

    transform: translateY(-3px);
}


.gallery-button:hover svg {
    transform: translateX(4px);
}


/* =================================
   Gallery Tablet
================================= */

@media screen and (max-width: 1000px) {

    .gallery-section {
        padding: 85px 35px;
    }


    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 270px;
    }


    .gallery-wide {
        grid-column: span 1;
    }


    .gallery-heading h2 {
        font-size: 38px;
    }

}


/* =================================
   Gallery Mobile
================================= */

@media screen and (max-width: 650px) {

    .gallery-section {
        padding: 70px 18px 110px;
    }


    .gallery-heading {
        margin-bottom: 40px;
    }


    .gallery-heading h2 {
        font-size: 32px;
    }


    .gallery-heading p {
        font-size: 14px;
    }


    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 280px;

        gap: 14px;
    }


    .gallery-large {
        grid-row: span 1;
    }


    .gallery-wide {
        grid-column: span 1;
    }


    .gallery-overlay {
        padding: 21px;
    }


    .gallery-icon {
        width: 38px;
        height: 38px;

        opacity: 1;

        transform: scale(1);
    }


    .gallery-bottom {
        flex-direction: column;

        gap: 18px;
    }


    .gallery-button {
        width: 100%;
        max-width: 300px;
    }

}


/* =================================
   Small Mobile
================================= */

@media screen and (max-width: 430px) {

    .gallery-heading h2 {
        font-size: 29px;
    }


    .gallery-grid {
        grid-auto-rows: 240px;
    }


    .gallery-content h3 {
        font-size: 19px;
    }

}
/* =================================
   Download Brochure Section
================================= */

.brochure-section {
    width: 100%;

    padding: 105px 60px;

    background-color: #ffffff;

    overflow: hidden;
}


.brochure-container {
    width: 100%;
    max-width: 1240px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 0.72fr;
    align-items: center;

    gap: 100px;
}


/* =================================
   Brochure Left Content
================================= */

.brochure-content {
    width: 100%;
    max-width: 650px;
}


.brochure-small-title {
    display: inline-block;

    margin-bottom: 17px;

    color: #bd9957;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 3px;
}


.brochure-content h2 {
    margin-bottom: 22px;

    color: #143f35;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 44px;
    font-weight: 500;

    line-height: 1.2;
}


.brochure-content h2 strong {
    color: #bd9957;

    font-weight: 500;
}


.brochure-content > p {
    max-width: 600px;

    margin-bottom: 30px;

    color: #777e7a;

    font-size: 15px;
    line-height: 1.8;
}


/* =================================
   Brochure Features
================================= */

.brochure-features {
    display: flex;
    flex-wrap: wrap;

    gap: 14px;

    margin-bottom: 35px;
}


.brochure-feature {
    display: flex;
    align-items: center;

    gap: 10px;

    min-width: 155px;

    padding: 12px 14px;

    background-color: #faf7f0;

    border: 1px solid rgba(21, 89, 82, 0.1);
    border-radius: 7px;
}


.brochure-feature-icon {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    color: #bd9957;

    background-color: #ffffff;

    border: 1px solid rgba(189, 153, 87, 0.25);
    border-radius: 50%;
}


.brochure-feature-icon svg {
    width: 17px;
    height: 17px;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.brochure-feature span {
    color: #153f36;

    font-size: 12px;
    font-weight: 600;
}


/* =================================
   Brochure Download Button
================================= */

.brochure-download-button {
    min-width: 210px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 11px;

    padding: 16px 24px;

    color: #ffffff;

    background-color: #155952;

    border: 1px solid #155952;
    border-radius: 6px;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    box-shadow: 0 10px 26px rgba(21, 89, 82, 0.18);

    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.brochure-download-button svg {
    width: 19px;
    height: 19px;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;

    transition: transform 0.3s ease;
}


.brochure-download-button:hover {
    background-color: #bd9957;
    border-color: #bd9957;

    transform: translateY(-3px);

    box-shadow: 0 14px 32px rgba(189, 153, 87, 0.25);
}


.brochure-download-button:hover svg {
    transform: translateY(3px);
}


/* =================================
   Brochure Right Visual
================================= */

.brochure-visual {
    position: relative;

    width: 100%;

    display: flex;
    justify-content: center;

    padding: 35px 35px 55px;
}


/* Brochure Cover */

.brochure-cover {
    position: relative;

    width: 310px;
    height: 430px;

    overflow: hidden;

    color: #ffffff;

    background:
        linear-gradient(
            145deg,
            #155952 0%,
            #0e4138 55%,
            #082d27 100%
        );

    border: 1px solid rgba(189, 153, 87, 0.55);
    border-radius: 7px;

    box-shadow: 25px 30px 60px rgba(18, 63, 53, 0.22);

    transform: rotate(3deg);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}


.brochure-cover:hover {
    transform: rotate(0deg) translateY(-6px);

    box-shadow: 20px 38px 70px rgba(18, 63, 53, 0.28);
}


/* Decorative Pattern */

.brochure-cover-pattern {
    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 75% 20%,
            rgba(213, 181, 116, 0.25),
            transparent 30%
        ),
        linear-gradient(
            120deg,
            transparent 0%,
            transparent 55%,
            rgba(213, 181, 116, 0.08) 55%,
            rgba(213, 181, 116, 0.08) 56%,
            transparent 56%
        );
}


.brochure-cover::before {
    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    top: -100px;
    right: -120px;

    border: 1px solid rgba(213, 181, 116, 0.25);
    border-radius: 50%;
}


.brochure-cover::after {
    content: "";

    position: absolute;

    width: 175px;
    height: 175px;

    top: -55px;
    right: -75px;

    border: 1px solid rgba(213, 181, 116, 0.18);
    border-radius: 50%;
}


/* Cover Content */

.brochure-cover-content {
    position: absolute;

    top: 47%;
    left: 50%;

    width: 100%;

    padding: 30px;

    text-align: center;

    transform: translate(-50%, -50%);

    z-index: 2;
}


.brochure-cover-content > span {
    display: block;

    margin-bottom: 4px;

    color: rgba(255, 255, 255, 0.75);

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 5px;
}


.brochure-cover-content h3 {
    margin-bottom: 13px;

    color: #d8b977;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 38px;
    font-weight: 500;

    letter-spacing: 3px;
}


.brochure-cover-content p {
    margin-bottom: 14px;

    color: rgba(255, 255, 255, 0.8);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 17px;
    line-height: 1.5;
}


.brochure-cover-content small {
    color: #d8b977;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 3px;
}


/* Cover Bottom */

.brochure-cover-bottom {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    padding: 18px;

    text-align: center;

    background-color: rgba(5, 32, 27, 0.5);

    border-top: 1px solid rgba(213, 181, 116, 0.25);

    z-index: 2;
}


.brochure-cover-bottom span {
    color: rgba(255, 255, 255, 0.72);

    font-size: 8px;
    font-weight: 600;

    letter-spacing: 1.8px;
}


/* =================================
   PDF Badge
================================= */

.pdf-badge {
    position: absolute;

    left: 10px;
    bottom: 8px;

    min-width: 190px;

    display: flex;
    align-items: center;

    gap: 13px;

    padding: 16px 18px;

    background-color: #faf7f0;

    border: 1px solid rgba(189, 153, 87, 0.3);
    border-radius: 8px;

    box-shadow: 0 14px 35px rgba(18, 63, 53, 0.14);

    z-index: 3;
}


.pdf-badge svg {
    width: 35px;
    height: 35px;

    fill: none;
    stroke: #bd9957;

    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;

    flex-shrink: 0;
}


.pdf-badge strong {
    display: block;

    margin-bottom: 4px;

    color: #155952;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1px;
}


.pdf-badge span {
    display: block;

    color: #8b918e;

    font-size: 10px;
}


/* =================================
   Brochure Tablet Responsive
================================= */

@media screen and (max-width: 1000px) {

    .brochure-section {
        padding: 85px 35px;
    }


    .brochure-container {
        gap: 55px;
    }


    .brochure-content h2 {
        font-size: 38px;
    }


    .brochure-cover {
        width: 280px;
        height: 400px;
    }

}


/* =================================
   Brochure Mobile Responsive
================================= */

@media screen and (max-width: 800px) {

    .brochure-section {
        padding: 75px 22px 115px;
    }


    .brochure-container {
        grid-template-columns: 1fr;

        gap: 65px;
    }


    .brochure-content {
        max-width: 650px;

        margin: 0 auto;

        text-align: center;
    }


    .brochure-content > p {
        margin-left: auto;
        margin-right: auto;
    }


    .brochure-features {
        justify-content: center;
    }


    .brochure-visual {
        max-width: 500px;

        margin: 0 auto;
    }

}


/* =================================
   Brochure Small Mobile
================================= */

@media screen and (max-width: 520px) {

    .brochure-section {
        padding: 60px 16px 105px;
    }


    .brochure-content h2 {
        font-size: 31px;
    }


    .brochure-content > p {
        font-size: 14px;
    }


    .brochure-features {
        flex-direction: column;
    }


    .brochure-feature {
        width: 100%;
    }


    .brochure-download-button {
        width: 100%;
        max-width: 300px;
    }


    .brochure-visual {
        padding: 20px 5px 75px;
    }


    .brochure-cover {
        width: 255px;
        height: 370px;
    }


    .brochure-cover-content h3 {
        font-size: 32px;
    }


    .pdf-badge {
        left: 50%;
        bottom: 0;

        transform: translateX(-50%);
    }

}
/* ==================================================
   LOCATION & CONTACT SECTION
================================================== */

.contact-section {
    width: 100%;
    padding: 105px 60px;
    background-color: #f8f5ee;
}

.contact-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
}


/* Contact Section Heading */

.contact-heading {
    max-width: 720px;
    margin: 0 auto 55px;
    text-align: center;
}

.contact-heading > span {
    display: inline-block;
    margin-bottom: 15px;

    color: #bd9957;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
}

.contact-heading h2 {
    margin-bottom: 16px;

    color: #143f35;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 43px;
    font-weight: 500;
    line-height: 1.22;
}

.contact-heading h2 strong {
    color: #bd9957;
    font-weight: 500;
}

.contact-heading p {
    max-width: 620px;
    margin: 0 auto;

    color: #777e7a;

    font-size: 15px;
    line-height: 1.75;
}


/* Contact Main Layout */

.contact-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: stretch;

    gap: 28px;
}


/* ==================================================
   LOCATION MAP
================================================== */

.contact-map {
    position: relative;

    width: 100%;
    min-height: 650px;

    overflow: hidden;

    background-color: #143f35;

    border: 1px solid rgba(21, 89, 82, 0.12);
    border-radius: 14px;

    box-shadow: 0 18px 45px rgba(18, 63, 53, 0.09);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 650px;

    display: block;

    border: 0;

    filter: saturate(0.85) contrast(0.95);
}


/* Address Card on Map */

.map-address-card {
    position: absolute;

    left: 25px;
    right: 25px;
    bottom: 25px;

    display: flex;
    align-items: center;

    gap: 15px;

    padding: 20px 22px;

    background-color: rgba(12, 55, 47, 0.93);

    border: 1px solid rgba(213, 181, 116, 0.35);
    border-radius: 9px;

    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.map-address-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    color: #143f35;
    background-color: #d5b574;

    border-radius: 50%;
}

.map-address-icon svg {
    width: 22px;
    height: 22px;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.map-address-card span {
    display: block;
    margin-bottom: 6px;

    color: #d5b574;

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}

.map-address-card strong {
    display: block;

    color: #ffffff;

    font-size: 13px;
    font-weight: 500;
    line-height: 1.55;
}


/* ==================================================
   CONTACT FORM CARD
================================================== */

.contact-form-card {
    width: 100%;
    padding: 42px 40px;

    background-color: #ffffff;

    border: 1px solid rgba(21, 89, 82, 0.11);
    border-radius: 14px;

    box-shadow: 0 18px 45px rgba(18, 63, 53, 0.08);
}

.contact-form-label {
    display: inline-block;
    margin-bottom: 13px;

    color: #bd9957;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.contact-form-card > h3 {
    margin-bottom: 12px;

    color: #143f35;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 31px;
    font-weight: 500;
    line-height: 1.25;
}

.contact-form-card > p {
    margin-bottom: 28px;

    color: #777e7a;

    font-size: 13px;
    line-height: 1.7;
}


/* Contact Form */

.contact-form {
    width: 100%;
}

.contact-form-group {
    width: 100%;
    margin-bottom: 17px;
}

.contact-form-group label {
    display: block;
    margin-bottom: 8px;

    color: #153f36;

    font-size: 12px;
    font-weight: 600;
}

.contact-form-group input,
.contact-form-group select {
    width: 100%;
    height: 50px;

    padding: 0 15px;

    color: #153f36;
    background-color: #faf9f6;

    border: 1px solid rgba(21, 89, 82, 0.15);
    border-radius: 6px;

    outline: none;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease;
}

.contact-form-group input::placeholder {
    color: #a1a5a3;
}

.contact-form-group input:focus,
.contact-form-group select:focus {
    background-color: #ffffff;

    border-color: #bd9957;

    box-shadow: 0 0 0 3px rgba(189, 153, 87, 0.1);
}


/* Consent Checkbox */

.contact-consent {
    display: flex;
    align-items: flex-start;

    gap: 10px;

    margin-top: 4px;

    cursor: pointer;
}

.contact-consent input {
    width: 16px;
    height: 16px;

    margin-top: 2px;

    accent-color: #155952;

    flex-shrink: 0;
}

.contact-consent span {
    color: #7d8380;

    font-size: 11px;
    line-height: 1.55;
}


/* Contact Submit Button */

.contact-submit-button {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    margin-top: 24px;
    padding: 16px 24px;

    color: #ffffff;
    background-color: #155952;

    border: 1px solid #155952;
    border-radius: 6px;

    font-size: 13px;
    font-weight: 700;

    cursor: pointer;

    box-shadow: 0 10px 25px rgba(21, 89, 82, 0.17);

    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.contact-submit-button svg {
    width: 18px;
    height: 18px;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;

    transition: transform 0.3s ease;
}

.contact-submit-button:hover {
    background-color: #bd9957;
    border-color: #bd9957;

    transform: translateY(-3px);

    box-shadow: 0 14px 30px rgba(189, 153, 87, 0.24);
}

.contact-submit-button:hover svg {
    transform: translateX(4px);
}


/* ==================================================
   QUICK CONTACT CARDS
================================================== */

.quick-contact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 12px;

    margin-top: 25px;
    padding-top: 25px;

    border-top: 1px solid rgba(21, 89, 82, 0.1);
}

.quick-contact > a {
    display: flex;
    align-items: center;

    gap: 11px;

    padding: 12px;

    color: inherit;
    background-color: #faf7f0;

    border: 1px solid rgba(21, 89, 82, 0.09);
    border-radius: 7px;

    text-decoration: none;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background-color 0.3s ease;
}

.quick-contact > a:hover {
    transform: translateY(-3px);

    background-color: #ffffff;

    border-color: rgba(189, 153, 87, 0.45);
}

.quick-contact-icon {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    color: #ffffff;
    background-color: #155952;

    border-radius: 50%;
}

.quick-contact-icon svg {
    width: 17px;
    height: 17px;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.quick-contact span {
    display: block;
    margin-bottom: 4px;

    color: #969b98;

    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
}

.quick-contact strong {
    display: block;

    color: #153f36;

    font-size: 11px;
    font-weight: 600;
}


/* ==================================================
   PREMIUM FOOTER
================================================== */

.premium-footer {
    position: relative;

    width: 100%;

    padding-top: 115px;

    color: #ffffff;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(205, 168, 101, 0.08),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #0b342d 0%,
            #062720 60%,
            #041f1a 100%
        );
}


/* ==================================================
   FOOTER TOP CTA
================================================== */

.footer-cta-wrapper {
    position: absolute;

    top: -62px;
    left: 0;

    width: 100%;

    padding: 0 60px;
}

.footer-cta-box {
    width: 100%;
    max-width: 1240px;
    min-height: 125px;

    margin: 0 auto;
    padding: 30px 38px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 35px;

    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(255, 255, 255, 0.18),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #c7a15e 0%,
            #b88d45 100%
        );

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 14px;

    box-shadow: 0 22px 55px rgba(4, 31, 26, 0.25);
}

.footer-cta-text > span {
    display: block;
    margin-bottom: 8px;

    color: rgba(7, 45, 38, 0.75);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2.5px;
}

.footer-cta-text h2 {
    margin-bottom: 7px;

    color: #0b382f;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 29px;
    font-weight: 500;
}

.footer-cta-text p {
    color: rgba(7, 45, 38, 0.72);

    font-size: 13px;
    line-height: 1.6;
}


/* Footer CTA Buttons */

.footer-cta-actions {
    display: flex;
    align-items: center;

    gap: 12px;

    flex-shrink: 0;
}

.footer-cta-primary,
.footer-cta-secondary {
    min-width: 150px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 14px 20px;

    border-radius: 6px;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;

    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.footer-cta-primary {
    color: #ffffff;
    background-color: #0f4e43;

    border: 1px solid #0f4e43;
}

.footer-cta-secondary {
    color: #0b382f;
    background-color: rgba(255, 255, 255, 0.18);

    border: 1px solid rgba(11, 56, 47, 0.35);
}

.footer-cta-primary svg,
.footer-cta-secondary svg {
    width: 17px;
    height: 17px;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;

    transition: transform 0.3s ease;
}

.footer-cta-primary:hover {
    color: #0b382f;
    background-color: #ffffff;
    border-color: #ffffff;

    transform: translateY(-3px);
}

.footer-cta-primary:hover svg {
    transform: translateX(4px);
}

.footer-cta-secondary:hover {
    color: #ffffff;
    background-color: #0f4e43;
    border-color: #0f4e43;

    transform: translateY(-3px);
}


/* ==================================================
   FOOTER MAIN CONTAINER
================================================== */

.premium-footer-container {
    width: 100%;
    max-width: 1360px;

    margin: 0 auto;
    padding: 65px 60px 25px;
}

.premium-footer-grid {
    display: grid;
    grid-template-columns: 1.45fr 0.75fr 0.9fr 1.2fr;

    gap: 55px;

    padding-bottom: 50px;
}


/* ==================================================
   FOOTER BRAND COLUMN
================================================== */

.premium-footer-logo {
    display: inline-flex;

    margin-bottom: 22px;
}

.premium-footer-logo img {
    width: auto;
    height: 65px;

    display: block;

    object-fit: contain;
}

.footer-brand-description {
    max-width: 390px;

    color: rgba(255, 255, 255, 0.61);

    font-size: 12px;
    line-height: 1.85;
}

.footer-project-tags {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;

    margin-top: 22px;
}

.footer-project-tags span {
    padding: 7px 11px;

    color: #d6b675;
    background-color: rgba(255, 255, 255, 0.035);

    border: 1px solid rgba(214, 182, 117, 0.22);
    border-radius: 30px;

    font-size: 9px;
    letter-spacing: 0.5px;
}


/* Footer Social Icons */

.footer-social-icons {
    display: flex;

    gap: 10px;

    margin-top: 23px;
}

.footer-social-icons a {
    width: 39px;
    height: 39px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #d6b675;
    background-color: rgba(255, 255, 255, 0.035);

    border: 1px solid rgba(214, 182, 117, 0.25);
    border-radius: 50%;

    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        transform 0.3s ease;
}

.footer-social-icons svg {
    width: 17px;
    height: 17px;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-social-icons a:hover {
    color: #0b382f;
    background-color: #d6b675;

    transform: translateY(-4px);
}


/* ==================================================
   FOOTER LINK COLUMNS
================================================== */

.premium-footer-column h3 {
    position: relative;

    margin-bottom: 26px;
    padding-bottom: 13px;

    color: #ffffff;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    font-weight: 500;
}

.premium-footer-column h3::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 32px;
    height: 1px;

    background-color: #d6b675;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 14px;
}

.footer-links a {
    position: relative;

    padding-left: 14px;

    color: rgba(255, 255, 255, 0.58);

    font-size: 11px;
    line-height: 1.5;

    text-decoration: none;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.footer-links a::before {
    content: "";

    position: absolute;

    top: 7px;
    left: 0;

    width: 5px;
    height: 5px;

    background-color: #d6b675;

    border-radius: 50%;
}

.footer-links a:hover {
    color: #ffffff;

    transform: translateX(5px);
}


/* ==================================================
   FOOTER CONTACT DETAILS
================================================== */

.premium-contact-item {
    display: flex;
    align-items: flex-start;

    gap: 13px;

    margin-bottom: 18px;
}

.premium-contact-icon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    color: #d6b675;
    background-color: rgba(255, 255, 255, 0.035);

    border: 1px solid rgba(214, 182, 117, 0.22);
    border-radius: 50%;
}

.premium-contact-icon svg {
    width: 17px;
    height: 17px;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.premium-contact-item span {
    display: block;
    margin-bottom: 5px;

    color: #d6b675;

    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.premium-contact-item p,
.premium-contact-item a {
    color: rgba(255, 255, 255, 0.63);

    font-size: 11px;
    line-height: 1.65;

    text-decoration: none;

    transition: color 0.3s ease;
}

.premium-contact-item a:hover {
    color: #ffffff;
}


/* Footer Map Button */

.footer-map-button {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    margin-top: 5px;
    padding: 11px 15px;

    color: #d6b675;

    border: 1px solid rgba(214, 182, 117, 0.3);
    border-radius: 5px;

    font-size: 10px;
    font-weight: 700;

    text-decoration: none;

    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        transform 0.3s ease;
}

.footer-map-button svg {
    width: 15px;
    height: 15px;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;

    transition: transform 0.3s ease;
}

.footer-map-button:hover {
    color: #0b382f;
    background-color: #d6b675;

    transform: translateY(-3px);
}

.footer-map-button:hover svg {
    transform: translateX(3px);
}


/* ==================================================
   FOOTER PROJECT INFORMATION STRIP
================================================== */

.footer-info-strip {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1.4fr auto 1fr;
    align-items: center;

    gap: 25px;

    padding: 23px 28px;

    background-color: rgba(255, 255, 255, 0.035);

    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 9px;
}

.footer-info-item span {
    display: block;
    margin-bottom: 6px;

    color: rgba(255, 255, 255, 0.4);

    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.footer-info-item strong {
    color: rgba(255, 255, 255, 0.78);

    font-size: 11px;
    font-weight: 500;
}

.footer-info-divider {
    width: 1px;
    height: 35px;

    background-color: rgba(255, 255, 255, 0.1);
}


/* ==================================================
   FOOTER DISCLAIMER
================================================== */

.premium-footer-disclaimer {
    margin-top: 30px;
    padding: 24px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.premium-footer-disclaimer strong {
    display: block;
    margin-bottom: 9px;

    color: #d6b675;

    font-size: 9px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.premium-footer-disclaimer p {
    color: rgba(255, 255, 255, 0.36);

    font-size: 8.5px;
    line-height: 1.8;
    text-align: justify;
}


/* ==================================================
   FOOTER BOTTOM
================================================== */

.premium-footer-bottom {
    min-height: 75px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;
}

.premium-footer-bottom > p {
    color: rgba(255, 255, 255, 0.42);

    font-size: 9px;
}

.premium-footer-bottom-links {
    display: flex;
    align-items: center;

    gap: 12px;
}

.premium-footer-bottom-links a {
    color: rgba(255, 255, 255, 0.42);

    font-size: 9px;

    text-decoration: none;

    transition: color 0.3s ease;
}

.premium-footer-bottom-links a:hover {
    color: #d6b675;
}

.premium-footer-bottom-links span {
    width: 3px;
    height: 3px;

    background-color: rgba(214, 182, 117, 0.55);

    border-radius: 50%;
}


/* Back to Top */

.back-to-top {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    color: #d6b675;

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;

    text-decoration: none;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.back-to-top svg {
    width: 15px;
    height: 15px;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.back-to-top:hover {
    color: #ffffff;

    transform: translateY(-3px);
}


/* ==================================================
   TABLET RESPONSIVE
================================================== */

@media screen and (max-width: 1050px) {

    .contact-section {
        padding: 85px 35px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-map,
    .contact-map iframe {
        min-height: 500px;
    }

    .contact-heading h2 {
        font-size: 38px;
    }


    .footer-cta-wrapper {
        padding: 0 35px;
    }

    .footer-cta-box {
        padding: 28px 30px;
    }

    .premium-footer-container {
        padding-left: 35px;
        padding-right: 35px;
    }

    .premium-footer-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 48px;
    }

    .footer-info-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-info-divider {
        display: none;
    }

}


/* ==================================================
   MOBILE RESPONSIVE
================================================== */

@media screen and (max-width: 700px) {

    .contact-section {
        padding: 70px 18px 135px;
    }

    .contact-heading {
        margin-bottom: 40px;
    }

    .contact-heading h2 {
        font-size: 32px;
    }

    .contact-heading p {
        font-size: 14px;
    }

    .contact-map,
    .contact-map iframe {
        min-height: 430px;
    }

    .map-address-card {
        left: 14px;
        right: 14px;
        bottom: 14px;

        padding: 16px;
    }

    .map-address-icon {
        width: 42px;
        height: 42px;
    }

    .contact-form-card {
        padding: 32px 22px;

        border-radius: 10px;
    }

    .contact-form-card > h3 {
        font-size: 27px;
    }

    .quick-contact {
        grid-template-columns: 1fr;
    }


    /* Premium Footer */

    .premium-footer {
        padding-top: 190px;
    }

    .footer-cta-wrapper {
        top: -85px;

        padding: 0 18px;
    }

    .footer-cta-box {
        flex-direction: column;

        padding: 30px 22px;

        text-align: center;
    }

    .footer-cta-text h2 {
        font-size: 25px;
    }

    .footer-cta-actions {
        width: 100%;

        flex-direction: column;
    }

    .footer-cta-primary,
    .footer-cta-secondary {
        width: 100%;
        max-width: 300px;
    }

    .premium-footer-container {
        padding: 45px 20px 100px;
    }

    .premium-footer-grid {
        grid-template-columns: 1fr;

        gap: 42px;

        text-align: center;
    }

    .footer-brand-description {
        margin: 0 auto;
    }

    .premium-footer-logo,
    .footer-social-icons,
    .footer-project-tags {
        justify-content: center;
    }

    .premium-footer-column h3::after {
        left: 50%;

        transform: translateX(-50%);
    }

    .footer-links {
        align-items: center;
    }

    .footer-links a {
        padding-left: 0;
    }

    .footer-links a::before {
        display: none;
    }

    .premium-contact-item {
        max-width: 280px;

        margin-left: auto;
        margin-right: auto;

        text-align: left;
    }

    .footer-map-button {
        justify-content: center;
    }

    .footer-info-strip {
        grid-template-columns: 1fr;

        gap: 20px;

        text-align: center;
    }

    .premium-footer-disclaimer p {
        text-align: left;
    }

    .premium-footer-bottom {
        flex-direction: column;

        padding: 25px 0;

        text-align: center;
    }

    .premium-footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }

}


/* ==================================================
   SMALL MOBILE RESPONSIVE
================================================== */

@media screen and (max-width: 430px) {

    .contact-heading h2 {
        font-size: 29px;
    }

    .contact-map,
    .contact-map iframe {
        min-height: 390px;
    }

    .map-address-card strong {
        font-size: 11px;
    }

    .contact-form-card {
        padding: 28px 18px;
    }


    .premium-footer {
        padding-top: 205px;
    }

    .footer-cta-text h2 {
        font-size: 23px;
    }

    .premium-footer-logo img {
        height: 55px;
    }

    .premium-footer-bottom-links span {
        display: none;
    }

    .premium-footer-bottom-links {
        flex-direction: column;
    }

}
/* ==================================================
   FINAL CTA SECTION
================================================== */

.final-cta-section {
    width: 100%;
    padding: 85px 60px 150px;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(213, 181, 116, 0.16),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #155952 0%,
            #0c3b33 55%,
            #082d27 100%
        );

    overflow: hidden;
}


.final-cta-container {
    width: 100%;
    max-width: 1240px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 50px;
}


/* Left Content */

.final-cta-content {
    max-width: 720px;
}


.final-cta-content > span {
    display: inline-block;

    margin-bottom: 14px;

    color: #d8b977;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 3px;
}


.final-cta-content h2 {
    margin-bottom: 15px;

    color: #ffffff;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 43px;
    font-weight: 500;

    line-height: 1.2;
}


.final-cta-content h2 strong {
    color: #d8b977;

    font-weight: 500;
}


.final-cta-content p {
    max-width: 630px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 14px;
    line-height: 1.75;
}


/* CTA Buttons */

.final-cta-buttons {
    display: flex;
    align-items: center;

    gap: 13px;

    flex-shrink: 0;
}


.final-primary-button,
.final-secondary-button {
    min-width: 165px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 16px 22px;

    border-radius: 6px;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;

    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.final-primary-button {
    color: #143f35;

    background-color: #d8b977;

    border: 1px solid #d8b977;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.14);
}


.final-secondary-button {
    color: #ffffff;

    background-color: transparent;

    border: 1px solid rgba(255, 255, 255, 0.55);
}


.final-primary-button svg,
.final-secondary-button svg {
    width: 17px;
    height: 17px;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;

    transition: transform 0.3s ease;
}


.final-primary-button:hover {
    color: #143f35;

    background-color: #ffffff;
    border-color: #ffffff;

    transform: translateY(-3px);

    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}


.final-primary-button:hover svg {
    transform: translateX(4px);
}


.final-secondary-button:hover {
    color: #143f35;

    background-color: #ffffff;
    border-color: #ffffff;

    transform: translateY(-3px);
}
/* ==================================================
   PREMIUM FOOTER
================================================== */

.premium-footer {
    position: relative;

    width: 100%;

    padding-top: 110px;

    color: #ffffff;

    background:
        radial-gradient(
            circle at 12% 20%,
            rgba(213, 181, 116, 0.08),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #0b342d 0%,
            #062720 60%,
            #041f1a 100%
        );
}


/* ==================================================
   FOOTER TOP CTA CARD
================================================== */

.footer-cta-wrapper {
    position: absolute;

    top: -65px;
    left: 0;

    width: 100%;

    padding: 0 60px;
}


.footer-cta-box {
    width: 100%;
    max-width: 1240px;
    min-height: 130px;

    margin: 0 auto;
    padding: 30px 38px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 35px;

    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(255, 255, 255, 0.18),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #c9a45f 0%,
            #b88d45 100%
        );

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 14px;

    box-shadow: 0 22px 55px rgba(4, 31, 26, 0.28);
}


.footer-cta-text > span {
    display: block;

    margin-bottom: 8px;

    color: rgba(7, 45, 38, 0.75);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 2.5px;
}


.footer-cta-text h2 {
    margin-bottom: 7px;

    color: #0b382f;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 29px;
    font-weight: 500;
}


.footer-cta-text p {
    color: rgba(7, 45, 38, 0.72);

    font-size: 13px;
    line-height: 1.6;
}


/* Footer CTA Buttons */

.footer-cta-actions {
    display: flex;
    align-items: center;

    gap: 12px;

    flex-shrink: 0;
}


.footer-cta-primary,
.footer-cta-secondary {
    min-width: 150px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 14px 20px;

    border-radius: 6px;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;

    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}


.footer-cta-primary {
    color: #ffffff;

    background-color: #0f4e43;

    border: 1px solid #0f4e43;
}


.footer-cta-secondary {
    color: #0b382f;

    background-color: rgba(255, 255, 255, 0.18);

    border: 1px solid rgba(11, 56, 47, 0.35);
}


.footer-cta-primary svg,
.footer-cta-secondary svg {
    width: 17px;
    height: 17px;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;

    transition: transform 0.3s ease;
}


.footer-cta-primary:hover {
    color: #0b382f;

    background-color: #ffffff;
    border-color: #ffffff;

    transform: translateY(-3px);
}


.footer-cta-primary:hover svg {
    transform: translateX(4px);
}


.footer-cta-secondary:hover {
    color: #ffffff;

    background-color: #0f4e43;
    border-color: #0f4e43;

    transform: translateY(-3px);
}


/* ==================================================
   FOOTER MAIN CONTAINER
================================================== */

.premium-footer-container {
    width: 100%;
    max-width: 1360px;

    margin: 0 auto;

    padding: 65px 60px 25px;
}


.premium-footer-grid {
    display: grid;

    grid-template-columns: 1.4fr 0.75fr 0.9fr 1.2fr;

    gap: 55px;

    padding-bottom: 50px;
}


/* ==================================================
   FOOTER LOGO AND BRAND
================================================== */

.premium-footer-logo {
    display: inline-flex;

    margin-bottom: 22px;

    text-decoration: none;
}


.premium-footer-logo img {
    width: auto;
    height: 65px;

    display: block;

    object-fit: contain;
}


.footer-brand-description {
    max-width: 390px;

    color: rgba(255, 255, 255, 0.61);

    font-size: 12px;
    line-height: 1.85;
}


/* Project Tags */

.footer-project-tags {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;

    margin-top: 22px;
}


.footer-project-tags span {
    padding: 7px 11px;

    color: #d6b675;

    background-color: rgba(255, 255, 255, 0.035);

    border: 1px solid rgba(214, 182, 117, 0.22);
    border-radius: 30px;

    font-size: 9px;
    letter-spacing: 0.5px;
}


/* Social Icons */

.footer-social-icons {
    display: flex;

    gap: 10px;

    margin-top: 23px;
}


.footer-social-icons a {
    width: 39px;
    height: 39px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #d6b675;

    background-color: rgba(255, 255, 255, 0.035);

    border: 1px solid rgba(214, 182, 117, 0.25);
    border-radius: 50%;

    text-decoration: none;

    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        transform 0.3s ease;
}


.footer-social-icons svg {
    width: 17px;
    height: 17px;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.footer-social-icons a:hover {
    color: #0b382f;

    background-color: #d6b675;

    transform: translateY(-4px);
}


/* ==================================================
   FOOTER COLUMNS
================================================== */

.premium-footer-column h3 {
    position: relative;

    margin-bottom: 26px;
    padding-bottom: 13px;

    color: #ffffff;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 18px;
    font-weight: 500;
}


.premium-footer-column h3::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 32px;
    height: 1px;

    background-color: #d6b675;
}


/* Footer Links */

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 14px;
}


.footer-links a {
    position: relative;

    padding-left: 14px;

    color: rgba(255, 255, 255, 0.58);

    font-size: 11px;
    line-height: 1.5;

    text-decoration: none;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}


.footer-links a::before {
    content: "";

    position: absolute;

    top: 7px;
    left: 0;

    width: 5px;
    height: 5px;

    background-color: #d6b675;

    border-radius: 50%;
}


.footer-links a:hover {
    color: #ffffff;

    transform: translateX(5px);
}


/* ==================================================
   FOOTER CONTACT DETAILS
================================================== */

.premium-contact-item {
    display: flex;
    align-items: flex-start;

    gap: 13px;

    margin-bottom: 18px;
}


.premium-contact-icon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    color: #d6b675;

    background-color: rgba(255, 255, 255, 0.035);

    border: 1px solid rgba(214, 182, 117, 0.22);
    border-radius: 50%;
}


.premium-contact-icon svg {
    width: 17px;
    height: 17px;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.premium-contact-item span {
    display: block;

    margin-bottom: 5px;

    color: #d6b675;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1.3px;
    text-transform: uppercase;
}


.premium-contact-item p,
.premium-contact-item a {
    color: rgba(255, 255, 255, 0.63);

    font-size: 11px;
    line-height: 1.65;

    text-decoration: none;

    transition: color 0.3s ease;
}


.premium-contact-item a:hover {
    color: #ffffff;
}


/* View Location Button */

.footer-map-button {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    margin-top: 5px;
    padding: 11px 15px;

    color: #d6b675;

    border: 1px solid rgba(214, 182, 117, 0.3);
    border-radius: 5px;

    font-size: 10px;
    font-weight: 700;

    text-decoration: none;

    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        transform 0.3s ease;
}


.footer-map-button svg {
    width: 15px;
    height: 15px;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;

    transition: transform 0.3s ease;
}


.footer-map-button:hover {
    color: #0b382f;

    background-color: #d6b675;

    transform: translateY(-3px);
}


.footer-map-button:hover svg {
    transform: translateX(3px);
}


/* ==================================================
   PROJECT INFORMATION STRIP
================================================== */

.footer-info-strip {
    display: grid;

    grid-template-columns:
        1fr auto
        1fr auto
        1.4fr auto
        1fr;

    align-items: center;

    gap: 25px;

    padding: 23px 28px;

    background-color: rgba(255, 255, 255, 0.035);

    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 9px;
}


.footer-info-item span {
    display: block;

    margin-bottom: 6px;

    color: rgba(255, 255, 255, 0.4);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1.2px;
    text-transform: uppercase;
}


.footer-info-item strong {
    color: rgba(255, 255, 255, 0.78);

    font-size: 11px;
    font-weight: 500;
}


.footer-info-divider {
    width: 1px;
    height: 35px;

    background-color: rgba(255, 255, 255, 0.1);
}


/* ==================================================
   FOOTER DISCLAIMER
================================================== */

.premium-footer-disclaimer {
    margin-top: 30px;
    padding: 24px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}


.premium-footer-disclaimer strong {
    display: block;

    margin-bottom: 9px;

    color: #d6b675;

    font-size: 9px;

    letter-spacing: 1.5px;
    text-transform: uppercase;
}


.premium-footer-disclaimer p {
    color: rgba(255, 255, 255, 0.36);

    font-size: 8.5px;
    line-height: 1.8;

    text-align: justify;
}


/* ==================================================
   FOOTER BOTTOM
================================================== */

.premium-footer-bottom {
    min-height: 75px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;
}


.premium-footer-bottom > p {
    color: rgba(255, 255, 255, 0.42);

    font-size: 9px;
}


.premium-footer-bottom-links {
    display: flex;
    align-items: center;

    gap: 12px;
}


.premium-footer-bottom-links a {
    color: rgba(255, 255, 255, 0.42);

    font-size: 9px;

    text-decoration: none;

    transition: color 0.3s ease;
}


.premium-footer-bottom-links a:hover {
    color: #d6b675;
}


.premium-footer-bottom-links span {
    width: 3px;
    height: 3px;

    background-color: rgba(214, 182, 117, 0.55);

    border-radius: 50%;
}


/* Back to Top */

.back-to-top {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    color: #d6b675;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.7px;
    text-transform: uppercase;

    text-decoration: none;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}


.back-to-top svg {
    width: 15px;
    height: 15px;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.back-to-top:hover {
    color: #ffffff;

    transform: translateY(-3px);
}
/* =================================
   Full Elevation Image
================================= */

.hero-visual {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
}


.hero-image-box {
    position: relative;

    width: 100%;
    max-width: 520px;

    /* Portrait proportion */
    aspect-ratio: 4 / 5;

    overflow: hidden;

    background-color: #dfe7e7;

    border: 1px solid rgba(201, 164, 95, 0.65);
    border-radius: 16px;

    box-shadow: 0 28px 65px rgba(0, 0, 0, 0.22);
}


.hero-image-box img {
    width: 100%;
    height: 100%;

    display: block;

    /* Full elevation visible rahegi */
    object-fit: contain;

    /* Building bottom se properly aligned rahegi */
    object-position: center bottom;

    background-color: #dfe7e7;

    transition: transform 0.6s ease;
}


.hero-image-box:hover img {
    transform: scale(1.015);
}


/* Sirf bottom par light gradient */

.image-bottom-gradient {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 32%;

    background: linear-gradient(
        to top,
        rgba(5, 40, 33, 0.78),
        rgba(5, 40, 33, 0)
    );

    pointer-events: none;
}


/* Show Flat Badge */

.image-badge {
    position: absolute;

    left: 22px;
    bottom: 22px;

    padding: 11px 15px;

    color: #e0c17e;

    background-color: rgba(7, 47, 39, 0.9);

    border: 1px solid rgba(210, 174, 108, 0.55);
    border-radius: 5px;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1px;
    text-transform: uppercase;

    backdrop-filter: blur(7px);
}
.hero-container {
    width: 100%;
    max-width: 1290px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;

    gap: 75px;
}
@media screen and (max-width: 850px) {

    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-image-box {
        max-width: 520px;
        margin: 0 auto;
    }

}


@media screen and (max-width: 520px) {

    .hero-image-box {
        width: 100%;
        max-width: 390px;

        aspect-ratio: 4 / 5;

        border-radius: 12px;
    }

    .image-badge {
        left: 16px;
        bottom: 16px;

        padding: 9px 12px;

        font-size: 9px;
    }

}
/* =================================
   Hero Full Image — No Crop
================================= */

.hero-visual {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
}


.hero-image-box {
    position: relative;

    width: 100%;
    max-width: 520px;

    /* Important: fixed portrait ratio remove */
    aspect-ratio: auto;
    height: auto;

    overflow: hidden;

    background-color: transparent;

    border: 1px solid rgba(201, 164, 95, 0.55);
    border-radius: 16px;

    box-shadow: 0 28px 65px rgba(0, 0, 0, 0.22);
}


.hero-image-box img {
    width: 100%;

    /* Natural image height */
    height: auto;

    display: block;

    /* No cropping */
    object-fit: initial;
    object-position: initial;

    transition: transform 0.6s ease;
}


.hero-image-box:hover img {
    transform: scale(1.015);
}


/* Bottom Gradient */

.image-bottom-gradient {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 35%;

    background: linear-gradient(
        to top,
        rgba(5, 40, 33, 0.72),
        rgba(5, 40, 33, 0)
    );

    pointer-events: none;
}


/* Badge */

.image-badge {
    position: absolute;

    left: 22px;
    bottom: 22px;

    padding: 11px 15px;

    color: #e0c17e;
    background-color: rgba(7, 47, 39, 0.9);

    border: 1px solid rgba(210, 174, 108, 0.55);
    border-radius: 5px;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1px;
    text-transform: uppercase;

    backdrop-filter: blur(7px);
}