* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Open Sans font from local fonts folder */
@font-face {
    font-family: 'Open Sans';
    src: url('fonts/Open_Sans/static/OpenSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans';
    src: url('fonts/Open_Sans/static/OpenSans-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

/* HK Gothic fonts from local fonts folder */
@font-face {
    font-family: 'HK Gothic';
    src: url('fonts/hk-gothic/HK Gothic Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'HK Gothic';
    src: url('fonts/hk-gothic/HK Gothic Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'HK Gothic';
    src: url('fonts/hk-gothic/HK Gothic SemiBold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}

:root {
    --dark-blue: #1a3a5f;
    --light-beige: #f5f0e8;
    --light-blue: #e8f4f8;
    --white: #ffffff;
    --text-dark: #2c3e50;
    /* Base font size scales with viewport */
    font-size: clamp(12px, 1vw, 16px);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    /* Hide scrollbar for Chrome, Safari and Opera */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

html::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari and Opera */
}

body {
    font-family: 'HK Gothic', sans-serif;
    font-weight: 600;
    overflow-x: hidden;
    overflow-y: auto;
    line-height: 1.6;
    width: 100%;
    max-width: 100%;
    height: 600vh;
    font-size: clamp(14px, 1.2vw, 16px);
    /* Increased for scroll buffers */
    /* Hide scrollbar for Chrome, Safari and Opera */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

body::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari and Opera */
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent !important;
    padding: clamp(0.75rem, 0.78vw, 1.5rem) 0;
    backdrop-filter: none;
}

.header-white {
    background: transparent !important;
}

.header-black {
    background: transparent !important;
}

.header-black .menu-toggle span {
    background: var(--white);
}

.header .container {
    width: 100%;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1000;
}

.logo-image {
    height: 80px;
    width: 232px;
    object-fit: contain;
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
    position: relative;
    z-index: 1000;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--dark-blue);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section - Frame 1 (White) - 1936 */
.hero-section {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    min-height: 100vh;
    height: 100vh;
    background: var(--white);
    overflow: hidden;
    z-index: 100;
}

.hero-video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.8;
    pointer-events: none;
}

.hero-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUpFromBottom {
    from {
        transform: translateY(100px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Build with Clarity. Build with Trust. */
.hero-text {
    position: relative;
    height: 100%;
    width: 100%;
}

.hero-title {
    position: absolute;
    width: auto;
    height: auto;
    left: clamp(25px, 2.6vw, 50px);
    bottom: clamp(35px, 3.65vw, 70px);
    font-family: 'Hanken Grotesk', sans-serif; /* use HK Grotesk for hero title */
    font-style: normal;
    font-weight: 300;
    font-size: clamp(45px, 7.81vw, 150px);
    line-height: clamp(50px, 7.29vw, 140px);
    letter-spacing: -0.06em;         /* noticeably tighter letters */
    color: #8E8E93;
    margin: 0;
    text-align: left;
    animation: fadeIn 1s ease-in-out;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    word-spacing: -0.02em;           /* slightly tighter words */
}

.hero-title .text-light {
    color: #e3e3eb;
    font-weight: 300;
    display: inline;
}

.hero-title .text-bold {
    color: var(--dark-blue);
    font-weight: 700;
    display: inline;
}

/* Line 1 */
.hero-line {
    position: absolute;
    width: 1080px;
    height: 0px;
    left: calc(50% - 1080px/2 + 540px);
    top: 0px;
    opacity: 0;
    border: 1px solid #B0BAC2;
    transform: rotate(90deg);
}

/* Frame 1 */
.hero-frame {
    position: absolute;
    width: 960px;
    height: 1080px;
    left: 960px;
    top: 0px;
}

/* condo-building-transparent-background 1 */
.hero-image {
    position: absolute;
    width: clamp(600px, 87.92vw, 1688px);
    max-width: 100%;
    height: clamp(300px, 41.41vw, 795px);
    left: calc(50% - clamp(300px, 43.96vw, 844px) + clamp(235px, 24.48vw, 470px));
    bottom: clamp(-5px, -0.52vw, -10px);
    overflow: hidden;
    max-width: 100vw;
    right: 0;
    animation: slideUpFromBottom 1.2s ease-out;
}

.building-image {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
}

/* About Section - Frame 2 (Dark Blue) */
.about-section {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    min-height: 100vh;
    height: 100vh;
    background: #000E19;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0;
    padding-top: clamp(15vh, 18vh, 20vh);
    padding-bottom: 0;
    z-index: 200;
    transition: transform 0.3s ease-out;
    will-change: transform;
}

.about-container-frame2 {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: clamp(2vh, 4vh, 6vh);
}

.about-title-frame2 {
    position: relative;
    width: clamp(600px, 83.33vw, 1600px);
    max-width: calc(100% - clamp(40px, 4.17vw, 80px));
    height: auto;
    min-height: clamp(96px, 10vw, 192px);
    left: auto;
    transform: none;
    top: auto;
    margin-top: 0;
    font-family: 'HK Gothic', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: clamp(32px, 4.17vw, 80px);
    line-height: clamp(40px, 5.21vw, 100px);
    text-align: center;
    letter-spacing: -0.02em;
    color: #FEFDFB;
    margin: 0;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-buildings-illustration {
    position: absolute;
    width: clamp(400px, 62.5vw, 1200px);
    max-width: 100%;
    height: clamp(300px, 34.69vw, 666px);
    left: 50%;
    transform: translateX(-50%);
    bottom: clamp(-200px, -20.83vw, -400px);
}

.building-vector-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
    opacity: 0.8;
    max-width: 100%;
}



.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border: 1.5px solid var(--dark-blue);
    border-radius: 25px;
    color: var(--dark-blue);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    width: fit-content;
}

.about-section .section-tag {
    border-color: var(--white);
    color: var(--white);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
    color: var(--text-dark);
    line-height: 1.3;
    letter-spacing: 0px;
}

.about-section .section-title {
    color: var(--white);
}

.know-more-btn {
    padding: 1rem 2.5rem;
    background: var(--white);
    color: #000000;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
}

.know-more-btn:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.about-image {
    position: relative;
    height: 600px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.about-building-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Services Section - Frame 3 (Yellow-100) */
.services-section {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    min-height: 100vh;
    height: 100vh;
    background: #FAF8F2;
    padding: 0;
    padding-top: 0;
    z-index: 300;
    transition: transform 0.3s ease-out;
    will-change: transform;
    overflow: hidden;
}

.services-background-image {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: -150px;
    background: url('assets/key-elements-highrise-building-lease-real-estate-focusing-tenant-benefits-global-appeal 1.png');
    /* slightly zoomed-in background image for frame 3 */
    background-size: 100% auto;
    background-position: center bottom;
    background-repeat: no-repeat;
}

.services-content-wrapper {
    position: absolute;
    width: clamp(600px, 72.92vw, 1400px);
    max-width: calc(100% - clamp(70px, 7.29vw, 140px));
    height: auto;
    min-height: clamp(300px, 25.52vw, 490px);
    left: clamp(35px, 3.65vw, 70px);
    top: 12vh;
}

.services-content-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 30px;
    width: 100%;
    height: 100%;
}

.services-content-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 40px;
    width: 100%;
    max-width: 1170px;
    height: 380px;
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
}

.about-us-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px;
    gap: 20px;
    width: 160px;
    height: 46px;
    margin-top: 24px;
    flex: none;
    order: 0;
    flex-grow: 0;
    box-sizing: border-box;
    border: 1px solid #8A99A5;
    border-radius: 20px;
    background: transparent;
    position: relative;
}

.about-us-text {
    position: absolute;
    width: auto;
    height: auto;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-family: 'HK Gothic', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    color: #000000;
    white-space: nowrap;
}

.services-text-group {
    width: 1170px;
    height: 300px;
    flex: none;
    order: 1;
    flex-grow: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 40px;
    position: absolute;
    left: 0px;
    top: 80px;
}

.services-main-heading {
    width: 100%;
    max-width: clamp(600px, 83.33vw, 1600px);
    height: auto;
    min-height: clamp(150px, 15.63vw, 300px);
    font-family: 'HK Gothic', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: clamp(32px, 4.48vw, 86px);
    line-height: clamp(50px, 5.21vw, 100px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    letter-spacing: clamp(-3px, -0.3vw, -5px);
    word-spacing: -0.03em;
    color: #141414;
    margin: 0;
    flex: none;
    order: 0;
    flex-grow: 0;
}

.services-main-heading-line3 {
    white-space: nowrap;
}

.know-more-button-frame3 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 24px 48px;
    gap: 10px;
    width: 185px;
    height: 60px;
    background: #00223B;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    flex: none;
    order: 1;
    flex-grow: 0;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.know-more-button-frame3:hover {
    background: #003a5f;
    transform: translateY(-2px);
}

.know-more-text {
    width: auto;
    height: auto;
    font-family: 'HK Gothic', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 110%;
    letter-spacing: -0.04em;
    color: #FFFFFF;
    flex: none;
    order: 0;
    flex-grow: 0;
}

.services-description {
    font-size: 1.25rem;
    color: var(--text-dark);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Section - Frame 4 (White) */
.contact-section {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;              /* span full viewport width */
    min-height: 100vh;        /* at least full viewport height */
    height: 120vh;            /* match about page height */
    background: url('assets/Contact BG Wrap → MNaTdWhKQ4PCxwtMgQRe9ROUJo.jpg.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 400;
    transition: transform 0.3s ease-out;
    will-change: transform;
    overflow: hidden;
}

.contact-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: url('assets/Contact BG Wrap → MNaTdWhKQ4PCxwtMgQRe9ROUJo.jpg.png');
    /* Zoomed-out background so more of the image is visible */
    background-size: 100% auto;
    /* Move background image further down */
    background-position: center 20%;
    background-repeat: no-repeat;
    z-index: 0;
}

.contact-text-wrap {
    position: absolute;
    height: auto;
    left: clamp(20px, 3.65vw, 570px);
    right: clamp(20px, 3.65vw, 570px);
    top: clamp(60px, 6.25vw, 120px);
    z-index: 1;
    width: auto;
    max-width: calc(100% - clamp(40px, 7.3vw, 1140px));
}


.contact-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 3rem;
    text-align: center;
    z-index: 2;
    position: relative;
}

.contact-tag-wrapper {
    position: relative;
    width: 100%;
    height: 50px;
}

.contact-tag-border {
    box-sizing: border-box;
    position: absolute;
    width: clamp(120px, 7.81vw, 150px);
    height: clamp(32px, 2.08vw, 40px);
    left: calc(50% - clamp(110px, 11.46vw, 220px) / 2 - clamp(10px, 1.04vw, 20px));
    top: 0px;
    border: 1px solid #FFFFFF;
    border-radius: clamp(12px, 1.3vw, 25px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-tag-text {
    position: relative;
    width: auto;
    height: auto;
    font-family: 'HK Gothic', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: clamp(10px, 0.73vw, 14px);
    line-height: clamp(14px, 1.04vw, 20px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    color: #FFFFFF;
    white-space: nowrap;
}

.contact-heading-wrapper {
    position: absolute;
    height: clamp(43.2px, 4.5vw, 86.4px);
    left: 0px;
    right: 0px;
    top: clamp(25px, 2.66vw, 51px);
}

.contact-title {
    position: absolute;
    width: clamp(400px, 63.75vw, 1222px);
    max-width: calc(100% - clamp(40px, 4.17vw, 80px));
    height: auto;
    min-height: clamp(60px, 6.25vw, 120px);
    left: 50%;
    transform: translateX(-50%);
    top: clamp(-10px, -1vh, -5px);
    font-family: 'HK Gothic', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: clamp(32px, 5vw, 96px);
    line-height: clamp(40px, 6.25vw, 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    letter-spacing: -0.02em;
    word-spacing: -0.03em;
    color: #FFFFFF;
    margin: 0;
    white-space: nowrap;
}

.contact-description {
    position: absolute;
    width: clamp(400px, 41.67vw, 800px);
    max-width: calc(100% - clamp(40px, 4.17vw, 80px));
    height: auto;
    min-height: clamp(55px, 5.73vw, 110px);
    left: 54%;
    transform: translateX(-50%);
    top: clamp(85px, 8.85vw, 170px); /* more space from title */
    font-family: 'HK Gothic', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: clamp(14px, 0.94vw, 18px);
    line-height: clamp(20px, 1.46vw, 28px);
    letter-spacing: -0.01em;
    word-spacing: -0.02em;
    display: flex;
    align-items: center;
    text-align: center;
    color: #FFFFFF;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.contact-form-wrap {
    position: absolute;
    width: clamp(400px, 41.67vw, 800px);
    max-width: calc(100% - clamp(40px, 4.17vw, 80px));
    height: auto;
    min-height: clamp(150px, 12vw, 230px);
    left: 50%;
    transform: translateX(-50%);
    top: clamp(230px, 23.96vw, 460px);     /* more space from description */
    background: #FFFFFF;
    backdrop-filter: blur(2.5px);
    border-radius: clamp(16px, 1.67vw, 32px);
    border: 1px solid #C7C7C7;
    box-sizing: border-box;
    z-index: 1;
    padding: clamp(12px, 1.25vw, 24px) clamp(18px, 1.88vw, 36px);
}

.form-input-wrap {
    position: relative;
    height: auto;
    min-height: clamp(35px, 2vw, 38px);
    width: 100%;
    margin-bottom: clamp(8px, 0.83vw, 16px);
}

.form-input-wrap-row1 {
    top: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(16px, 1.67vw, 32px);
}

.form-input-wrap-row2 {
    height: auto;
    min-height: clamp(38px, 2.2vw, 42px);
    top: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(16px, 1.67vw, 32px);
}

.form-label {
    position: relative;
    height: auto;
    min-height: clamp(35px, 2vw, 38px);
    top: 0px;
    width: 100%;
}

.form-label-first {
    left: 0px;
    right: 0px;
}

.form-label-last {
    left: 0px;
    right: 0px;
}

.form-label-email {
    height: auto;
    min-height: clamp(38px, 2.2vw, 42px);
    left: 0px;
    right: 0px;
}

.form-label-phone {
    height: auto;
    min-height: clamp(38px, 2.2vw, 42px);
    left: 0px;
    right: 0px;
}

.form-input {
    position: relative;
    height: auto;
    min-height: clamp(35px, 2vw, 38px);
    left: 0px;
    right: 0px;
    top: 0px;
    width: 100%;
}

.form-input-full {
    height: auto;
    min-height: clamp(38px, 2.2vw, 42px);
}

.form-input-container {
    position: relative;
    height: auto;
    min-height: clamp(18px, 1.08vw, 20.8px);
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
}

.form-input-wrap-row2 .form-input-container {
    top: 0;
}

.form-input input {
    width: 100%;
    height: 100%;
    border: none;
    border-bottom: 1px solid #E6E9EB;
    border-radius: 0;
    outline: none;
    font-family: 'HK Gothic', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: clamp(11px, 0.83vw, 16px);
    line-height: clamp(16px, 0.94vw, 18px);
    color: #000000;
    background: transparent;
    padding: clamp(8px, 0.94vw, 18px) 0;
}

.form-input input::placeholder {
    color: #C7C7C7;
}

.form-input input:focus {
    border-bottom-color: #00223B;
}

.form-textarea textarea:focus {
    border-bottom-color: #00223B;
    outline: none;
}

.form-horizontal-border {
    display: none;
}

.form-textarea-label {
    position: relative;
    height: auto;
    min-height: clamp(42px, 2.6vw, 50px);
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    margin-bottom: clamp(8px, 0.83vw, 16px);
}

.form-textarea {
    position: relative;
    height: auto;
    min-height: clamp(42px, 2.6vw, 50px);
    left: 0px;
    right: 0px;
    top: 0px;
    width: 100%;
    overflow-y: auto;
}

.form-textarea textarea {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    padding: clamp(6px, 0.42vw, 8px) 0;
    font-family: 'HK Gothic', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: clamp(11px, 0.83vw, 16px);
    line-height: clamp(16px, 1.15vw, 22px);
    color: #000000;
    background: transparent;
    resize: vertical;
    min-height: clamp(30px, 2.2vw, 42px);
    border-bottom: 1px solid #E6E9EB;
}

.form-textarea textarea::placeholder {
    color: #C7C7C7;
}

.contact-submit-button {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: clamp(14px, 1.46vw, 28px) clamp(20px, 2.08vw, 40px);
    gap: clamp(5px, 0.52vw, 10px);
    isolation: isolate;
    position: relative;
    width: 100%;
    height: auto;
    min-height: clamp(40px, 3.33vw, 64px);
    left: 0;
    transform: none;
    top: 0;
    margin-top: clamp(12px, 1.25vw, 24px);
    background: #00223B;
    border: none;
    border-radius: clamp(6px, 0.63vw, 12px);
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-submit-button:hover {
    background: #003a5f;
    transform: translateY(-2px);
}

.contact-submit-button:active {
    transform: translateY(0px);
    background: #00223B;
}

.contact-submit-text {
    width: auto;
    height: auto;
    font-family: 'HK Gothic', sans-serif;
    font-style: normal;
    font-weight: 700;
    white-space: nowrap;
    font-size: clamp(16px, 1.15vw, 22px);
    line-height: clamp(16px, 1.15vw, 22px);
    display: flex;
    align-items: center;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    flex: none;
    order: 0;
    flex-grow: 0;
    z-index: 0;
}


/* Form Message Styles */
.form-message {
    padding: 1rem 1.5rem;
    border-radius: 6px;
    margin-bottom: 2rem;
    font-size: 1rem;
    text-align: center;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.contact-background-image {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    z-index: 1;
    overflow: hidden;
}

.contact-building-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-text {
        justify-content: center;
    }

    .hero-title {
        text-align: center;
    }

    .hero-image {
        justify-content: center;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image {
        height: 400px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .services-container {
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    .header .container {
        padding: 0 1.5rem;
    }

    .hero-container,
    .about-container,
    .services-container,
    .contact-container {
        padding: 0 1.5rem;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .about-image {
        height: 300px;
    }

    .contact-title {
        left: 50%;
        transform: translateX(-50%);
        white-space: normal;
        width: calc(100% - clamp(40px, 7.29vw, 80px));
        justify-content: center;
        text-align: center;
    }

    .contact-description {
        left: 50%;
        transform: translateX(-50%);
        width: clamp(400px, 41.67vw, 800px);
        max-width: calc(100% - clamp(40px, 4.17vw, 80px));
        padding: 0;
        white-space: normal;
        font-size: clamp(14px, 0.94vw, 18px);
        line-height: clamp(20px, 1.04vw, 20px);
    }

    .form-input-wrap-row1,
    .form-input-wrap-row2 {
        grid-template-columns: 1fr;
    }

    .contact-text-wrap {
        left: clamp(20px, 4%, 40px);
        right: clamp(20px, 4%, 40px);
        max-width: calc(100% - clamp(40px, 8%, 80px));
    }
}



/* ============================= */
/* NO COLLISION: ALL WHY CLASSES */
/* ============================= */

/* ===== RESET ONLY INSIDE OUR PAGE ===== */
.why-page * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

/* ===== MAIN WRAPPER TO ISOLATE FROM GLOBAL CSS ===== */
.why-page {
    width: 100%;
    min-height: 100vh;
    background: #000E19;
    color: white;
    position: relative;
    overflow-x: hidden;
}

/* ===== HERO ===== */
.why-page .why-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 8%;
}

.why-page .why-hero-content {
    max-width: 450px;
}

.why-page .why-title {
    font-size: 60px;
    font-weight: 600;
    line-height: 1.1;
}

.why-page .why-subtext {
    margin-top: 20px;
    font-size: 16px;
    opacity: 0.8;
}

.why-page .why-hero-img img {
    width: 420px;
    border-radius: 10px;
}

/* ===== INTRO ===== */
.why-page .why-intro {
    padding: 80px 8%;
    font-size: 18px;
    opacity: 0.85;
}


/* ===== FEATURES GRID ===== */
.why-page .why-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding: 80px 8%;
}

.why-page .why-feature-card {
    padding: 30px;
    border: 1px solid #1c2a38;
    border-radius: 12px;
    background: #07121c;
}

.why-page .why-feature-card span {
    font-size: 32px;
    color: #3FB4FF;
}

.why-page .why-feature-card h3 {
    margin-top: 10px;
    font-size: 20px;
}

.why-page .why-feature-card p {
    margin-top: 8px;
    opacity: 0.7;
}


/* ===== PHILOSOPHY SECTION ===== */
.why-page .why-philosophy {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 8%;
}

.why-page .why-chip {
    font-size: 14px;
    padding: 6px 12px;
    background: #10202f;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 20px;
}

.why-page .why-phil-content {
    max-width: 480px;
}

.why-page .why-btn {
    margin-top: 30px;
    padding: 12px 26px;
    border: none;
    background: #3FB4FF;
    color: #000;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
}

.why-page .why-phil-graphic img {
    width: 420px;
}


/* ===== CONTACT SECTION ===== */
.why-page .why-contact {
    padding: 100px 8%;
    text-align: center;
}

.why-page .why-contact h2 {
    font-size: 36px;
}

.why-page .why-contact form {
    margin-top: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    gap: 20px;
}

.why-page input,
.why-page textarea {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    border: none;
    background: #07121c;
    color: white;
}

.why-page button {
    padding: 14px;
    background: #3FB4FF;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}