/* ===== GILROY FONTS ===== */
@font-face {
    font-family: 'Gilroy';
    src: url('fonts/Gilroy-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'Gilroy';
    src: url('fonts/Gilroy-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Gilroy';
    src: url('fonts/Gilroy-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Gilroy';
    src: url('fonts/Gilroy-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Gilroy';
    src: url('fonts/Gilroy-ExtraBold.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
}

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

html, body {
    height: 100vh;
    overflow: hidden;
}

body {
    font-family: 'Gilroy', sans-serif;
    background-color: #ffffff;
    color: #0d1932;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* ===== BACKGROUND ===== */
.bg-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
}

.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.85);
    z-index: -1;
}

.logo-area,
.main-content {
    position: relative;
    z-index: 1;
}

/* ===== LOGO AREA ===== */
.logo-area {
    padding: 15px 60px;
    flex-shrink: 0;
}

.logo-area img {
    height: 150px;
    width: auto;
    object-fit: contain;
    display: block;
}

.logo-area .right-logo {
    height: 120px;
}

/* ===== MAIN CONTENT ===== */
.main-content {
    flex: 1;
    padding: 10px 60px 30px;
    gap: 80px;
    max-width: 1500px;
    margin: 0 auto;
    width: 100%;
    min-height: 0;
}

/* ===== LEFT SECTION ===== */
.left-section {
    flex: 1.3;
    padding-right: 60px;
    min-height: 0;
    position: relative;
}

.left-section::after {
    content: '';
    position: absolute;
    top: -100vh;
    bottom: -100vh;
    right: 0;
    width: 1px;
    background-color: #0d1932;
}

/* ===== LAUNCHING SOON ===== */
.launching-soon {
    text-align: center;
    margin-bottom: 50px;
    width: 100%;
}

/* Override Bootstrap .badge styles */
.launching-soon .badge {
    display: block;
    background: none !important;
    color: #e3a924;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 10px;
    padding: 0;
    border-radius: 0;
    line-height: inherit;
}

.launching-soon h3 {
    font-size: 56px;
    font-weight: 700;
    color: #0d1932;
    margin-bottom: 15px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.launching-soon h3 .gold-text {
    color: #e3a924;
}

.launching-soon p {
    font-size: 20px;
    color: #0d1932;
    opacity: 0.7;
    font-weight: 400;
}

/* ===== BLINKING DOTS ===== */
.dot {
    display: inline-block;
    animation: blink 1.5s infinite;
}

.dot-1 { animation-delay: 0s; }
.dot-2 { animation-delay: 0.3s; }
.dot-3 { animation-delay: 0.6s; }

@keyframes blink {
    0%, 20% { opacity: 0; }
    50%      { opacity: 1; }
    100%     { opacity: 0; }
}

/* ===== PROJECTS ===== */
.projects-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
    width: 100%;
}

.projects-title {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #0d1932;
    margin-bottom: 20px;
}

.projects-preview {
    display: flex;
    gap: 0;
    position: relative;
    align-items: stretch;
    width: 100%;
    justify-content: center;
}

.projects-divider {
    width: 1px;
    background-color: #0d1932;
    flex-shrink: 0;
    align-self: stretch;
}

.project-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
    padding: 0 50px;
}

.project-item:first-child {
    padding-left: 0;
    padding-right: 50px;
}

.project-item:last-child {
    padding-left: 50px;
    padding-right: 0;
}

.project-item:hover {
    transform: scale(1.05);
}

.project-item img {
    width: 240px;
    height: auto;
    object-fit: contain;
    display: block;
}

.project-location {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #0d1932;
    text-align: center;
    margin-top: 2px;
}

.project-location i {
    margin-right: 6px;
    color: #e3a924;
    font-size: 14px;
}

/* ===== LEFT FOOTER INFO ===== */
.left-footer-info {
    margin-top: 40px;
    width: 100%;
}

.footer-contact {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
    min-width: 0;
}

/* ===== ADDRESS WRAPPER ===== */
.address-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
}

.address-icon {
    color: #e3a924;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.address-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.address-content p {
    font-size: 15px;
    font-weight: 500;
    color: #0d1932;
    margin-bottom: 6px;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.link-plain {
    color: inherit;
    text-decoration: none;
}

/* ===== RIGHT SECTION ===== */
.right-section {
    flex: 1;
    min-height: 0;
    align-items: center;
}

.form-header {
    margin-bottom: 25px;
    width: 100%;
    max-width: 450px;
    text-align: center;
}

.form-header h2 {
    font-size: 26px;
    font-weight: 700;
    color: #0d1932;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.form-header p {
    font-size: 15px;
    color: #0d1932;
    font-weight: 400;
    opacity: 0.8;
    margin-bottom: 0;
}

/* ===== FORM ===== */
.premium-form {
    width: 100%;
    max-width: 450px;
}

.premium-form .form-group {
    margin-bottom: 22px;
}

.premium-form .form-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #0d1932;
    margin-bottom: 8px;
    font-family: 'Gilroy', sans-serif;
}

.premium-form .form-control {
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid #0d1932;
    border-radius: 0;
    background: transparent;
    font-size: 15px;
    font-family: 'Gilroy', sans-serif;
    color: #0d1932;
    box-shadow: none;
}

.premium-form .form-control:focus {
    border-bottom: 2px solid #0d1932;
    background: transparent;
    box-shadow: none;
    color: #0d1932;
}

.premium-form .form-control::placeholder {
    color: #0d1932;
    opacity: 0.4;
}

.premium-form textarea.form-control {
    height: 85px;
    resize: none;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background-color: #0d1932;
    color: #ffffff;
    border: 1px solid #0d1932;
    border-radius: 0;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    font-family: 'Gilroy', sans-serif;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #e3a924;
    color: #ffffff;
    border-color: #e3a924;
}

/* ===== SOCIAL ICONS ===== */
.footer-social {
    margin-top: 30px;
    width: 100%;
    max-width: 450px;
    display: flex;
    justify-content: center;
}

.social-icons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.social-icons a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0d1932;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 1px solid #0d1932;
}

.social-icons a:hover {
    background-color: transparent;
    color: #0d1932;
    transform: translateY(-2px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    html, body {
        height: auto;
        overflow: auto;
    }

    .main-content {
        flex-direction: column;
        gap: 40px;
        padding: 20px 30px 40px;
        align-items: stretch;
    }

    .left-section {
        padding-right: 0;
        border-bottom: 1px solid #0d1932;
        padding-bottom: 40px;
        width: 100%;
        flex: auto;
    }

    .left-section::after {
        display: none;
    }

    .right-section {
        width: 100%;
        flex: auto;
    }

    .premium-form,
    .footer-social,
    .left-footer-info {
        max-width: 100%;
    }

    .project-item {
        padding: 0 30px;
    }

    .project-item:first-child {
        padding-left: 0;
        padding-right: 30px;
    }

    .project-item:last-child {
        padding-left: 30px;
        padding-right: 0;
    }

    .project-item img {
        width: 180px;
    }

    .launching-soon .badge { font-size: 26px; }
    .launching-soon h3    { font-size: 40px; }
    .launching-soon p     { font-size: 18px; }
}

@media (max-width: 768px) {
    .logo-area {
        padding: 15px 20px;
        justify-content: space-between;
    }

    .logo-area img          { height: 60px; }
    .logo-area .right-logo  { height: 50px; }

    .main-content {
        padding: 10px 20px 40px;
        gap: 30px;
    }

    .projects-preview {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .projects-divider {
        width: 100px;
        height: 1px;
        align-self: center;
    }

    .project-item,
    .project-item:first-child,
    .project-item:last-child {
        padding: 10px 0;
        width: 100%;
    }

    .project-item img { width: 160px; }

    .launching-soon           { margin-bottom: 30px; }
    .launching-soon .badge    { font-size: 20px; }
    .launching-soon h3        { font-size: 32px; }
    .launching-soon p         { font-size: 16px; }

    .form-header h2 { font-size: 24px; }

    .footer-social,
    .left-footer-info { max-width: 100%; }
}

@media (max-width: 480px) {
    .logo-area             { padding: 10px 15px; }
    .logo-area img         { height: 45px; }
    .logo-area .right-logo { height: 38px; }

    .main-content { padding: 10px 15px 30px; }

    .launching-soon h3     { font-size: 26px; }
    .launching-soon .badge { font-size: 16px; }
    .launching-soon p      { font-size: 14px; }

    .projects-title { font-size: 13px; }

    .project-item img { width: 130px; }

    .project-location {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .form-header h2 { font-size: 22px; }
    .form-header p  { font-size: 14px; }

    .premium-form .form-control {
        font-size: 14px;
        padding: 15px 0;
    }

    .submit-btn {
        padding: 14px;
        font-size: 12px;
        letter-spacing: 2px;
    }

    .address-content p { font-size: 13px; }

    .social-icons a {
        width: 34px;
        height: 34px;
        font-size: 12px;
    }
}
