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

body {
    font-family: 'Geologica', sans-serif;
    background: #000;
}

p,
span {
    font-family: 'Inter', sans-serif;
}

/* HERO SECTION */

.hero {
    position: relative;
    width: 100%;
    height: 75vh;

    background-image: url("images/hero-bg.png");
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(to right,
            rgba(0, 0, 0, 0.500),
            rgba(0, 0, 0, 0.400));
}

.content {
    position: relative;
    z-index: 2;

    max-width: 12000px;

    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    padding: 0 150px 80px;
}

.back-button {
    position: absolute;
    top: 45px;
    left: 80px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-decoration: none;
    z-index: 10;
}
.back-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}
.back-button svg {
    width: 24px;
    height: 24px;
}

.logo {
    position: absolute;
    top: 40px;
    left: 150px;

    background: url("images/logo.png") no-repeat;
    background-size: contain;

    width: 200px;
    height: 60px;

}

h1 {
    color: white;

    font-size: 5rem;
    line-height: 0.9;
    font-weight: 800;
    letter-spacing: -5px;

    text-transform: uppercase;

    margin-bottom: 30px;
}

.buttons {
    display: flex;
    gap: 20px;
}

.btn {
    display: flex;
    align-items: center;
    gap: 8px;

    text-decoration: none;

    border-radius: 12px;

    transition: .3s;
}

.btn img {
    width: 200px;
    border-radius: 12px;
}

.btn:hover {
    transform: translateY(-3px);
}

.section-1 {
    background: #000;
    padding: 60px 0 20px;
}

.section-1-wrapper {
    width: min(1200px, 90%);
    margin: auto;
}

.section-title {
    color: #fff;

    font-size: 2.7rem;
    font-weight: 700;
    line-height: 1.15;

    max-width: 1000px;

    margin-bottom: 50px;
}

.build {
    margin-top: 20px;
}

.section-1-wrapper p {
    color: #8F8F8F;
    line-height: 1.9;
    font-size: 1rem;
    max-width: 1100px;
}

.section-2 {
    background: #000;
    padding: 80px 0;
}

.section-2-wrapper {
    width: min(1200px, 90%);
    margin: auto;
}

.info-card {
    background: #050505;

    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 22px;

    padding: 38px;

    margin-bottom: 22px;
}

.info-card p {
    color: #8F8F8f;
    font-size: 1rem;
    line-height: 1.9rem;
    max-width: 11000px;
}

.quote-block {
    background: #0A0A0A;

    border-radius: 0 22px 22px 0;

    border-left: 3px solid #fff;

    padding: 50px;

    margin-top: 100px;
}

.quote-block p {
    color: #fff;

    font-size: 1.2rem;

    line-height: 1.8;

    max-width: 1000px;
}

.gray-line {
    border: none;
    height: 1px;
    background: #272727;
    margin: 20px 0;
}

.section-3 {
    background: #000;
    padding: 60px 0 20px;
}

.section-3-wrapper {
    width: min(1200px, 90%);
    margin: auto;
}

.section-title {
    color: #fff;

    font-size: 2.7rem;
    font-weight: 700;
    line-height: 1.15;

    max-width: 1000px;

    margin-bottom: 50px;
}

.build {
    margin-top: 20px;
}

.section-4 {
    background: #000;
    padding: 60px 0 20px;
}

.section-4-wrapper {
    width: min(1200px, 90%);
    margin: auto;
}

.build {
    margin-top: 20px;
}

.section-4-wrapper p {
    color: #8F8F8F;
    line-height: 1.9;
    font-size: 1rem;
    max-width: 1100px;
}

.Phase {
    padding-left: 100px;
    margin-top: 10px;
}

.section-title-core {
    color: #fff;

    font-size: 2.7rem;
    font-weight: 700;
    line-height: 1.15;

    max-width: 1000px;

    margin-bottom: 50px;
}

.build {
    margin-top: 20px;
}

.section-5 {
    background: #000;
    padding: 60px 0 20px;
}

.section-5-wrapper {
    width: min(1200px, 90%);
    margin: auto;
}

.section-title {
    color: #fff;

    font-size: 2.7rem;
    font-weight: 700;
    line-height: 1.15;

    max-width: 1000px;

    margin-bottom: 50px;
}

.build {
    margin-top: 20px;
}

.info-card-core p {
    color: #8F8F8f;
    font-size: 1rem;
    line-height: 1.4rem;
    max-width: 11000px;
    margin-top: 10px;

}

.info-card-core {
    background: #050505;

    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 22px;

    padding: 38px;

    margin-bottom: 150px;
}

.footer {
    position: relative;

    background: url("images/Footer.png") center center no-repeat;
    background-size: 1200px auto;

    padding: 100px 0 40px;
    overflow: hidden;
}

.footer-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, .72);
}

.footer-content {
    position: relative;
    z-index: 2;

    width: min(1200px, 90%);
    margin: auto;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    background: url("images/logo.png") no-repeat center;
    background-size: contain;

    width: 320px;
    height: 90px;

    margin-bottom: 25px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 28px;

    margin-bottom: 55px;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;

    font-size: 1.15rem;
    transition: .3s;
}

.footer-nav a:hover {
    opacity: .75;
}

.footer-tagline {
    color: #fff;
    font-size: 1.35rem;

    margin-bottom: 12px;
}

.footer-love {
    color: #fff;
    font-size: 1.25rem;

    margin-bottom: 40px;
}

.footer-copyright {
    color: #d0d0d0;
    font-size: 1rem;
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width:768px) {

    .content {
        justify-content: flex-end;
        padding: 0 35px 70px;
    }

    .logo {
        top: 35px;
        left: 35px;
    }

    h1 {
        font-size: 3.5rem;
        margin-bottom: 20px;
    }

    .description {
        font-size: .95rem;
        line-height: 1.7;
        margin-bottom: 30px;
    }

    .buttons {
        gap: 12px;
    }

    .btn {
        border-radius: 16px;
    }

    .section-1 {
        padding: 20px 0 60px;
    }

    .section-1-wrapper {
        width: 90%;
    }

    .currently-avaliable-box {
        flex-direction: column;
        align-items: flex-start;

        min-height: auto;

        gap: 20px;

        padding: 20px;
        margin-bottom: 30px;
    }

    .currently-avaliable-box p:first-child {
        font-size: 1rem;
    }

    .currently-avaliable-box>div p {
        font-size: .8rem;
    }

    .currently-avaliable-box p:last-child {
        align-self: flex-end;
    }

    .four-images-container {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .four-images-container div {
        height: 150px;
    }

    .four-images-container p {
        left: 16px;
        bottom: 12px;
        font-size: 1.8rem;
    }

    .section-2 {
        padding: 80px 0;
    }

    .section-title {
        font-size: 2.6rem;
        max-width: 100%;
    }

    .section-description {
        font-size: .95rem;
        line-height: 1.8;

        margin-bottom: 40px;
    }

    .info-card {
        padding: 28px 20px;
        border-radius: 18px;
    }

    .info-card h3 {
        font-size: 1.6rem;
        margin-bottom: 18px;
    }

    .info-card p {
        font-size: .95rem;
        line-height: 1.8;
    }

    .section-3 {
        padding: 80px 0;
    }

    .section-3-title {
        font-size: 2.6rem;
        margin-bottom: 50px;
    }

    .section-3-img-container {
        gap: 20px;
        margin-bottom: 50px;
    }

    .section-3-img-container img {
        max-width: 110px;
    }

    .section-3-img-container h3 {
        font-size: 1rem;
    }

    .section-3-img-container p {
        font-size: .7rem;
    }

    .section-3-multiple-box-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .section-3 .info-card {
        min-height: 180px;
    }

    .quote-block {
        padding: 30px 25px;
    }

    .quote-block p {
        font-size: 1rem;
    }

    .section-4 {
        padding: 80px 0;
    }

    .section-4-title {
        font-size: 2.6rem;
        margin-bottom: 35px;
    }

    .section-4-card {
        padding: 30px 24px;
        border-radius: 18px;
    }

    .section-4-card p {
        font-size: 1rem;
        line-height: 1.9;
    }

    .section-5 {
        padding: 80px 0;
    }

    .section-5-title {
        font-size: 2.6rem;
    }

    .section-5-steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        margin-bottom: 80px;
    }

    .step-card {
        min-height: 220px;
    }

    .step-number {
        font-size: 3rem;
    }

    .footer {
        padding: 70px 0 35px;
    }

    .footer-logo {
        width: 240px;
        height: 70px;
    }

    .footer-nav {
        display: grid;
        grid-template-rows: repeat(3, auto);
        grid-auto-flow: column;
        justify-content: center;
        column-gap: 60px;
        row-gap: 20px;
        text-align: left;
    }

    .footer-nav a {
        font-size: 1rem;
    }

    .footer-tagline {
        font-size: 1.1rem;
    }

    .footer-love {
        font-size: 1.05rem;
    }
}

@media (max-width:480px) {

    .logo {
        width: 140px;
        height: 35px;

        background-size: contain;
        background-repeat: no-repeat;
        background-position: left center;
    }

    h1 {
        font-size: 2.8rem;
    }

    .description {
        font-size: .85rem;
    }

    .buttons {
        flex-wrap: nowrap;
    }

    .btn {
        flex: 1;
        justify-content: center;
    }

    .section-2 {
        padding: 60px 0;
    }

    .section-label {
        font-size: .7rem;
        letter-spacing: 3px;
    }

    .section-title {
        font-size: 2.2rem;
        line-height: 1.15;
    }

    .section-description {
        font-size: .9rem;
    }

    .info-card {
        padding: 22px 18px;
    }

    .info-card h3 {
        font-size: 1.4rem;
    }

    .info-card p {
        font-size: .88rem;
    }

    .section-3-title {
        font-size: 2.2rem;
    }

    .section-3-label {
        font-size: .7rem;
        letter-spacing: 3px;
    }

    .section-3-img-container {
        gap: 10px;
    }

    .section-3-img-container img {
        max-width: 85px;
    }

    .section-3 .info-card h3 {
        font-size: 1.2rem;
    }

    .section-3 .info-card p {
        font-size: .85rem;
    }

    .quote-block {
        padding: 24px 18px;
    }

    .quote-block p {
        font-size: .95rem;
    }

    .section-4 {
        padding: 60px 0;
    }

    .section-4-label {
        font-size: .7rem;
        letter-spacing: 3px;
    }

    .section-4-title {
        font-size: 2.2rem;
        max-width: 300px;

        margin-bottom: 28px;
    }

    .section-4-card {
        padding: 24px 20px;
    }

    .section-4-card p {
        font-size: .95rem;
        line-height: 1.85;
    }

    .section-5 {
        padding: 60px 0;
    }

    .section-5-label {
        font-size: .7rem;
        letter-spacing: 3px;
    }

    .section-5-title {
        font-size: 2.2rem;
    }

    .section-5-description {
        font-size: .95rem;
    }

    .step-card {
        padding: 20px;
    }

    .step-card h3 {
        font-size: 1.2rem;
    }

    .step-card p {
        font-size: .85rem;
    }

    .section-5-card {
        padding: 24px 20px;
    }

    .footer {
        padding: 60px 0 30px;
    }

    .footer {
        position: relative;
        background: url(./images/Footer.png) center center no-repeat;
        background-size: 1200px auto;
        padding: 100px 0 40px;
        overflow: hidden;
    }

    .footer-logo {
        width: 220px;
        height: 65px;
        margin-bottom: 40px;
    }

    .footer-nav {
        display: grid;
        grid-template-rows: repeat(3, auto);
        grid-auto-flow: column;
        justify-content: center;
        column-gap: 50px;
        row-gap: 25px;
        margin-bottom: 50px;
        text-align: left;
    }

    .footer-nav a {
        font-size: 1.05rem;
    }

    .footer-tagline {
        font-size: 1rem;
        line-height: 1.6;

        margin-bottom: 14px;
    }

    .footer-love {
        font-size: 1rem;
        line-height: 1.6;

        margin-bottom: 55px;
    }

    .footer-copyright {
        font-size: .9rem;
    }
}

/* ==========================
   CONTACT MODAL CSS
========================== */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    width: 90%;
    max-width: 450px;
    position: relative;
    color: #fff;
    font-family: 'Geologica', sans-serif;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #888;
}

.close-modal:hover {
    color: #fff;
}

.modal-content h2 {
    margin-bottom: 10px;
}

.modal-content p {
    font-size: 0.95rem;
    color: #aaa;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

.modal-content textarea {
    width: 100%;
    background: #000;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 15px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    resize: vertical;
    margin-bottom: 20px;
}

.modal-content textarea:focus {
    outline: none;
    border-color: #555;
}

.submit-btn {
    width: 100%;
    background: #fff;
    color: #000;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Geologica', sans-serif;
}

.submit-btn:hover {
    background: #e0e0e0;
}

/* ==========================
   THEME TOGGLE BUTTON
========================== */
.theme-toggle {
    position: fixed; top: 30px; right: 30px; z-index: 1000;
    background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%; width: 50px; height: 50px; display: flex; align-items: center;
    justify-content: center; cursor: pointer; backdrop-filter: blur(10px);
    transition: all 0.3s ease; color: #fff;
}
.theme-toggle:hover { background: rgba(255, 255, 255, 0.2); transform: scale(1.05); }
.theme-icon { width: 24px; height: 24px; }

/* ==========================
   LIGHT MODE OVERRIDES
========================== */
body.light-mode { background: #f8f9fa; color: #111; }
body.light-mode .theme-toggle { background: rgba(0, 0, 0, 0.05); border-color: rgba(0, 0, 0, 0.1); color: #000; }
body.light-mode .theme-toggle:hover { background: rgba(0, 0, 0, 0.1); }
body.light-mode .back-button { background: rgba(0, 0, 0, 0.05); border-color: rgba(0, 0, 0, 0.1); color: #000; }
body.light-mode .back-button:hover { background: rgba(0, 0, 0, 0.1); }
body.light-mode h1, body.light-mode h2, body.light-mode h3 { color: #000; }

/* Hero */
body.light-mode .overlay { background: linear-gradient(to right, rgba(255, 255, 255, 0.90), rgba(255, 255, 255, 0.75)); }
body.light-mode .logo { filter: brightness(0); }

/* Modal */
body.light-mode .modal-content { background: #fff; border: 1px solid #ddd; color: #000; }
body.light-mode .modal-content p { color: #555; }
body.light-mode .modal-content textarea { background: #f5f5f5; border: 1px solid #ccc; color: #000; }
body.light-mode .submit-btn { background: #000; color: #fff; }
body.light-mode .submit-btn:hover { background: #333; }

/* Sections */
body.light-mode .section-1,
body.light-mode .section-2,
body.light-mode .section-3,
body.light-mode .section-4,
body.light-mode .section-5 { 
    background: #fff; 
}

/* Info Cards */
body.light-mode .info-card, body.light-mode .info-card-core {
    background: #fff;
    border: 1px solid #eaeaea;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
body.light-mode .info-card p, body.light-mode .info-card-core p { color: #555; }
body.light-mode .info-card strong, body.light-mode .info-card-core strong { color: #111; }

body.light-mode .section-title { color: #000; }

body.light-mode .quote-block { background: #fff; border: 1px solid #eaeaea; box-shadow: 0 4px 20px rgba(0,0,0,0.05); color: #111; }
body.light-mode .quote-block p { color: #555; }

body.light-mode .footer { background-color: #050505; }

@media (max-width: 768px) {
    .theme-toggle { top: 20px; right: 20px; width: 45px; height: 45px; }
}