* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: white;
}


/* =========================
   NAVIGATION BAR
========================= */

.b {
    width: 100%;
    min-height: 90px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 5%;

    background-color: white;
    border-bottom: 1px solid #e5e5e5;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}


/* Logo and vertical line */
.left-side {
    display: flex;
    align-items: center;
    gap: 28px;
}


/* Logo */
.logobox {
    color: #d88014;
    font-size: 38px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: -1px;
}


/* Vertical line */
.vertical-line {
    width: 1px;
    height: 48px;
    background-color: #c9c9c9;
}


/* Right navigation */
.tworow {
    display: flex;
    align-items: center;
    gap: 42px;
}


/* Navigation buttons */
.nothing {
    border: none;
    background: transparent;
    color: #202124;

    font-size: 18px;
    font-family: inherit;

    cursor: pointer;
    padding: 10px 0;

    transition: color 0.2s ease;
}


.nothing:hover {
    color: orange;
}


.active-page {
    color: darkorange;
    font-weight: 500;
}


.text-accent {
    color: #202124;
}


/* =========================
   CARD LAYOUT
========================= */

.card-layout {
    width: 94%;
    max-width: 1500px;

    margin: 35px auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 28px;
}


/* All cards */
.card {
    position: relative;

    border-radius: 28px;

    overflow: hidden;

    min-height: 480px;

    background-color: #f5f5f5;

    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
}

.card-one,
.card-two {
  min-height: 550px;

}


/* Cards with background images */
.image-card {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}


/* Left image */
.card-one {
    background-image: url("IMG_8825.jpeg");
}


/* Right image */
.card-two {
    background-image: url("IMG_8827.jpeg");
}
.card-three {
    background-image: url("IMG_8828.jpeg");


    background-position: center;
    background-repeat: no-repeat;
}
.card-four {
    background-image: url("IMG_8831.jpeg");
}
.card-five {
    background-image: url("IMG_8834.jpeg");
}
.card-six {
    background-image: url("IMG_8859.jpeg");
}
/* Light overlay so text is readable */
.image-card::before {
    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0.88),
        rgba(255, 255, 255, 0.08)
    );
}


/* Content inside cards */
.card-content {
    position: relative;

    z-index: 2;

    padding: 42px;
}


/* Card heading */
.card-content h2 {
    font-size: 32px;

    margin-bottom: 14px;

    color: #111;
}


/* Card text */
.card-content p {
    font-size: 18px;

    line-height: 1.5;

    max-width: 360px;

    margin-bottom: 24px;

    color: #333;
}


/* Card button */
.card-button {
    border: none;

    background-color: white;

    padding: 14px 22px;

    border-radius: 12px;

    font-size: 16px;

    cursor: pointer;

    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.card-button:hover {
    transform: translateY(-2px);

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.18);
}


/* Bottom card spans full width */
.bottom-card {
    grid-column: 1 / 3;

    min-height: 230px;

    background-color: #f7f6f3;
}


/* Dark button */
.dark-button {
    background-color: #111;
    color: white;
}


/* =========================
   TABLET
========================= */

@media (max-width: 800px) {

    .card-layout {
        grid-template-columns: 1fr;
    }

    .card {
        min-height: 400px;
    }

    .bottom-card {
        grid-column: 1;
        min-height: 250px;
    }
}


/* =========================
   NAVBAR TABLET
========================= */

@media (max-width: 700px) {

    .b {
        min-height: 75px;
        padding: 0 20px;
    }

    .logobox {
        font-size: 28px;
    }

    .vertical-line {
        height: 36px;
    }

    .left-side {
        gap: 16px;
    }

    .tworow {
        gap: 18px;
    }

    .nothing {
        font-size: 15px;
    }
}


/* =========================
   SMALL PHONE
========================= */

@media (max-width: 500px) {

    .card-layout {
        width: 92%;

        margin-top: 20px;

        gap: 20px;
    }

    .card {
        border-radius: 20px;

        min-height: 340px;
    }

    .card-content {
        padding: 28px;
    }

    .card-content h2 {
        font-size: 26px;
    }

    .card-content p {
        font-size: 16px;
    }
}


/* Navbar on very small phones */
@media (max-width: 480px) {

    .b {
        flex-direction: column;

        align-items: flex-start;

        gap: 16px;

        padding: 18px 20px;
    }

    .tworow {
        width: 100%;

        justify-content: space-between;

        gap: 10px;
    }

    .nothing {
        font-size: 14px;
    }
}
/* CONTACT PAGE */

.contact-page {
    width: 92%;
    max-width: 900px;
    margin: 60px auto;
}

.contact-card {
    background: white;
    border: 1px solid #e7e7e7;
    border-radius: 24px;
    padding: 45px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.contact-header {
    margin-bottom: 35px;
}

.contact-small-title {
    color: #d88014;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.contact-header h1 {
    font-size: 38px;
    margin: 0 0 10px;
}

.contact-description {
    color: #666;
    font-size: 16px;
}


/* FORM */

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
}

.form-group label {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: 1px solid #dcdcdc;
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 16px;
    font-family: inherit;
    outline: none;
    transition: 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #d88014;
    box-shadow: 0 0 0 3px rgba(216, 128, 20, 0.10);
}

.form-group textarea {
    min-height: 160px;
    resize: vertical;
}


/* SUBMIT BUTTON */

.contact-submit {
    border: none;
    background: #d88014;
    color: white;
    padding: 14px 22px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
}

.contact-submit:hover {
    background: #bd6f10;
    transform: translateY(-1px);
}

.form-status {
    margin-top: 15px;
    font-size: 14px;
}


/* MOBILE */

@media (max-width: 700px) {

    .contact-page {
        width: 92%;
        margin: 30px auto;
    }

    .contact-card {
        padding: 28px 22px;
    }

    .contact-header h1 {
        font-size: 30px;
    }

}