/* ===== PREMIUM SECTION ===== */

.premium-section {
    width: 100%;
}

.premium-wrapper {
    display: flex;
    min-height: 600px;
}

/* ===== LEFT IMAGE SIDE ===== */

.premium-image {
    position: relative;
    flex: 1;
    overflow: hidden;
}

.premium-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Dark bottom gradient overlay */
.premium-image::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 45%;
    background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
}

/* Text on image */
.image-overlay-text {
    position: absolute;
    bottom: 40px;
    left: 40px;
    color: #fff;
    max-width: 80%;
    z-index: 2;
}

.image-overlay-text h2 {
    font-size: 32px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
}

.image-overlay-text p {
    font-size: 16px;
    line-height: 1.6;
}

/* ===== RIGHT CONTENT SIDE ===== */

.premium-content {
    flex: 1;
    background: #bfa15a;
    color: #fff;
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.premium-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 30px;
}

.premium-content p {
    font-size: 18px;
    line-height: 1.8;
    max-width: 450px;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {

    .premium-content {
        padding: 70px 50px;
    }

    .premium-content h1 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {

    .premium-wrapper {
        flex-direction: column;
    }

    .premium-image {
        height: 400px;
    }

    .premium-content {
        padding: 60px 30px;
        text-align: center;
    }

    .premium-content h1 {
        font-size: 34px;
    }

    .image-overlay-text {
        left: 20px;
        bottom: 20px;
        max-width: 90%;
    }

    .image-overlay-text h2 {
        font-size: 22px;
    }

    .image-overlay-text p {
        font-size: 14px;
    }
}
/* ===================================
   PREMIUM BUSINESS SECTION
=================================== */

.business-premium-section {
    padding: 90px 0;
    background: #f9f9f9;
}

/* Top small heading */
.premium-top-title {
    margin-bottom: 60px;
    position: relative;
}

.premium-top-title span {
    font-size: 20px;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

/* Gold oval circle */
.premium-top-title span::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 80px;
    border: 2px solid #cbaa5c;
    border-radius: 50%;
    top: -30px;
    left: -30px;
    pointer-events: none;
}

/* Layout */
.premium-content-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

/* Left Side */
.premium-left {
    flex: 1;
}

.premium-left h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    margin-bottom: 30px;
    color: #1b1b1b;
}

.premium-left p {
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 18px;
    color: #444;
}

/* Right Side */
.premium-right {
    flex: 1;
}

.premium-right img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
}

/* ===================================
   MOBILE RESPONSIVE
=================================== */

@media (max-width: 992px) {

    .premium-content-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .premium-left h2 {
        font-size: 28px;
    }

    .premium-top-title span::after {
        width: 200px;
        height: 60px;
        top: -20px;
        left: -20px;
    }
}
/* ===================================
   ALL INCLUSIVE SECTION
=================================== */

.all-inclusive-section {
    padding: 100px 0;
    background: #ffffff;
}

.all-inclusive-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    text-align: center;
    margin-bottom: 40px;
    color: #1b1b1b;
}

.all-inclusive-content {
    max-width: 900px;
    margin: 0 auto;
}

.all-inclusive-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 30px;
    text-align: left;
}

/* ===================================
   MOBILE RESPONSIVE
=================================== */

@media (max-width: 992px) {

    .all-inclusive-section {
        padding: 60px 20px;
    }

    .all-inclusive-title {
        font-size: 28px;
        line-height: 1.4;
        margin-bottom: 25px;
    }

    .all-inclusive-content p {
        font-size: 15px;
        line-height: 1.8;
    }
}
/* SECTION BACKGROUND */
.services-section {
    background: #f2f2f2;
    padding: 60px 0;
}

/* CONTAINER */
.services1-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 cards desktop */
    gap: 30px;
}

/* CARD */
.service-card {
    background: #ffffff;
    border: 15px solid #e6e6e6; /* grey outer frame like screenshot */
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

/* IMAGE */
.service-card img {
    width: 100%;
    height: 200px; /* smaller height */
    object-fit: cover;
    display: block;
}

/* CONTENT */
.card-content {
    text-align: center;
    padding: 30px 25px 35px;
}

.card-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 12px;
    color: #222;
}

/* GOLD LINE */
.line {
    width: 40px;
    height: 2px;
    background: #cbaa5c;
    display: block;
    margin: 10px auto 20px;
}

/* TEXT */
.card-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 25px;
}

/* BUTTON */
.explore-btn {
    display: inline-block;
    background: #cbaa5c;
    color: #fff;
    padding: 10px 28px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.explore-btn:hover {
    background: #b79a4a;
}

/* =========================
   MOBILE VIEW
========================= */

@media (max-width: 768px) {

    .services1-container {
        grid-template-columns: 1fr; /* 1 card per row */
        gap: 20px;
    }

    .service-card img {
        height: 180px;
    }

    .card-content {
        padding: 25px 20px;
    }

    .card-content h3 {
        font-size: 20px;
    }
}
:root {
    --gold: #c6a44b;
    --text: #222;
}

.premium-services {
    padding: 80px 8%;
    background: #f8f8f8;
    text-align: center;
}

/* TITLE */
.subtitle {
    letter-spacing: 3px;
    font-size: 13px;
    color: #777;
    margin-bottom: 10px;
}

.premium-services h2 {
    font-size: 42px;
    font-weight: 500;
    margin-bottom: 10px;
}

.gold-line {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 15px auto 50px;
}

/* SERVICES GRID */
.services-grid1 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: left;
    margin-bottom: 80px;
}

.services-grid1 ul {
    padding: 0;
}

.services-grid1 li {
    list-style: none;
    margin-bottom: 15px;
    font-size: 15px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.services-grid1 li i {
    color: var(--gold);
    font-size: 14px;
}

/* CONTACT SECTION */
.contact-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.contact-box i {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 20px;
}

.contact-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.contact-box p {
    font-size: 14px;
    color: #666;
}

/* RESPONSIVE */
@media (max-width: 992px) {

    .services-grid1 {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {

    .services-grid1 {
        grid-template-columns: 1fr;
    }

    .premium-services h2 {
        font-size: 30px;
    }
}
