/* GLOBAL RESET & BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Science Gothic", sans-serif;
}

body {
    background-color: #0d0d0d;
    color: #fff;
}

/* COMMON BUTTON & INTERACTIVE STYLES */
/* Applies to all buttons and elements acting like buttons/links for base transition */
.right .get-touch-btn,
.multi-left button,
.moments-buttons button,
.yacht-contact button,
.about-buttons button,
.btn {
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    font-weight: 500;
    /* Set common font weight for readability */
}

/* COMBINED HOVER EFFECTS */
.center-icons i:hover {
    transform: scale(1.2);
    color: #ccc;
}

.right .get-touch-btn:hover,
.moments-buttons button:hover,
.yacht-contact button:hover,
.about-buttons button:hover {
    transform: scale(1.05);
}

.right .get-touch-btn:hover {
    background-color: #ccc;
}

.multi-left button:hover {
    background-color: #fff;
    color: #000;
}

.yacht-contact button:hover {
    background-color: #0a0462;
    box-shadow: 0 3px 10px rgba(255, 255, 255, 0.2);
}

.btn:hover {
    background: linear-gradient(to bottom, #1a1c0d, #090a02);
    color: #ffffff;
}

.info-item:hover {
    transform: translateY(-5px);
}

.yacht-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(200, 200, 200, 0.4), 0 0 20px rgba(255, 255, 255, 0.1);
}

/* COMMON TEXT & UTILITIES */
.line {
    background-color: rgb(173, 171, 171);
    height: 3px;
    width: 60px;
    border-radius: 2px;
}

.description,
.card-text,
.footer-about p,
.footer-links ul li a {
    line-height: 1.6;
    /* Standardized line height for body text */
}

/* HEADER */
.elite-header {
    width: 100%;
    padding: 20px 56px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #020308;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    height: 80px;
}

.header-left img.logo {
    width: 78px;
    cursor: pointer;
}

.center-icons {
    display: flex;
    gap: 25px;
    align-items: center;
}

.center-icons i {
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
}

.right .get-touch-btn {
    padding: 8px 16px;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

/* HERO */
.hero {
    position: relative;
    width: 100%;
    height: 85vh; /* ADDED – section ko height mil gayi */
    margin-top: 80px;
    text-align: center;
    color: #fff;
    overflow: hidden; /* extra cheezein bahar nahi jayengi */
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

/* All text centered + absolute */
.hero h1,
.hero p,
.hero-buttons {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero h1 {
    top: 35%;
    font-size: 3rem;
    text-transform: uppercase;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.hero p {
    top: 50%;
    width: 80%;
    font-size: 1.2rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.hero-buttons {
    top: 65%;
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 25px;
    background: #010f72;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s;
}

.btn:hover {
    background: #030218;
}

.btn-outline {
    background: transparent;
    border: 2px solid #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
}



/* MULTI SECTION */
.multi {
    width: 100%;
    padding: 50px 30px;
    background: linear-gradient(to bottom, #030218, #090a02);
}

.main {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.right img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
}

.flex {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.flex h3 {
    font-size: 14px;
    letter-spacing: 3px;
    font-weight: 600;
    color: #fff;
}

.multi-left h3.heading {
    font-size: 36px;
    color: #fff;
    margin-bottom: 15px;
}

.multi-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.multi-left p {
    color: #adadad;
}

.multi-left button {
    padding: 10px 20px;
    border: 2px solid #fff;
    background-color: transparent;
    color: #fff;
    margin-right: 10px;
    border-radius: 15px;
}

.multi-bottom {
    margin-top: 50px;
    text-align: center;
    color: #fff;
}

.multi-bottom h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.multi-bottom small {
    font-size: 14px;
    color: #fff;
}

/* YACHT CARDS */
.flexy {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 20px;
    margin-top: 67px;
    width: 100%;
}


.yacht-card {
    background-color: #060f3c;
    border-radius: 15px;
    padding: 20px;
    width: 300px;
    color: #fff;
    text-align: center;
    box-shadow: 0px 0px 15px rgb(7 15 35);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.yacht-title {
    letter-spacing: 2px;
    margin-bottom: 5px;
    font-size: 14px;
    color: #ccc;
}

.yacht-name {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.yacht-image {
    position: relative;
    margin-bottom: 15px;
}

.yacht-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.4s ease;
    /* Added for smoother hover */
}

.yacht-card:hover .yacht-image img {
    transform: scale(1.05);
}

.yacht-logo {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #111;
    color: #fff;
    padding: 6px 12px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
}

.yacht-price {
    margin-bottom: 10px;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 5px;
}

.new-price {
    font-weight: bold;
    font-size: 18px;
    color: #f0f0f0;
}

.yacht-info {
    display: flex;
    justify-content: space-around;
    margin: 15px 0;
    font-size: 14px;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    padding: 10px 0;
    background: rgba(0, 0, 0, 0.3);
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s;
}

.info-item i {
    font-size: 20px;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px;
    border-radius: 50%;
    margin-bottom: 5px;
    color: #fff;
}

.yacht-contact button {
    padding: 8px 14px;
    margin: 5px 5px 0 5px;
    border-radius: 5px;
    border: 1px solid #fff;
    background-color: #060f3c;
    color: #fff;
    font-size: 14px;
}

/* MOMENTS SECTION */
.moments-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 60px 5%;
    color: #fff;
    margin-top: 48px;
    gap: 30px;
}

.moments {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.moments h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 10px;
    max-width: 600px;
}

.moments .line {
    width: 60px;
    height: 3px;
    background-color: #fff;
}

/* BUTTONS */
.moments-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.moments-buttons button {
    padding: 12px 25px;
    border-radius: 10px;
    border: 1px solid #fff;
    background-color: transparent;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

/* ABOUT HERO */
.about-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    padding: 60px 27px;
    color: #fff;
    flex-wrap: wrap;
}

.about-left img {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    object-fit: cover;
}

.about-right {
    max-width: 558px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.subtitle {
    color: #aaa;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

h2 {
    font-size: 2.5rem;
    margin: 0;
}

.about-buttons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.about-buttons button {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

.btn-whatsapp {
    background-color: #25D366;
    color: #fff;
}

.btn-call {
    background-color: #007BFF;
    color: #fff;
}

h2.\.section-h2 {
    text-align: center;
}

/* WHY CHOOSE SECTION */
.why-choose {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0a04623b;
    padding: 70px 60px;
    gap: 40px;
    border-radius: 10px;
}

/* LEFT SIDE */
.why-left {
    flex: 1;
    color: white;
}

.section-subtitle {
    font-size: 20px;
    color: #c6c6c6;
    margin-bottom: 10px;
}

.section-title {
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 25px;
}

.features {
    list-style: disc;
    margin-left: 20px;
    font-size: 18px;
    line-height: 1.7;
    /* Adjusted from 1.6 to match 1.7 in original */
}

.features span {
    font-weight: 700;
}

/* BUTTONS */
.why-buttons {
    margin-top: 35px;
    display: flex;
    gap: 20px;
}

.whatsapp-btn,
.call-btn {
    padding: 12px 30px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
}

.whatsapp-btn {
    background: white;
    color: black;
}

.call-btn {
    background: linear-gradient(to bottom, #0a0462, #03020a);
    color: white;
}

/* RIGHT SIDE IMAGE */
.why-right img {
    width: 500px;
    border-radius: 12px;
    display: block;
}

/* PACKAGES SECTION (Reused .description and .features are fine due to scope) */
.packages-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1400px;
    margin: 67px auto;
}

.package-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease;
}

.package-card:hover {
    transform: translateY(-10px);
}

.package-card .title {
    font-size: 1em;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
    color: #ffd700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.duration {
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 25px;
    color: #fff;
    font-weight: bold;
}

.package-card .description {
    font-size: 1rem;
    margin-bottom: 25px;
    color: #ccc;
}

.package-card .features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.package-card .features li {
    padding: 8px 0;
    position: relative;
    padding-left: 30px;
    font-size: 0.95rem;
}

.package-card .features li::before {
    content: "✓";
    color: #ffd700;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 8px;
}

.buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}



/* WHY CHOOSE CARDS */
.why-choose-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 83px auto;
}

.why-card {
    background: linear-gradient(to bottom, #060333, #03020a);
    border-radius: 24px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}


.why-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: rgba(255, 215, 0, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px auto;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.icon-circle i {
    font-size: 2.2rem;
    color: #040d2c;
}

.card-title {
    font-size: 1.55rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.3;
}

/* FOOTER */
footer {
    background-color: #051343;
    color: #ccc;
    padding: 80px 40px 30px;
    border-top: 1px solid #333;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0b0228fd, #0c3780fb, #051343);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
    gap: 50px;
}

/* Logo & About */
.footer-about h2 {
    color: #ffffff;
    font-size: 2.4rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.social-icons a {
    display: inline-block;
    width: 44px;
    height: 44px;
    background: rgba(7, 2, 39, 0.493);
    color: #0e278a;
    text-align: center;
    line-height: 44px;
    border-radius: 50%;
    margin-right: 12px;
    font-size: 1.3rem;
    transition: all 0.3s;
    border: 1px solid rgba(4, 6, 76, 0.658);
}

.social-icons a:hover {
    background: rgba(7, 2, 39, 0.493);
    color: #ffffff;
    transform: translateY(-5px);
}

/* Links */
.footer-links h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #160589;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 14px;
}

.footer-links ul li a {
    color: #bbb;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s;
    display: inline-block;
}

.footer-links ul li a:hover {
    color: #4543b5;
    padding-left: 8px;
}

/* Contact Info */
.footer-contact h3 {
    /* Added selector for contact title */
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-contact p {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #bbb;
    margin-top: 24px;
}

.footer-contact i {
    color: rgb(26, 5, 162);
    width: 35px;
    font-size: 1.2rem;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Bottom Bar */
.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
    color: #777;
    font-size: 0.95rem;
}

.footer-bottom a {
    color: #ffd700;
    text-decoration: none;
}

elite-services-section {
    padding: 60px 20px;
    text-align: center;
}



/* CARDS CONTAINER (GRID for responsiveness) */

/* CARDS CONTAINER (GRID for responsiveness) */
.services-container {
    display: grid;
    /* Main responsive trick: 3 columns for desktop, collapses automatically */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    /* Limits the overall width */
    margin: 70px auto;
    /* Centers the container */
}

/* INDIVIDUAL CARD STYLING */
.service-card {
    background-color: transparent;
    /* Background is dark */
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.card-image-wrapper {
    width: 100%;
    /* Creates the border around the image */
    border: 3px solid #ccc;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.service-card:hover .card-image-wrapper {
    transform: scale(1.02);
    /* Slight hover effect on card */
}

.card-image-wrapper img {
    width: 100%;
    height: 200px;
    /* Fixed height for consistent look */
    object-fit: cover;
    /* Ensures image covers the area without distortion */
    display: block;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 25px;
    min-height: 40px;
    /* Ensures consistent alignment if titles are different lengths */
}

/* BUTTON STYLING */
.more-info-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 5px;
    border: 1px solid #fff;
    transition: background-color 0.3s, color 0.3s;
}

.more-info-btn:hover {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

/* --- RESPONSIVENESS --- */

/* Medium Screens (e.g., Tablets in portrait) */
@media (max-width: 992px) {
    .services-container {
        /* On tablets, allow 2 columns to fill better */
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

/* Small Screens (e.g., Mobile phones) */
@media (max-width: 600px) {
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .services-container {
        /* On mobiles, 1 column for clean stacking */
        grid-template-columns: 1fr;
        padding: 0 10px;
    }

    .section-title {
        font-size: 28px;
        text-align: center;
    }

    .card-title {
        font-size: 1rem;
    }
}

/* RESPONSIVE */
/* --- RESPONSIVE OPTIMIZATION START --- */

/* 1. Base Mobile Styles (Below 768px - Already mostly defined in main CSS but refined here) */
@media (max-width: 768px) {

    /* HEADER */
    .elite-header {
        padding: 12px 20px;
        height: 60px;
        /* Made header shorter on mobile */
    }

    .header-left img.logo {
        width: 30px;
        display: flex;
    }

    .center-icons {
        gap: 10px;
        /* Reduced gap */
    }

    .center-icons i {
        font-size: 1.1rem;
        /* Smaller icons */
    }

    .right .get-touch-btn {
        padding: 6px 10px;
        font-size: 0.7rem;
        display: flex;
    }

    .description,
    .card-text,
    .footer-about p,
    .footer-links ul li a {
        line-height: 1.6;
        /* Standardized line height for body text */
        text-align: center;
    }

    /* HERO SECTION */
    .hero {
        margin-top: 60px;
        /* Matches new header height */
    }

    .hero img {
        height: 60vh;
        /* Reduced hero image height */
    }

    .hero h1 {
        font-size: 1.8rem;
        /* Smaller H1 */
        top: 35%;
    }

    .social-icons {
        margin-top: 18px;
    }

    .hero p {
        font-size: 0.9rem;
        width: 90%;
        top: 55%;
    }

    /* MULTI SECTION */
  .main {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 60px;
}

    .right img {
        max-width: 90%;
    }

    .multi-left {
        text-align: center;
        width: 100%;
        padding: 0 15px;
    }

    .multi-left h3.heading {
        font-size: 28px;
    }

    .multi-left button {
        margin: 10px 5px;
    }

    /* YACHT CARDS & PACKAGES */
    .flexy {
        margin-top: 40px;
    }

    .yacht-card {
        width: 90%;
        /* Single column */
    }

    .packages-container {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    /* MOMENTS SECTION */
    .moments-container {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 5%;
        gap: 20px;
    }

    .moments-buttons {
        justify-content: flex-start;
        width: 100%;
    }

    .moments-buttons button {
        flex-grow: 1;
        /* Allow buttons to grow equally */
        text-align: center;
        font-size: 14px;
        min-width: unset;
    }

    .moments h3 {
        font-size: 20px;
    }

    /* ABOUT SECTION */
    .about-hero {
        flex-direction: column;
        text-align: center;
        padding: 40px 15px;
    }

    .about-left img {
        max-width: 100%;
    }

    .about-right {
        max-width: 100%;
        padding: 0 10px;
    }

    h2 {
        font-size: 2rem;
    }

    .about-buttons {
        justify-content: center;
    }

    /* WHY CHOOSE MAIN SECTION */
    .why-choose {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .section-title {
        font-size: 36px;
    }

    .why-right img {
        width: 100%;
    }

    .features {
        margin-left: 0;
        text-align: left;
    }

    /* WHY CHOOSE CARDS */
    .why-choose-container {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    /* FOOTER */
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-contact p {
        justify-content: center;
    }

    .footer-links h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* 2. Smaller Mobile Devices (320px - 480px) */
@media (max-width: 480px) {

    /* GLOBAL PADDING */
    .multi,
    .about-hero,
    .why-choose {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* HEADER */
    .elite-header {
        padding: 10px 10px;
    }

    .right .get-touch-btn {
        padding: 5px 8px;
        font-size: 0.65rem;
    }

    /* HERO */
    .hero h1 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 0.8rem;
    }

    /* BUTTON GROUPS - Stack if needed */
    .about-buttons,
    .why-buttons,
    .moments-buttons,
    .buttons {
        flex-direction: column;
        gap: 10px;
        /* margin: auto; */
        justify-content: center;
        align-items: center;
    }

    .about-buttons button,
    .why-buttons button,
    .moments-buttons button,
    .btn {
        width: 50%;
        /* margin: 0 auto; */
        /* display: flex; */
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 28px;
        bottom: 20px;
        right: 20px;
    }

    .footer-about h2 {
        font-size: 2rem;
    }
}


/* 3. Tablet/Mid-Screen Adjustments (769px to 1200px) */
@media (min-width: 769px) and (max-width: 1200px) {

    /* HEADER */
    .elite-header {
        padding: 20px 40px;
    }

    /* LAYOUTS */
    .multi,
    .why-choose,
    .about-hero {
        padding-left: 40px;
        padding-right: 40px;
    }

    /* YACHT CARDS (2 per row) */
    .yacht-card {
        width: 45%;
    }

    .flexy {
        justify-content: space-around;
    }

    /* WHY CHOOSE MAIN SECTION */
    .why-right img {
        width: 400px;
        /* Slightly smaller image on tablet */
    }

    /* PACKAGES (2 or 3 per row depending on exact screen size, minmax handles this) */
    .packages-container {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }

    /* FOOTER */
    .footer-container {
        grid-template-columns: 1.5fr 1fr 1fr;
        /* 3 columns for better space utilization */
        gap: 30px;
    }
}

/* 4. Large Screen Consistency (Above 1200px) */
/* @media (min-width: 1201px) {

    .multi,
    .about-hero,
    .why-choose {
        padding: 50px 60px;
    }
} */

/* --- RESPONSIVE OPTIMIZATION END --- */


elite-packages-section {
    background-color: #1a1a1a;
    /* Dark background matching the image */
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.packages-header {
    margin-bottom: 50px;
}

.section-main-title {
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-align: center;
    margin-top: 70px
}

.packages-content-wrapper {
    display: flex;
    /* Use Flexbox for easy side-by-side layout */
    max-width: 1200px;
    margin: 74px auto;
    gap: 40px;
    align-items: center;
    text-align: left;
    /* Resetting text alignment for content */
}


/* Left Content Area */
.packages-text-left {
    flex: 1;
    /* Takes up available space */
    min-width: 40%;
}

.packages-text-left .subtitle {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 5px;
}

.packages-text-left .main-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.packages-text-left .description {
    font-size: 1rem;
    line-height: 1.6;
    color: #bbb;
}

/* Right Image Area */
.packages-image-right {
    flex: 1;
    /* Takes up available space */
    max-width: 50%;
    /* Max width for image consistency */
    display: flex;
    justify-content: center;
}

.packages-image-right img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    display: block;
}

/* --- RESPONSIVENESS --- */

/* Tablet and Mobile adjustments */
@media (max-width: 900px) {
    .packages-content-wrapper {
        flex-direction: column;
        /* Stack vertically on smaller screens */
        text-align: center;
        gap: 30px;
    }

    .packages-text-left {
        order: 2;
        /* Put text below image on mobile (optional, but often preferred) */
        min-width: 100%;
        padding: 0 15px;
    }

    .packages-image-right {
        order: 1;
        /* Put image above text on mobile */
        max-width: 100%;
        padding: 0 15px;
    }

    .packages-text-left .subtitle {
        text-align: center;
    }

    .packages-text-left .main-heading {
        font-size: 2rem;
    }

    .packages-text-left .description {
        text-align: left;
        /* Keeps long paragraphs readable */
    }
}

/* Small Mobile Screens */
@media (max-width: 480px) {
    .section-main-title {
        font-size: 1.8rem;
    }

    .hero img {
        width: 100%;
        display: block;
        height: 85vh;
        object-fit: cover;
    }


    .about-buttons button,
    .why-buttons button,
    .moments-buttons button,
    .btn {
        width: 45%;
        /* margin: 0 auto; */
        /* display: flex; */
    }

    .moments-buttons button {
        width: 100%;
    }

    .packages-text-left .main-heading {
        font-size: 1.5rem;
    }
}

/* 📱 Mobile (up to 480px) */
@media (max-width: 480px) {
    .hero img {
        height: 70vh;
    }

    .hero h1 {
        top: 35%;
        font-size: 1.8rem;
    }

    .hero p {
        top: 50%;
        font-size: 0.95rem;
        width: 90%;
    }

    .hero-buttons {
        top: 63%;
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        width: 70%;
    }
}

/* 📲 Tablet (481px – 768px) */
@media (max-width: 768px) {
    .hero img {
        height: 75vh;
    }

    .hero h1 {
        font-size: 2.3rem;
        top: 38%;
    }

    .hero p {
        font-size: 1.05rem;
        top: 52%;
    }

    .hero-buttons {
        top: 76%;
        gap: 12px;
    }

   .btn {
        padding: 12px 22px;
        font-size: 1rem;
        width: 100%;
    }
}

/* 💻 Small Laptop (769px – 1024px) */
@media (max-width: 1024px) {
    .hero img {
        height: 80vh;
    }

    .hero h1 {
        font-size: 2.6rem;
    }

     .hero p {
        font-size: 1.1rem;
        margin-top: 27px;
    }
}
