                        /* ################## IMPORT ################  */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

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

                            /* ################ BASE #############  */
body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333333;
}

p, li {
    font-size: 1rem;
    margin-bottom: 0.5em;
    letter-spacing: 0.03em;
}

h1, h2, h3 {
    margin-bottom: 0.5em;
    letter-spacing: 0.05em;
    font-weight: 600;
}


                                /*   ################### UTILITY CLASSES  ######################## */
.text-red    { color: #e63946; }
.text-light  { color: #f4f4f4; }
.text-black  { color: #333333; }
.text-grey   { color: #555555; }
.text-orange { color: #f0a500; }
.bg-dark     { background-color: #1a2a3a; }

                                    /* ########## BUTTON STYLING ##########  */
.btn {
    display: inline-block;
    padding: 0.5em 1.5em;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0.5em 0;
    text-decoration: none;
}

.btn-primary {
    background-color: white;
    border-radius: 10em;
}

.btn-primary:hover {
    background-color: #f0f0f0;
}

.btn-secondary {
    border: 2px solid #e63946;
    border-radius: 1.5em;
    color: #e63946;
}

.btn-secondary:hover {
    background-color: #e63946;
    color: white;
}


                                        /*   ############## LAYOUT  ###############  */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 40px;
    overflow: hidden;
}


                                            /*   ############ NAVBAR  ################ */
.navbar {
    overflow: hidden;
}

.logo-image {
    float: left;
    height: 60px;
    width: auto;
}

.nav-items {
    float: right;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-item {
    display: inline-block;
    margin-left: 30px;
}

.nav-item a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
}

.nav-item a:hover {
    color: #f0a500;
    border-bottom: 0.5px solid #f0a500;
}


                                    /*  ################### HERO HEADER  ###################  */
.headerog {
    position: relative;
    height: 98vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
                url("../images-files/travel-hd.jpg") center/cover no-repeat;
}

.header-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 80%;
}

.header-content h1 {
    text-transform: uppercase;
    font-weight: 700;
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.header-content p {
    text-transform: uppercase;
    color: whitesmoke;
    font-size: 1rem;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}


                                    /* ##################  SHOWCASE SECTION  ################## */
.showcase {
    background: #f0f0f0;
    padding: 8rem 0;
}

.row {
    height: 350px;
    background-color: white;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.row1 { margin-bottom: 6rem; }

.row1 .img-box, .row2 .text-box { float: left;  width: 50%; }
.row2 .img-box, .row1 .text-box { float: right; width: 50%; }

.row .img-box {
    height: 100%;
}

.row .img-box img {
    display: inline-block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.row .text-box {
    padding: 3rem;
    height: 100%;
    padding-top: 4rem;
}

.row .text-box p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555555;
    letter-spacing: 0.02em;
}

.row::after {
    content: '';
    display: block;
    clear: both;
}


                            /* ##########  FEATURES SECTION ########## */
.features {
    background-color: #f9f9f9;
    padding: 8rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a2a3a;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1rem;
    color: #777777;
    letter-spacing: 0.03em;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

.box-wrapper {
    overflow: hidden;
}

.box-wrapper::after {
    content: '';
    display: block;
    clear: both;
}

.box {
    float: left;
    width: 31.333%;
    margin-right: 3%;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 2px 20px rgba(0,0,0,0.07);
    transition: box-shadow 0.3s ease;
}

.box-3 { margin-right: 0; }

.box:hover {
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.box-icon {
    width: 70px;
    height: 70px;
    background-color: #fff4e0;
    border-radius: 50%;
    margin: 0 auto 1.5rem auto;
    padding-top: 15px;
    text-align: center;
}

.box-icon i {
    font-size: 1.8rem;
    color: #f0a500;
}

.box-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a2a3a;
    margin-bottom: 1rem;
    letter-spacing: 0.03em;
}

.box-text {
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.8;
    letter-spacing: 0.02em;
}


                                        /* ############# ABOUT PAGE STYLING  ############ */
.about {
    padding: 3rem 0 0 0;
    background-color: #ffffff;
}

.about-heading {
    font-size: 2rem;
    font-weight: 700;
}

.about-heading::after {
    content: '';
    display: block;
    border-bottom: 2px solid #e63946;
    width: 100%;
    margin-bottom: 1.5rem;
}

.container-paragraph p {
    font-size: 1rem;
    color: #555555;
    line-height: 1.8;
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
}

.points-content {
    overflow: hidden;
    margin-bottom: 0;
}

.points-content::after {
    content: '';
    display: block;
    clear: both;
}

.column1s { float: left;  width: 50%; }
.column2s { float: right; width: 50%; }

.column1s ul, .column2s ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.column1s li, .column2s li {
    font-size: 1rem;
    color: #333333;
    margin-bottom: 0.8rem;
    letter-spacing: 0.02em;
}

.column1s li::before, .column2s li::before {
    content: '✓  ';
    color: #e63946;
    font-weight: 700;
    padding: 0.5em;
}


/* ================================
   COUNT SECTION
================================ */
.count {
    padding: 3rem 0;
    overflow: hidden;
    border-top: 1px solid #eeeeee;
    background-color: #ffffff;
    margin-top: 3rem;
}

.count .container {
    overflow: hidden;
}

.count::after {
    content: '';
    display: block;
    clear: both;
}

.count_item {
    float: left;
    width: 25%;
    text-align: center;
}

.count_item span {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: #e63946;
    line-height: 1.2;
}

.count_item p {
    font-size: 0.85rem;
    font-weight: 700;
    color: #555555;
    margin-top: 0.4rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}


/* ================================
   CTA BANNER
================================ */
.cta-banner {
    background: linear-gradient(25deg, #d64c7f, #ee4758 50%);
    padding: 1.2rem 0;
    color: #f4f4f4;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    margin-top: 0;
}

.cta-banner .container {
    display: table;
    width: 100%;
    overflow: hidden;
}

.cta-banner-left {
    display: table-cell;
    width: 65%;
    vertical-align: middle;
}

.cta-banner-right {
    display: table-cell;
    width: 35%;
    vertical-align: middle;
    text-align: right;
}

.cta-banner::after {
    content: '';
    display: block;
    clear: both;
}

.cta-line {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
    color: white;
    letter-spacing: 0.02em;
}

.btn-cta {
    display: inline-block;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    border: 2px solid white;
    padding: 0.8em 2em;
    letter-spacing: 0.1rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background-color: white;
    color: #e63946;
}


                                        /*   ###############    FOOTER  STYLIING  ############# */
.footer {
    background-color: #1a2a3a;
    color: #f4f4f4;
    text-align: center;
    padding: 2.5rem;
}

.social-media-links {
    margin-bottom: 1rem;
}

.social-media-links a {
    color: #f4f4f4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-media-links a:hover {
    color: #f0a500;
}

.social-media-links i {
    margin: 1rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.footer p {
    font-size: 1rem;
    color: #aaaaaa;
    letter-spacing: 0.05em;
}
                        /* ###################### CONTACT PAGE STYLING ######################  */
.contact-form {
    padding: 5rem 0;
    background: #f7f7f7;
}

.form-wrapper {
    overflow: hidden;
}

.form-wrapper::after {
    content: '';
    display: block;
    clear: both;
}

/* Left column */
.form-wrapper .company-address {
    width: 38%;
    float: left;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    min-height: 500px;
}

.form-wrapper .company-address i {
    display: inline-block;
    margin-right: 0.8rem;
}

.form-wrapper .company-address h2 {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-wrapper .address-group {
    margin-bottom: 2rem;
}

.address-group p {
    margin-left: 2rem;
    margin-top: 0.3rem;
    font-size: 0.95rem;
    color: #555555;
    margin-bottom: 0;
}

.company-address img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    object-position: center 30%;
    display: block;
    border-radius: 8px;
    margin-top: 1rem;
}

/* Right column — form */
.form-wrapper .form {
    width: 58%;
    float: right;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    font-size: 1rem;
    border: none;
    min-height: 500px;
}

/* Form heading underline */
.form h2::after {
    content: '';
    width: 100%;
    display: block;
    border-bottom: 3px solid #ee4758;
    margin-bottom: 1rem;
}

.form-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a2a3a;
    margin-bottom: 0.3rem;
}

.form-subtitle {
    font-size: 0.95rem;
    color: #777777;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Form groups */
.form-wrapper .form .form-group {
    margin-bottom: 1.5rem;
}

.form-wrapper .form label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 0.4rem;
}

.form-wrapper .form label::after {
    content: ' *';
    color: #ee4758;
}

.form-wrapper .form input,
.form-wrapper .form textarea {
    display: block;
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1px solid #dddddd;
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: 'Montserrat', sans-serif;
    color: #333333;
    background: #fafafa;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-wrapper .form input:focus,
.form-wrapper .form textarea:focus {
    border-color: #f0a500;
    background: #ffffff;
}

.form-wrapper .form textarea {
    height: 150px;
    resize: vertical;
}

/* Submit button */
.btn-submit {
    display: block;
    width: 100%;
    padding: 0.9rem;
    background: #ee4758;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 0.5rem;
}

.btn-submit:hover {
    background-color: #c1121f;
}

/* Privacy note */
.form-privacy {
    font-size: 0.8rem;
    color: #aaaaaa;
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 0;
}


            /* #### MEDIA QUERIES ######### */
@media screen and (max-width: 768px) {
    html { font-size: 55%; }

    /* --- Navbar --- */
    .logo-image {
        float: none;
        display: block;
        margin: 0 auto;
    }

    .nav-items {
        float: none;
        width: 100%;
        text-align: center;
        margin-top: 0.5rem;
    }

    .nav-item {
        margin: 0 10px;
    }

    /* --- Hero --- */
    .header-content {
        width: 95%;
    }

    .header-content h1 {
        font-size: 2rem;
    }

    /* --- Showcase --- */
    .row {
        height: auto;           /* remove fixed height */
    }

    .row1 .img-box,
    .row2 .img-box,
    .row1 .text-box,
    .row2 .text-box {
        float: none;
        width: 100%;            /* full width — stack vertically */
    }

    .row .img-box {
        height: 250px;          /* give image fixed height when stacked */
    }

    .row .text-box {
        padding: 2rem;
        padding-top: 2rem;      /* reset manual top padding */
        height: auto;
    }

    .row1 { margin-bottom: 4rem; }

    /* --- Features --- */
    .box {
        width: 100%;
        margin-right: 0;
        margin-bottom: 2rem;
    }

    /* --- About counts --- */
    .count_item {
        width: 50%;             /* 2 per row instead of 4 */
        margin-bottom: 2rem;
    }

    /* --- CTA Banner --- */
    .cta-banner-left,
    .cta-banner-right {
        display: block;
        width: 100%;
        text-align: center;
    }

    .cta-banner-right {
        margin-top: 1rem;
        padding-top: 0;
    }

    /* --- Contact --- */
    .form-wrapper .company-address,
    .form-wrapper .form {
        float: none;
        width: 100%;
        margin-bottom: 2rem;
    }
}


/* ================================
   MOBILE — 480px and below
================================ */
@media screen and (max-width: 480px) {

    html { font-size: 45%; }

    /* --- Hero --- */
    .header-content h1 { font-size: 1.8rem; }
    .header-content p  { font-size: 0.9rem; letter-spacing: 0.05em; }

    /* --- Navbar — stack logo above links --- */
    .nav-items { margin-top: 0.5rem; }
    .nav-item  { margin: 0 8px; }
    .nav-item a { font-size: 14px; }

    /* --- Section titles --- */
    .section-title  { font-size: 1.6rem; }
    .about-heading  { font-size: 1.5rem; }
    .form-title     { font-size: 1.3rem; }

    /* --- Showcase --- */
    .row .img-box { height: 200px; }

    /* --- About checklist --- */
    .column1s,
    .column2s {
        float: none;
        width: 100%;
    }

    /* --- Count — all 4 stacked --- */
    .count_item {
        width: 50%;
    }

    /* --- CTA text smaller --- */
    .cta-line { font-size: 0.9rem; }

    /* --- Contact form --- */
    .form-wrapper .form { padding: 1.5rem; }
    .form-wrapper .company-address { padding: 1.5rem; }
}