/* Hide default scrollbar - custom scrollbar used instead */
html, body {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    width: 0;
    background: transparent;
}

/* Custom scrollbar styles */
.custom-scrollbar {
    position: fixed;
    top: 0;
    right: 0;
    width: 8px;
    height: 100vh;
    z-index: 9999;
    pointer-events: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
    background: transparent;
}

.custom-scrollbar.visible {
    opacity: 1;
}

.custom-scrollbar-thumb {
    position: absolute;
    top: 0;
    right: 0;
    width: 8px;
    min-height: 40px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    cursor: default;
}

.custom-scrollbar-track {
    position: absolute;
    top: 0;
    right: 0;
    width: 8px;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('../../fonts/PlayfairDisplay-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Didot';
    src: url('../../fonts/Didot Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url('../../fonts/Gotham-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'GothamBold';
    src: url('../../fonts/Gotham-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../../fonts/Montserrat-VariableFont_wght.ttf') format('truetype-variations');
    font-weight: 100 900;
    font-style: normal;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    background-color: #0E3A36;
}

/* Dynamic Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 95%;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 0.5s ease-in-out;
    z-index: 1;
}

.hero-background.scroll-1 {
    background-image: url('../section-1/scroll-1.png');
}

.hero-background.scroll-2 {
    background-image: url('../section-1/scroll-2.png');
}

.hero-background.scroll-3 {
    background-image: url('../section-1/scroll-3.png');
}

.hero-background.scroll-4 {
    background-image: url('../section-1/scroll-4.png');
}

.hero-background.scroll-5 {
    background-image: url('../section-1/scroll-5.png');
}

.hero-background.scroll-6 {
    background-image: url('../section-1/scroll-6.png');
}

/* Hero Content Container */
.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 60px;
}

/* Logo */
.hero-logo {
    position: absolute;
    top: 40px;
    left: 60px;
    z-index: 20;
}

.hero-logo img {
    max-width: 200px;
    height: auto;
}

/* Left Side - Leaf Graphic */
.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}

.leaf-graphic {
    max-width: 500px;
    height: auto;
    position: relative;
    z-index: 5;
}

.leaf-graphic-placeholder {
    width: 400px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.leaf-graphic-placeholder::before {
    content: '🌿';
    font-size: 150px;
    opacity: 0.5;
}

/* Right Side - Text Content */
.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hero-text {
    position: absolute;
    left: 55%;
    top: 42%;
    transform: translateY(-50%);
    width: 700px;
    max-width: 45%;
    z-index: 10;
}

.hero-text-2 {
    position: absolute;
    left: 50%;
    top: 42%;
    transform: translateY(-50%);
    width: 700px;
    max-width: 45%;
    z-index: 10;
}

.hero-text-3 {
    position: absolute;
    left: 50%;
    top: 42%;
    transform: translateY(-50%);
    width: 700px;
    max-width: 45%;
    z-index: 10;
}

.hero-copy {
    text-align: left;
    transition: opacity 0.4s ease-in-out;
}

.hero-line {
    display: block;
    line-height: 1.1;
    margin-bottom: 0.2em;
}

.hero-white {
    font-family: 'Didot', 'Playfair Display', 'Times New Roman', serif;
    color: #FFFFFF;
    font-size: 28px;
    font-weight: 400;
}

.hero-white--large {
    font-size: 36px;
}

.hero-white--small {
    font-size: 24px;
}

.hero-gold {
    display: inline-block;
    font-family: 'GothamBold', 'Gotham', 'Montserrat', 'Arial', sans-serif;
    background: linear-gradient(90deg, #D99A32 0%, #FFE8A3 45%, #F2B842 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #F4B642;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* State 1: Scroll 1-3 */
.hero-copy-state-1 .hero-gold {
    margin-left: 47px;
}

/* State 4: Scroll 4 */
.hero-copy-state-4 .hero-gold {
    margin-left: 57px;
}

/* State 5: Scroll 5-6 */
.hero-copy-state-5 .hero-white-5b {
    margin-left: 71px;
}

.hero-copy-state-5 .hero-gold {
    margin-left: 71px;
}


/* Right Corner Menu Button */
.right-corner-menu {
    position: absolute;
    top: 40px;
    right: 60px;
    z-index: 20;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.right-corner-menu img {
    width: 100%;
    height: auto;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    text-align: center;
    animation: bounce 2s infinite;
}

.scroll-indicator img {
    width: 40px;
    height: auto;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Background Outline Elements */
.background-outlines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    opacity: 0.3;
}

/* Concept Section */
.concept-section {
    background-color: #0E3A36;
    padding: 160px 0 100px 100px;
    color: #ffffff;
    text-align: left;
    overflow: hidden;
}

.concept-header {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 140px;
    margin-bottom: 100px;
    text-align: left;
    max-width: 1400px;
}

.concept-header-left {
    flex: 0 0 auto;
    min-width: 320px;
}

.concept-header-right {
    flex: 0 0 50%;
    max-width: 620px;
    padding-top: 10px;
}

.concept-heading-line-1 {
    font-family: 'Didot', 'Playfair Display', 'Georgia', serif;
    font-size: 72px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.05;
    margin-bottom: 12px;
}

.concept-heading-line-2 {
    font-family: 'GothamBold', 'Gotham', 'Montserrat', 'Arial', sans-serif;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    line-height: 1.0;
    margin-left: 70px;
    background: linear-gradient(90deg, #D89B35 0%, #FFE7A0 45%, #F1B742 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #F4B642;
    display: inline-block;
}

.concept-header-right p {
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 22px;
    color: #ffffff;
}

.concept-header-right .naturally-more {
    font-family: 'GothamBold', 'Gotham', 'Montserrat', 'Arial', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #D89B35 0%, #FFE7A0 45%, #F1B742 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #F4B642;
    margin-top: 30px;
    display: inline-block;
}

.concept-alphabet {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

.alphabet-item {
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.alphabet-letter {
    margin-bottom: 20px;
}

.alphabet-letter img {
    max-width: 100%;
    height: auto;
    max-height: 200px;
}

.alphabet-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.alphabet-line {
    width: 1px;
    height: 40px;
    background-color: #d4af37;
    margin-bottom: 20px;
}

.alphabet-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .hero-text {
        left: 60%;
        width: 650px;
        max-width: 48%;
    }
    
    .hero-text-2 {
        left: 55%;
        width: 650px;
        max-width: 48%;
    }
    
    .hero-text-3 {
        left: 55%;
        width: 650px;
        max-width: 48%;
    }
    
    .hero-white {
        font-size: 27px;
    }
    
    .hero-white--large {
        font-size: 34px;
    }
    
    .hero-white--small {
        font-size: 23px;
    }
    
    .hero-gold {
        font-size: 21px;
    }
    
    .hero-copy-state-1 .hero-gold {
        margin-left: 47px;
    }
    
    .hero-copy-state-4 .hero-gold {
        margin-left: 57px;
    }
    
    .hero-copy-state-5 .hero-white-5b {
        margin-left: 71px;
    }
    
    .hero-copy-state-5 .hero-gold {
        margin-left: 71px;
    }
}

@media (max-width: 1200px) {
    .hero-content {
        padding: 30px 40px;
    }
    
    .hero-logo {
        top: 30px;
        left: 40px;
    }
    
    .hero-logo img {
        max-width: 150px;
    }
    
    .leaf-graphic {
        max-width: 350px;
    }
    
    .hero-right {
        padding-right: 60px;
    }
    
    .hero-text {
        left: 50%;
        width: 600px;
        max-width: 50%;
    }
    
    .hero-text-2 {
        left: 48%;
        width: 600px;
        max-width: 50%;
    }
    
    .hero-text-3 {
        left: 48%;
        width: 600px;
        max-width: 50%;
    }
    
    .hero-white {
        font-size: 25px;
    }
    
    .hero-white--large {
        font-size: 32px;
    }
    
    .hero-white--small {
        font-size: 21px;
    }
    
    .hero-gold {
        font-size: 19px;
    }
    
    .hero-copy-state-1 .hero-gold {
        margin-left: 47px;
    }
    
    .hero-copy-state-4 .hero-gold {
        margin-left: 57px;
    }
    
    .hero-copy-state-5 .hero-white-5b {
        margin-left: 71px;
    }
    
    .hero-copy-state-5 .hero-gold {
        margin-left: 71px;
    }
    
    .right-corner-menu {
        top: 30px;
        right: 40px;
    }
    
    .concept-section {
        padding: 120px 0 80px 60px;
    }

    .concept-header {
        gap: 80px;
    }

    .concept-heading-line-1 {
        font-size: 56px;
    }

    .concept-heading-line-2 {
        font-size: 38px;
        margin-left: 50px;
    }
    
    .concept-alphabet {
        gap: 30px;
    }
    
    .alphabet-item {
        min-width: 200px;
        max-width: 240px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 90vh;
        height: 90dvh;
    }

    .hero-content {
        flex-direction: column;
        padding: 20px;
    }
    
    .hero-left {
        justify-content: flex-start;
        padding-top: 110px;
        margin-bottom: 0;
    }
    
    .hero-right {
        justify-content: center;
        padding-right: 0;
    }
    
    .hero-text {
        left: 50%;
        top: 78%;
        transform: translate(-50%, -50%);
        width: 90%;
        max-width: 90%;
    }
    
    .hero-text-2 {
        left: 50%;
        top: 78%;
        transform: translate(-50%, -50%);
        width: 90%;
        max-width: 90%;
    }
    
    .hero-text-3 {
        left: 50%;
        top: 78%;
        transform: translate(-50%, -50%);
        width: 90%;
        max-width: 90%;
    }
    
    .hero-copy {
        text-align: center;
    }
    
    .hero-line {
        margin-left: 0 !important;
    }
    
    .hero-white {
        font-size: 20px;
    }
    
    .hero-white--large {
        font-size: 26px;
    }
    
    .hero-white--small {
        font-size: 18px;
    }
    
    .hero-gold {
        font-size: 17px;
    }
    
    .leaf-graphic {
        max-width: 250px;
    }
    
    .hero-logo img {
        max-width: 120px;
    }
    
    .concept-section {
        padding: 80px 20px 60px;
    }
    
    .concept-header {
        flex-direction: column;
        gap: 40px;
        text-align: left;
    }
    
    .concept-header-left,
    .concept-header-right {
        flex: 1 1 auto;
        min-width: auto;
        max-width: 100%;
    }
    
    .concept-heading-line-1 {
        font-size: 48px;
    }
    
    .concept-heading-line-2 {
        font-size: 32px;
        margin-left: 40px;
    }
    
    .concept-header-right p {
        font-size: 1rem;
    }
    
    .concept-header-right .naturally-more {
        font-size: 1.1rem;
        margin-top: 20px;
    }
    
    .concept-alphabet {
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }
    
    .alphabet-item {
        max-width: 100%;
    }
}

/* Master Development Section */
.master-development {
    position: relative;
    width: 100%;
    /* min-height: 100vh; */
    padding: 0;
    background-color: #0E3A36;
    overflow: hidden;
}

.master-development-header {
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    z-index: 10;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    padding: 0 40px;
}

.master-development-title {
    flex: 0 0 auto;
}

.master-development-title h2 {
    font-family: 'Didot', 'DidotRegular', 'Playfair Display', 'Georgia', serif;
    font-size: 56px;
    font-weight: 400;
    color: #111111;
    line-height: 0.95;
    margin: 0;
}

.master-development-title h2.highlight {
    font-family: 'GothamBold', 'Gotham', 'Montserrat', 'Arial', sans-serif;
    font-size: 40px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 55px;
    margin-top: 4px;
    display: inline-block;
    background: linear-gradient(90deg, #3C8A63 0%, #4F9A72 45%, #76B08B 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #3C8A63;
}

.master-development-intro {
    flex: 0 0 auto;
    width: 620px;
    max-width: 100%;
}

.master-development-intro p {
    font-family: 'Avenir', 'ProximaNovaRegular', 'GothamBook', 'Montserrat', 'Arial', sans-serif;
    font-size: 22px;
    color: #111111;
    line-height: 1.45;
    margin: 0;
}

.master-development-map {
    position: relative;
    width: 100%;
    /* max-width: 1400px; */
    margin: 0 auto;
}

.master-development-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.master-development-bg img {
    width: 100%;
    height: auto;
    display: block;
}

.master-development-label-1,
.master-development-label-2,
.master-development-label-3,
.master-development-label-4 {
    position: absolute;
    transition: transform 0.3s ease;
}



.master-development-label-1 img,
.master-development-label-2 img,
.master-development-label-3 img,
.master-development-label-4 img {
    height: auto;
    display: block;
}

.master-development-label-1 img {
    max-width: 100%;
}

.master-development-label-2 img {
    max-width: 100%;
}

.master-development-label-3 img {
    max-width: 100%;
}

.master-development-label-4 img {
    max-width: 100%;
}

.master-development-label-1:hover,
.master-development-label-2:hover,
.master-development-label-3:hover,
.master-development-label-4:hover {
    transform: scale(1.05);
}

.master-development-label-1 {
    top: 23%;
    left: 18.5%;
    width: 9%;
}

.master-development-label-2 {
    top: 22.4%;
    left: 36.5%;
    width: 9%;
}

.master-development-label-3 {
    top: 21.8%;
    left: 49.2%;
    width: 9%;
}

.master-development-label-4 {
    top: 24%;
    left: 46%;
    width: 3.5%;
}

@media (max-width: 992px) {
    .master-development {
        padding: 0;
    }
    
    .master-development-header {
        top: 60px;
        gap: 60px;
        padding: 0 30px;
    }
    
    .master-development-title h2 {
        font-size: 44px;
    }
    
    .master-development-title h2.highlight {
        font-size: 32px;
        margin-left: 40px;
    }
    
    .master-development-intro {
        width: 480px;
    }
    
    .master-development-intro p {
        font-size: 18px;
    }
    
    /* .master-development-label-1 img,
    .master-development-label-2 img,
    .master-development-label-3 img,
    .master-development-label-4 img {
        max-width: 30%;
    } */
}

@media (max-width: 576px) {
    .master-development {
        padding: 0;
    }
    
    .master-development-header {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        flex-direction: column;
        gap: 25px;
        padding: 30px 20px 0;
        margin-bottom: 20px;
    }
    
    .master-development-title h2 {
        font-size: 40px;
    }
    
    .master-development-title h2.highlight {
        font-size: 28px;
        margin-left: 35px;
    }
    
    .master-development-intro {
        width: 100%;
        text-align: left;
    }
    
    .master-development-intro p {
        font-size: 16px;
    }
    
    /* .master-development-label-1 img,
    .master-development-label-2 img,
    .master-development-label-3 img,
    .master-development-label-4 img {
        max-width: 90px;
    } */
}

/* Find Your Place Section */
.find-your-place {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 80px 40px 60px;
    background: url('../section-4/background.png') center center / cover no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
}

.find-your-place-heading {
    text-align: center;
    margin-bottom: 50px;
}

.find-your-place-title {
    font-family: 'Didot', 'DidotRegular', 'Playfair Display', Georgia, serif;
    font-size: 56px;
    font-weight: 700;
    color: #111111;
    line-height: 0.9;
    margin: 0;
    display: block;
}

.find-your-place-subtitle {
    font-family: 'GothamBold', 'Gotham', 'Montserrat', Arial, sans-serif;
    font-size: 52px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
    margin: 6px 0 0 80px;
    display: inline-block;
    background: linear-gradient(90deg, #0A4A40 0%, #12584C 35%, #1C6A5C 70%, #2B7A69 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #0A4A40;
}

.find-your-place-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 100px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    flex: 1;
}

.residential,
.commercial {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 0 auto;
    width: 45%;
    max-width: 560px;
    transition: transform 0.35s ease;
    animation: softFloat 4s ease-in-out infinite;
}

.commercial {
    animation-delay: 0.6s;
}

@keyframes softFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.button-residential {
    position: absolute;
    top: 25%;
    left: 54%;
    transform: translateX(-30%);
    z-index: 2;
}

.button-commercial {
    position: absolute;
    top: 26%;
    left: 52%;
    transform: translateX(-30%);
    z-index: 2;
}

.button-residential a,
.button-residential img,
.button-commercial img {
    display: inline-block;
    transition: transform 0.25s ease, filter 0.25s ease;
}

.button-residential a:hover img,
.button-commercial img:hover {
    transform: scale(1.1);
}

.button-residential a:hover img {
    filter: drop-shadow(0 8px 14px rgba(255, 106, 0, 0.45));
    cursor: pointer;
}

.button-commercial img:hover {
    filter: drop-shadow(0 8px 14px rgba(63, 109, 255, 0.45));
}

.button-residential img,
.button-commercial img {
    width: 60%;
    height: auto;
}

.image-residential,
.image-commercial {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 0;
    padding-bottom: 76.27%;
}

.image-residential img,
.image-commercial img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    object-fit: fill;
    display: block;
    filter: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.18));
    transition: transform 0.35s ease, filter 0.35s ease;
}

.image-residential:hover img,
.image-commercial:hover img {
    transform: translateY(-4px);
    filter: drop-shadow(0 30px 36px rgba(0, 0, 0, 0.22));
}

.image-commercial img {
    transform: translateY(7%);
    height: 100%;
}

.image-commercial:hover img {
    transform: translateY(calc(7% - 4px));
}

.find-your-place-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
}

.scroll-mouse {
    width: 18px;
    height: 28px;
    border: 2px solid #1F6B55;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-wheel {
    width: 2px;
    height: 5px;
    background-color: #1F6B55;
    border-radius: 1px;
    animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(8px);
        opacity: 0;
    }
}

.scroll-arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 4px;
}

.scroll-arrows span {
    width: 8px;
    height: 8px;
    border-right: 2px solid #1F6B55;
    border-bottom: 2px solid #1F6B55;
    transform: rotate(45deg);
    margin-top: -4px;
    opacity: 0.6;
}

/* Phase Selection Modal */
.phase-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.phase-modal.active {
    display: flex;
}

.phase-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.phase-modal-content {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 50px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 10;
    text-align: center;
}

.phase-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    font-size: 28px;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s ease, color 0.2s ease;
}

.phase-modal-close:hover {
    background: #f5f5f5;
    color: #333;
}

.phase-modal-title {
    font-family: 'GothamBold', 'Gotham', 'Montserrat', Arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #0E3A36;
    margin: 0 0 30px 0;
}

.phase-modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.phase-modal-btn {
    display: block;
    padding: 16px 24px;
    font-family: 'GothamBold', 'Gotham', 'Montserrat', Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-align: center;
}

.phase-1-btn {
    background: linear-gradient(90deg, #2F7A5C 0%, #246B58 45%, #145C4E 100%);
    color: #ffffff;
}

.phase-1-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(31, 107, 85, 0.4);
}

.phase-2-btn {
    background: linear-gradient(90deg, #0A4A40 0%, #12584C 35%, #1C6A5C 70%, #2B7A69 100%);
    color: #ffffff;
}

.phase-2-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(31, 107, 85, 0.4);
}

@media (max-width: 1200px) {
    .find-your-place-title {
        font-size: 64px;
    }
    
    .find-your-place-subtitle {
        font-size: 42px;
        margin-left: 60px;
    }
    
    .find-your-place-grid {
        gap: 60px;
    }
}

@media (max-width: 992px) {
    .find-your-place {
        padding: 60px 20px 40px;
    }
    
    .find-your-place-grid {
        gap: 40px;
    }
    
    .residential,
    .commercial {
        width: 48%;
    }
}

@media (max-width: 768px) {
    .find-your-place-grid {
        flex-direction: column;
        gap: 30px;
    }
    
    .residential,
    .commercial {
        width: 100%;
        max-width: 480px;
    }
    
    .find-your-place-title {
        font-size: 44px;
    }
    
    .find-your-place-subtitle {
        font-size: 28px;
        margin-left: 40px;
    }
    
    .button-residential,
    .button-commercial {
        top: 22%;
    }
}

/* Location & Accessibility Section */
.location-accessibility {
    position: relative;
    width: 100%;
    background: #103A36;
    padding: 100px 0 120px;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.location-accessibility-inner {
    position: relative;
    width: 100%;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.location-accessibility-header {
    position: absolute;
    top: 80px;
    left: 70px;
    right: 60px;
    z-index: 10;
    width: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.location-accessibility-title {
    padding-top: 0;
    padding-left: 0;
}

.location-accessibility-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #F3B24D;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
    margin: 0 0 8px 0;
}

.location-accessibility-heading {
    font-family: 'Playfair Display', serif;
    font-size: 54px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin: 0;
}

.location-accessibility-desc {
    width: 320px;
    padding-top: 10px;
    padding-right: 0;
}

.location-accessibility-desc p {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin: 0;
    text-align: left;
}

.location-accessibility-map {
    position: relative;
    width: 100%;
}

.location-map-img {
    width: 100%;
    height: auto;
    display: block;
}

.location-compass {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 36px;
    height: 36px;
    z-index: 3;
}

.location-compass svg {
    width: 100%;
    height: 100%;
}

.location-center-marker {
    position: absolute;
    top: 50%;
    left: 35%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    z-index: 2;
    pointer-events: none;
}

.location-marker-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: #F3B24D;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(243, 178, 77, 0.8);
    z-index: 3;
}

.location-marker-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border: 2px dashed rgba(168, 85, 255, 0.7);
    border-radius: 50%;
    animation: location-marker-rotate 10s linear infinite;
}

.location-marker-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(243, 178, 77, 0.35) 0%, transparent 70%);
    animation: location-marker-pulse 2s ease-in-out infinite;
}

@keyframes location-marker-rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes location-marker-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.3; }
}

.location-info-panel {
    width: 88%;
    max-width: 1200px;
    background: rgba(4, 59, 53, 0.55);
    border: 2px solid rgba(243, 178, 77, 0.6);
    border-radius: 0 30px 0 30px;
    padding: 45px 55px;
    box-shadow: 12px 16px 40px rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
}

.location-info-grid {
    display: grid;
    grid-template-columns: 1fr 1px 1fr 1px 1fr;
    grid-template-rows: auto 1px auto;
    gap: 0;
}

.location-info-column {
    padding: 0 25px;
}

.location-info-column:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}

.location-info-column:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
}

.location-info-column:nth-child(5) {
    grid-column: 5;
    grid-row: 1;
}

.location-info-column:nth-child(7) {
    grid-column: 1;
    grid-row: 3;
}

.location-info-column:nth-child(9) {
    grid-column: 3;
    grid-row: 3;
}

.location-info-column:nth-child(11) {
    grid-column: 5;
    grid-row: 3;
}

.location-info-divider {
    
}

.location-info-divider:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

.location-info-divider:nth-child(4) {
    grid-column: 4;
    grid-row: 1;
}

.location-info-divider:nth-child(6) {
    grid-column: 2;
    grid-row: 3;
}

.location-info-divider:nth-child(8) {
    grid-column: 4;
    grid-row: 3;
}

.location-info-divider.row-divider {
    grid-column: 1 / -1;
    grid-row: 2;
    height: 1px;
    width: 100%;
    margin: 30px 0;
}

.location-info-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.location-info-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.location-info-header h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #8DAC5E;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin: 0;
}

.location-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.location-info-list li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 8px;
}

.location-info-list li span:first-child {
    flex: 1;
    padding-right: 10px;
}

.location-info-list li span:last-child {
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
}

.location-scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 55px;
}

.location-scroll-mouse {
    width: 20px;
    height: 32px;
    border: 2px solid #F3B24D;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.location-scroll-wheel {
    width: 4px;
    height: 6px;
    background: #F3B24D;
    border-radius: 2px;
    animation: location-scroll-wheel 2s ease-in-out infinite;
}

.location-scroll-arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 8px;
    gap: 2px;
}

.location-scroll-arrows span {
    width: 8px;
    height: 8px;
    border-right: 2px solid #F3B24D;
    border-bottom: 2px solid #F3B24D;
    transform: rotate(45deg);
    opacity: 0.6;
}

@keyframes location-scroll-wheel {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(8px); opacity: 0; }
}

@media (max-width: 1200px) {
    .location-accessibility-title {
        padding-left: 30px;
    }
    
    .location-accessibility-desc {
        padding-right: 30px;
    }
}

@media (max-width: 992px) {
    .location-accessibility-header {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .location-accessibility-title {
        padding-top: 40px;
        padding-left: 0;
    }
    
    .location-accessibility-heading {
        font-size: 42px;
    }
    
    .location-accessibility-desc {
        width: 100%;
        max-width: 500px;
        padding-top: 25px;
        padding-right: 0;
    }
    
    .location-accessibility-desc p {
        text-align: center;
    }
    
    .location-accessibility-map {
        width: 90%;
        padding-top: 0;
        margin-bottom: 50px;
    }
    
    .location-info-panel {
        width: 94%;
        padding: 35px 30px;
    }
    
    .location-info-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .location-info-column {
        grid-column: 1 !important;
        grid-row: auto !important;
        padding: 20px 0;
    }
    
    .location-info-divider:not(.row-divider) {
        display: none;
    }
    
    .location-info-divider.row-divider {
        grid-column: 1 !important;
        grid-row: auto !important;
        margin: 0;
    }
}

@media (max-width: 576px) {
    .location-accessibility {
        padding: 60px 0 80px;
    }
    
    .location-accessibility-subtitle {
        font-size: 18px;
    }
    
    .location-accessibility-heading {
        font-size: 32px;
    }
    
    .location-accessibility-desc p {
        font-size: 14px;
    }
    
    .location-info-panel {
        padding: 25px 20px;
    }
    
    .location-info-list li {
        font-size: 12px;
    }
}

/* Team Behind the Bigger Picture Section */
.team-behind {
    position: relative;
    width: 100%;
    background: url('../../../assets-new/section-6/background.png') center top / cover no-repeat;
    padding: 120px 0 160px;
    overflow: hidden;
}

.team-behind-cloud {
    position: absolute;
    top: 18%;
    width: 320px;
    z-index: 1;
    pointer-events: none;
}

.team-cloud-left {
    left: -120px;
}

.team-cloud-right {
    right: -100px;
}

.team-behind-cloud img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.85;
}

.team-behind-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.team-behind-header {
    text-align: center;
    margin-bottom: 70px;
}

.team-behind-title {
    font-family: 'Playfair Display', serif;
    font-size: 46px;
    font-weight: 600;
    color: #2a2a2a;
    line-height: 1.2;
    margin: 0 0 6px 0;
}

.team-behind-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1F6B55;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.2;
    margin: 0;
}

.team-behind-cards {
    display: flex;
    justify-content: center;
    gap: 60px;
    align-items: stretch;
}

.team-card {
    position: relative;
    width: 48%;
    max-width: 560px;
    min-height: 620px;
}

.team-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.team-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
}

.team-card-right .team-card-bg img {
    transform: translateY(-3%);
    height: 103%;
}

.team-card-content {
    position: relative;
    z-index: 2;
    padding: 55px 45px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.team-card-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 28px;
}

.team-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.1;
    margin: 0;
}

.team-card-logo {
    height: 34px;
    width: auto;
    display: block;
}

.team-card-paragraph {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.75;
    text-align: center;
    max-width: 420px;
    margin: 0 0 40px 0;
}

.team-members {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    margin-top: auto;
    padding: 0 10px;
}

.team-members-pair {
    justify-content: center;
    gap: 45px;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.team-member-photo {
    width: 120px;
    height: 150px;
    object-fit: cover;
    object-position: top center;
    filter: grayscale(100%);
    margin-bottom: 14px;
}

.team-member-name {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin: 0 0 3px 0;
    max-width: 140px;
}

.team-member-role {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.3;
    max-width: 140px;
}

.team-quote-box {
    position: absolute;
    z-index: 3;
    width: 100%;
}

.team-quote-left {
    bottom: -14%;
    left: 8%;
    width: 81%;
    height: 21%;
    overflow: visible;
}

.team-quote-right {
    bottom: -13%;
    right: 5%;
    width: 91%;
    height: 18%;
    overflow: visible;
}

.team-quote-bg {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 161%;
    display: block;
}

.team-quote-left .team-quote-bg {
    width: 112.3%;
    margin: 0 auto;
    transform: translateY(-28%);
}

.team-quote-right .team-quote-bg {
    width: 103.3%;
    margin: 0 auto;
    transform: translateY(-26%);
}

.team-quote-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-weight: 500;
    color: #2a2a2a;
    line-height: 1.6;
    text-align: center;
    padding: 42px 55px 48px 55px;
    margin: 0;
    box-sizing: border-box;
}

.team-quote-left .team-quote-text {
    -webkit-mask-image: url('../section-6/team-quote-left.png');
    mask-image: url('../section-6/team-quote-left.png');
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

.team-quote-right .team-quote-text {
    -webkit-mask-image: url('../section-6/team-quote-right.png');
    mask-image: url('../section-6/team-quote-right.png');
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

@media (max-width: 1200px) {
    .team-behind-cards {
        gap: 50px;
    }
    
    .team-card {
        width: 47%;
    }
    
    .team-card-content {
        padding: 45px 35px 70px;
    }
    
    .team-card-title {
        font-size: 30px;
    }
    
    
    
    .team-quote-right {
        bottom: -15%;
        right: 5%;
        width: 90%;
        height: 22%;
        overflow: visible;
    }
}

@media (max-width: 992px) {
    .team-behind {
        padding: 90px 0 140px;
    }
    
    .team-behind-cloud {
        width: 240px;
    }
    
    .team-cloud-left {
        left: -90px;
    }
    
    .team-cloud-right {
        right: -70px;
    }
    
    .team-behind-cards {
        flex-direction: column;
        align-items: center;
        gap: 100px;
    }
    
    .team-card {
        width: 100%;
        max-width: 520px;
    }
    
  
    
    .team-quote-right {
        bottom: -15%;
        right: 5%;
        width: 90%;
        height: 22%;
        overflow: visible;
    }
}

@media (max-width: 576px) {
    .team-behind {
        padding: 70px 0 120px;
    }
    
    .team-behind-inner {
        padding: 0 20px;
    }
    
    .team-behind-title {
        font-size: 34px;
    }
    
    .team-behind-subtitle {
        font-size: 18px;
    }
    
    .team-card-content {
        padding: 35px 25px 60px;
    }
    
    .team-card-title {
        font-size: 26px;
    }
    
    .team-card-logo {
        height: 28px;
    }
    
    .team-member-photo {
        width: 90px;
        height: 115px;
    }
    
    .team-member-name {
        font-size: 11px;
    }
    
    .team-member-role {
        font-size: 10px;
    }
    
    
    .team-quote-right {
        bottom: -15%;
        right: 5%;
        width: 90%;
        height: 22%;
        overflow: visible;
    }
}

/* Awards & Recognition Section */
.awards-recognition {
    position: relative;
    width: 100%;
    background: #0E3A36;
    padding: 0;
    overflow: visible;
}

.awards-recognition-inner {
    position: relative;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    min-height: 1100px;
    padding: 0% 50px 10% 50px;
}

.awards-anchor {
    /* position: absolute; */
    z-index: 1;
    /* pointer-events: none; */
    display: block;
}

.awards-anchor img {
    display: block;
    width: 100%;
    height: auto;
}

.awards-anchor-top {
    /* top: 0;
    left: 0;
    width: 62%;
    max-width: 900px; */
    padding: 10% 0 10% 0
}

.awards-anchor-bottom {
    
    width: 100%;
}

.awards-top-text {
    position: absolute;
    top: 7%;
    left: 47%;
    z-index: 2;
    width: 45%;
}

.awards-main-title {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
    margin: 0 0 30px 0;
}

.awards-title-line {
    font-family: 'Playfair Display', serif;
    font-size: 58px;
    font-weight: 700;
    color: #ffffff;
}

.awards-title-gold {
    font-family: 'Poppins', sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: #D7B15A;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.awards-subheading {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 24px 0;
}

.awards-paragraph {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
    margin: 0 0 16px 0;
}

.awards-paragraph strong {
    color: #ffffff;
    font-weight: 600;
}

.awards-corporate {
    position: absolute;
    bottom: 20%;
    left: 5%;
    z-index: 2;
    width: 610px;
}

.awards-corporate-title {
    font-family: 'Poppins', sans-serif;
    font-size: 46px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.1;
    margin: 0 0 28px 0;
}

.awards-corporate-text {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.75;
    margin: 0 0 16px 0;
}

.awards-learn-more {
    display: inline-block;
    width: 200px;
    margin-top: 35px;
    cursor: pointer;
}

.awards-learn-more img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.25s ease, filter 0.25s ease;
}

.awards-learn-more:hover img {
    transform: scale(1.08);
    filter: drop-shadow(0 8px 14px rgba(255, 106, 0, 0.45));
}

.awards-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.awards-scroll-mouse {
    width: 20px;
    height: 32px;
    border: 2px solid #D7B15A;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.awards-scroll-wheel {
    width: 4px;
    height: 6px;
    background: #D7B15A;
    border-radius: 2px;
    animation: awards-scroll-wheel 2s ease-in-out infinite;
}

.awards-scroll-arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 8px;
    gap: 2px;
}

.awards-scroll-arrows span {
    width: 8px;
    height: 8px;
    border-right: 2px solid #D7B15A;
    border-bottom: 2px solid #D7B15A;
    transform: rotate(45deg);
    opacity: 0.6;
}

@keyframes awards-scroll-wheel {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(8px); opacity: 0; }
}

@media (max-width: 1200px) {
    .awards-recognition-inner {
        min-height: 900px;
        padding: 5% 40px;
    }
    
    .awards-anchor-top {
        width: 68%;
    }
    
    .awards-anchor-bottom {
        width: 64%;
    }
    
    .awards-top-text {
        top: 10%;
        left: 54%;
        width: 360px;
    }
    
    .awards-title-line {
        font-size: 48px;
    }
    
    .awards-title-gold {
        font-size: 28px;
    }
    
    .awards-corporate {
        bottom: 10%;
        left: 3%;
        width: 500px;
    }
    
    .awards-corporate-title {
        font-size: 38px;
    }
}

@media (max-width: 992px) {
    .awards-recognition-inner {
        min-height: auto;
        padding: 80px 30px 120px;
    }
    
    .awards-anchor {
        position: relative;
        width: 100%;
        max-width: 100%;
        top: auto;
        left: auto;
        bottom: auto;
        right: auto;
        margin-bottom: 40px;
    }
    
    .awards-anchor-top {
        margin-bottom: 30px;
    }
    
    .awards-anchor-bottom {
        margin-bottom: 0;
    }
    
    .awards-top-text {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        max-width: 580px;
        margin: 0 auto 60px;
        text-align: center;
    }
    
    .awards-main-title {
        align-items: center;
    }
    
    .awards-corporate {
        position: relative;
        bottom: auto;
        left: auto;
        width: 100%;
        max-width: 620px;
        margin: 0 auto 60px;
        text-align: center;
    }
    
    .awards-corporate-title {
        font-size: 36px;
    }
    
    .awards-scroll-indicator {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 60px;
    }
}

@media (max-width: 576px) {
    .awards-recognition-inner {
        padding: 60px 24px 100px;
    }
    
    .awards-title-line {
        font-size: 38px;
    }
    
    .awards-title-gold {
        font-size: 22px;
    }
    
    .awards-subheading {
        font-size: 16px;
    }
    
    .awards-paragraph {
        font-size: 15px;
    }
    
    .awards-corporate-title {
        font-size: 28px;
    }
    
    .awards-corporate-text {
        font-size: 15px;
    }
    
    .awards-learn-more {
        width: 160px;
    }
}

/* New Contact Section */
.contact-new {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.contact-new-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.contact-new-bg img {
    width: 100%;
    height: 100%;
    display: block;
}

.contact-new-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 50px;
}

.contact-new-form {
    width: 100%;
}

.contact-new-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.contact-new-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-new-title {
    font-family: 'GothamBold', 'Gotham', 'Montserrat', 'Proxima Nova', Arial, sans-serif;
    font-size: 46px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin: 0 0 20px 0;
    line-height: 1.1;
    background: linear-gradient(90deg, #0A4A40 0%, #12584C 35%, #1C6A5C 70%, #2B7A69 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.contact-new-title .italicstyle {
    font-style: italic;
    font-weight: 400;
    display: block;
}

.contact-new-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-new-label {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #2a2a2a;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.contact-new-value {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #2a2a2a;
    margin: 0;
}

.contact-new-address {
    line-height: 1.6;
}

.contact-new-social {
    display: flex;
    gap: 12px;
    margin: 4px 0;
}

.contact-new-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #0E3A36;
    transition: transform 0.3s ease, background 0.3s ease;
}

.contact-new-social a:hover {
    transform: translateY(-3px);
    background: #1F6B55;
}

.contact-new-social a img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.contact-new-map-icons {
    display: flex;
    gap: 12px;
    margin-top: 4px;
}

.contact-new-map-icons a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.contact-new-map-icons a:hover {
    transform: translateY(-3px);
}

.contact-new-map-icons a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact-new-fields {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-new-field {
    width: 100%;
}

.contact-new-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.contact-new-row > .contact-new-field {
    margin-bottom: 0;
}

.contact-new-row > .contact-new-error {
    grid-column: 1 / -1;
}

.contact-new-input,
.contact-new-select {
    width: 100%;
    height: 56px;
    padding: 0 22px;
    border: 1.5px solid #E5A667;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.55);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #2a2a2a;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    outline: none;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.contact-new-input::placeholder {
    color: #2a2a2a;
    opacity: 0.85;
}

.contact-new-input:focus,
.contact-new-select:focus {
    border-color: #D7B15A;
    background: rgba(255, 255, 255, 0.75);
}

.contact-new-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%232a2a2a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    cursor: pointer;
}

.contact-new-select option {
    text-transform: none;
    letter-spacing: normal;
    color: #2a2a2a;
}

.contact-new-phone {
    display: flex;
    gap: 12px;
}

.contact-new-code {
    flex: 0 0 140px;
}

.contact-new-number {
    flex: 1;
}

.contact-new-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
}

.contact-new-checkbox {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 2px;
    border: 1.5px solid #E5A667;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.55);
    accent-color: #E5A667;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    display: grid;
    place-items: center;
    transition: background 0.2s ease;
}

.contact-new-checkbox:checked {
    background: #E5A667;
}

.contact-new-checkbox:checked::after {
    content: '';
    width: 5px;
    height: 9px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-top: -2px;
}

.contact-new-check-label {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    color: #2a2a2a;
    line-height: 1.5;
    cursor: pointer;
}

.contact-new-error {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: #c62828;
    margin: 6px 0 0 0;
}

.contact-new-submit-wrap {
    margin-top: 8px;
}

.contact-new-submit {
    width: 100%;
    height: 56px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(90deg, #B8860B 0%, #D7B15A 50%, #B8860B 100%);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-new-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(184, 134, 11, 0.35);
}

@media (max-width: 1100px) {
    .contact-new-grid {
        gap: 50px;
    }
}

@media (max-width: 992px) {
    .contact-new-inner {
        padding: 60px 30px;
    }
    
    .contact-new-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-new-title {
        font-size: 38px;
    }
}

@media (max-width: 576px) {
    .contact-new-inner {
        padding: 50px 20px;
    }
    
    .contact-new-title {
        font-size: 32px;
    }
    
    .contact-new-input,
    .contact-new-select,
    .contact-new-submit {
        height: 50px;
    }
    
    .contact-new-code {
        flex: 0 0 110px;
    }
    
    .contact-new-social a,
    .contact-new-map-icons a {
        width: 38px;
        height: 38px;
    }
}

/* Right Corner Collapsible Menu */
.corner-menu-wrap {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1040;
}

.corner-menu-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 1050;
    transition: transform 0.3s ease;
}

.corner-menu-toggle:hover {
    transform: scale(1.05);
}

.corner-menu-toggle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.corner-menu-collapse {
    position: absolute;
    top: 76px;
    right: 16px;
    width: 260px;
    z-index: 1040;
}

.corner-menu-panel {
    background: #0E3A36;
    border-left: 1.5px solid #D7B15A;
    border-bottom: 1.5px solid #D7B15A;
    border-bottom-left-radius: 130px;
    padding: 28px 24px 36px 28px;
    box-shadow: -8px 12px 40px rgba(0, 0, 0, 0.35);
}

.corner-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: right;
}

.corner-menu-list li {
    margin: 0;
    padding: 0;
}

.corner-menu-link {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    padding: 7px 0;
    line-height: 1.3;
    transition: color 0.25s ease;
}

.corner-menu-link:hover {
    color: #D7B15A;
}

.corner-menu-concept-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.corner-menu-label span {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #D7B15A;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 10px 0 4px 0;
    line-height: 1.3;
}

.corner-menu-sub .corner-menu-link {
    font-size: 12px;
    font-weight: 500;
    padding: 5px 0;
    color: rgba(255, 255, 255, 0.92);
}

.corner-menu-sub .corner-menu-link:hover {
    color: #D7B15A;
}

@media (max-width: 1366px) and (min-width: 769px) {
    .corner-menu-toggle {
        width: 40px;
        height: 40px;
        top: 16px;
        right: 16px;
    }

    .corner-menu-collapse {
        width: 220px;
        right: 12px;
        top: 64px;
    }

    .corner-menu-panel {
        padding: 22px 20px 28px 22px;
        border-bottom-left-radius: 130px;
    }

    .corner-menu-link {
        font-size: 13px;
        padding: 5px 0;
    }

    .corner-menu-concept-icon {
        width: 18px;
        height: 18px;
    }

    .corner-menu-sub .corner-menu-link {
        font-size: 10px;
        padding: 3px 0;
    }

    .corner-menu-label span {
        font-size: 9px;
        padding: 8px 0 2px 0;
    }
}

@media (max-width: 768px) {
    .corner-menu-toggle {
        width: 42px;
        height: 42px;
        top: 14px;
        right: 14px;
    }

    .corner-menu-collapse {
        width: 85vw;
        right: 10px;
        top: 66px;
    }

    .corner-menu-panel {
        padding: 24px 20px 32px 24px;
        border-bottom-left-radius: 130px;
    }

    .corner-menu-link {
        font-size: 14px;
    }

    .corner-menu-sub .corner-menu-link {
        font-size: 11px;
    }

    .corner-menu-label span {
        font-size: 10px;
    }
}

/* Floating Right-Edge Icon Bar */
.floating-menu-bar {
    position: fixed;
    top: 140px;
    right: 0;
    width: 75px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 14px 10px;
    background: #0A2320;
    border-right: 1.5px solid #D7B15A;
    border-left: none;
    border-radius: 16px 0 0 16px;
    box-shadow: -4px 4px 24px #204441;
    z-index: 1030;
    transition: top 0.35s ease;
}

.floating-menu-bar-item {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #092c29;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.25s ease, background 0.25s ease;
}

.floating-menu-bar-item:hover {
    background: #135f58;
    transform: scale(1.05);
}

.floating-menu-bar-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(1.25);
    display: block;
}

@media (max-width: 1366px) and (min-width: 769px) {
    .floating-menu-bar {
        width: 68px;
        padding: 12px 8px;
        gap: 9px;
        top: 130px;
        border-radius: 14px 0 0 14px;
    }

    .floating-menu-bar-item {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 768px) {
    .floating-menu-bar {
        width: 60px;
        padding: 10px 6px;
        gap: 8px;
        top: 120px;
        border-radius: 12px 0 0 12px;
    }

    .floating-menu-bar-item {
        width: 40px;
        height: 40px;
    }
}
