.luxury-hero {
    display: flex;
    width: 100%;
    min-height: 600px;
}

/* LEFT SIDE */
.hero-left {
    width: 50%;
    position: relative;
    overflow: hidden;
}

.hero-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Dark overlay */
.hero-left::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0.2));
}

/* Overlay text */
.hero-overlay {
    position: absolute;
    bottom: 60px;
    left: 60px;
    color: #fff;
    z-index: 2;
}

.hero-overlay h3 {
    font-size: 26px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.hero-overlay p {
    font-size: 14px;
    max-width: 450px;
}

/* RIGHT SIDE */
.hero-right {
    width: 50%;
    background: linear-gradient(to bottom, #c6a44b, #243447);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px;
}

.hero-content {
    color: #fff;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 16px;
    margin-bottom: 40px;
    max-width: 420px;
}

.hero-btn {
    display: inline-block;
    padding: 14px 35px;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    transition: 0.3s;
}

.hero-btn:hover {
    background: #fff;
    color: #000;
}

/* RESPONSIVE */
@media (max-width: 992px) {

    .luxury-hero {
        flex-direction: column;
    }

    .hero-left,
    .hero-right {
        width: 100%;
    }

    .hero-right {
        padding: 60px 1px;
        text-align: center;
    }

    .hero-overlay {
        left: 30px;
        bottom: 30px;
    }

    .hero-content h1 {
        font-size: 32px;
    }
}
/* SECTION */
.comfort-section {
    padding: 80px 0;
    background: #f5f5f5;
}

/* TITLE */
.section-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 40px;
}

/* FORM */
.comfort-form {
    display: flex;
    flex-direction: column;
}

/* EACH ROW */
.form-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;

    background: #ededed;
    padding: 30px;
    border-radius: 6px;

    margin-bottom: 30px;   /* IMPORTANT: separation */
}

/* FORM GROUP */
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #333;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    background: #fff;
    font-size: 14px;
    border-radius: 4px;
}

/* CAPTCHA */
.captcha-row {
    margin: 20px 0 40px 0;
}

.fake-captcha {
    background: #ededed;
    padding: 20px;
    width: 280px;
    border-radius: 6px;
}

/* BUTTON */
.submit-area {
    text-align: center;
}

.gold-btn {
    background: #c6a24d;
    color: #fff;
    padding: 14px 40px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.gold-btn:hover {
    background: #b48f3d;
}
@media (max-width: 768px) {

    .form-row {
        grid-template-columns: 1fr;   /* 1 column */
        padding: 20px;
    }

    .fake-captcha {
        width: 100%;
    }

    .section-title {
        font-size: 22px;
    }
}
/* PROMO SECTION */
.promo-section {
    padding: 80px 20px;
    text-align: center;
    background: #f5f5f5;
}

/* TOP LINE */
.promo-top {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

/* SMALL NOTE */
.promo-note {
    font-size: 12px;
    color: #777;
    margin-bottom: 40px;
}

/* MAIN HEADING */
.promo-heading {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* SUBTEXT */
.promo-subtext {
    font-size: 16px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}
@media (max-width: 768px) {

    .promo-section {
        padding: 50px 20px;
    }

    .promo-heading {
        font-size: 22px;
    }

    .promo-top {
        font-size: 16px;
    }

    .promo-subtext {
        font-size: 14px;
    }
}
/* LUXURY IMAGE SECTION */
.luxury-images {
    padding: 60px 20px 80px;
    background: #f5f5f5;
}

.luxury-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.luxury-img {
    overflow: hidden;
}

.luxury-img img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}
@media (max-width: 768px) {

    .luxury-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .luxury-img img {
        height: 250px;
    }
}
/* SECTION BACKGROUND */
.class-section {
    padding: 80px 20px;
    background: #f4f4f4;
}

/* CONTAINER */
.class-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    text-align: center;
}

/* BOX */
.class-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin-bottom: 10px;
}

.class-sub {
    font-size: 14px;
    margin-bottom: 40px;
    color: #555;
}

/* FEATURE LIST */
.class-features {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.class-features li {
    padding: 14px 0;
    border-bottom: 1px solid #dcdcdc;
    font-size: 16px;
}

/* BUTTON */
.gold-btn {
    display: inline-block;
    background: #c7a550;
    color: white;
    padding: 12px 2px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s ease;
}

.gold-btn:hover {
    background: #b8943f;
}


/* ========================= */
/* BOTTOM CTA */
/* ========================= */

.comfort-cta {
    padding: 60px 20px 100px;
    background: #f4f4f4;
}

.cta-box {
    max-width: 1000px;
    margin: auto;
    background: white;
    padding: 50px 40px;
    border-top: 4px solid #c7a550;
    text-align: center;
}

.cta-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 20px;
}

.cta-box h3 span {
    font-style: italic;
}

.cta-box p {
    font-size: 15px;
    margin-bottom: 30px;
    color: #555;
}
@media (max-width: 768px) {

    .class-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .class-box h2 {
        font-size: 26px;
    }

    .cta-box {
        padding: 30px 20px;
    }

    .cta-box h3 {
        font-size: 22px;
    }
}
.why-choose-section {
    background: #f4f4f4;
    padding: 100px 0;
}

.why-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* LEFT TEXT */
.why-content {
    width: 50%;
}

.why-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    margin-bottom: 25px;
}

.why-content p {
    font-size: 14px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

/* RIGHT IMAGE */
.why-image {
    width: 50%;
    background: #e5e5e5;
    padding: 25px;
}

.why-image img {
    width: 100%;
    height: auto;
    display: block;
}
@media (max-width: 992px) {

    .why-container {
        flex-direction: column;
        text-align: center;
    }

    .why-content,
    .why-image {
        width: 100%;
    }

    .why-image {
        padding: 15px;
    }
}
.image-collage-section {
    padding: 100px 0;
    background: #ffffff;
}

.collage-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 25px;
}

/* LEFT BIG IMAGE */
.collage-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

/* RIGHT COLUMN */
.collage-right {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 25px;
}

.collage-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

/* Optional luxury hover */
.collage-left img,
.collage-small img {
    transition: 0.4s ease;
}

.collage-left img:hover,
.collage-small img:hover {
    transform: scale(1.03);
}
@media (max-width: 992px) {

    .collage-container {
        grid-template-columns: 1fr;
    }

    .collage-right {
        grid-template-rows: none;
        grid-template-columns: 1fr 1fr;
    }

}
.regions-section {
    padding: 80px 8%;
    background: #f4f5f7;
    text-align: center;
}

/* Top Icon */
.top-icon img {
    width: 120px;
    margin-bottom: 25px;
}

/* Subtitle */
.top-subtitle {
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    max-width: 1000px;
    margin: 0 auto 30px;
    color: #222;
}

/* Double Lines */
.divider-lines {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 40px;
}

.divider-lines span {
    width: 40px;
    height: 6px;
    background: #c6a354;
}

/* Section Title */
.section-title {
    font-size: 18px;
    letter-spacing: 5px;
    margin-top: 40px;
}

.space-top {
    margin-top: 80px;
}

/* Gold Dash Under Title */
.gold-dash {
    width: 70px;
    height: 3px;
    background: #c6a354;
    margin: 15px auto 40px;
}

/* Region Grid */
.region-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: left;
    max-width: 1200px;
    margin: auto;
}

/* Country Grid */
.country-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    text-align: left;
    max-width: 1300px;
    margin: auto;
}

/* Lists */
.region-grid ul,
.country-grid ul {
    list-style: none;
    padding: 0;
}

.region-grid li,
.country-grid li {
    margin-bottom: 14px;
    font-size: 15px;
    position: relative;
    padding-left: 28px;
}

/* Gold Check Circle */
.region-grid li::before,
.country-grid li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 2px;
    width: 18px;
    height: 18px;
    background: #c6a354;
    color: #fff;
    font-size: 12px;
    text-align: center;
    line-height: 18px;
    border-radius: 50%;
}

/* RESPONSIVE */

@media (max-width: 1024px) {
    .region-grid,
    .country-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .region-grid,
    .country-grid {
        grid-template-columns: 1fr;
    }

    .top-subtitle {
        font-size: 12px;
        letter-spacing: 2px;
    }
}
