/* Hero Banner Image Section */
.hero-banner-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 76px; /* Space for Nav Bar only */
    background: #000;
}

.hero-banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 480px;
}

/* Intro Section (White background, two column copy & video) */
.intro-section {
    background-color: #ffffff;
    padding: 5rem 2rem;
    border-bottom: 1px solid var(--color-border);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-left {
    display: flex;
    flex-direction: column;
}

.intro-title {
    color: var(--color-primary);
    font-size: clamp(2rem, 3.8vw, 2.85rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.intro-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-text-dark);
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.intro-text a {
    color: var(--color-primary);
    text-decoration: underline;
    font-weight: 600;
}

.intro-text a:hover {
    color: var(--color-accent);
}

.intro-buttons {
    display: flex;
}

.intro-buttons .btn {
    background: var(--color-primary);
    color: white;
}

.intro-buttons .btn:hover {
    background: var(--color-accent);
    box-shadow: var(--shadow-accent-glow);
}

.intro-right {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 640px;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}



/* Royale Party Services Section (Dark themed) */
.services-section-dark {
    padding: 6rem 2rem;
    background-color: var(--color-secondary);
    color: white;
}

.services-header {
    margin-bottom: 4rem;
}

.services-main-title {
    font-family: var(--font-headings);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.services-main-desc {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--color-text-light);
    opacity: 0.8;
}

.services-3col-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: stretch;
}

.grid-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card-new {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    height: 100%;
}

.card-img-container {
    width: 100%;
    height: 190px;
    overflow: hidden;
}

.card-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card-new:hover .card-img-container img {
    transform: scale(1.04);
}

.card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-content h3 {
    font-family: var(--font-headings);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.card-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-dark);
    margin-bottom: 2rem;
    flex-grow: 1;
}

.card-btn {
    align-self: stretch;
    background: var(--color-primary);
    color: white;
    text-align: center;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.card-btn:hover {
    background: var(--color-accent);
}

/* Tall Itinerary Card Column 3 */
.itinerary-card-tall {
    background: #0d214a;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    padding: 2.25rem 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.itinerary-header h3 {
    font-family: var(--font-headings);
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
}

.itinerary-body {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    flex-grow: 1;
}

.itinerary-day-block {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.day-title-bar {
    background: var(--color-accent);
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    text-align: center;
}

.day-list {
    list-style: none;
    padding-left: 0.5rem;
}

.day-list li {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.25rem;
    position: relative;
    padding-left: 1.25rem;
}

.day-list li::before {
    content: "•";
    color: var(--color-accent);
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: -2px;
}

.itinerary-footer {
    margin-top: 2rem;
}

.itinerary-inquire-btn {
    display: block;
    background: var(--color-accent);
    color: white;
    text-align: center;
    padding: 0.9rem 1.5rem;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.itinerary-inquire-btn:hover {
    background: #e02216;
}

.btn-all-services {
    display: inline-block;
    background: var(--color-primary);
    color: white;
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-all-services:hover {
    background: var(--color-accent);
    transform: translateY(-2px);
}



/* Review / Trust Section */
.trust-section {
    padding: var(--section-padding);
    background: white;
    border-bottom: 1px solid var(--color-border);
}

.trust-content {
    max-width: 800px;
    margin: 0 auto;
}

.trust-title {
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: var(--color-text-muted);
}

.trust-quote {
    font-family: var(--font-headings);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-secondary);
    margin-bottom: 2rem;
    position: relative;
}

.trust-review-card {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.25rem 2rem;
    border-radius: var(--radius-md);
    background: var(--color-bg-light);
    border: 1px solid var(--color-border);
}

.google-reviews-badge {
    text-align: left;
}

.google-reviews-badge .rating-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-secondary);
}

.google-reviews-badge .reviews-count {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.google-reviews-badge .google-brand {
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 2px;
}

/* simple color styling matching google */
.google-brand span:nth-child(1) { color: #4285F4; }
.google-brand span:nth-child(2) { color: #EA4335; }
.google-brand span:nth-child(3) { color: #FBBC05; }
.google-brand span:nth-child(4) { color: #4285F4; }
.google-brand span:nth-child(5) { color: #34A853; }
.google-brand span:nth-child(6) { color: #EA4335; }



/* Contact Forms Formspree style using vanilla JS */
.inquiry-section {
    padding: var(--section-padding);
    background-color: var(--color-bg-light);
}

.inquiry-form-wrapper {
    max-width: 650px;
    margin: 0 auto;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-medium);
    padding: 3rem;
    border: 1px solid var(--color-border);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.form-control {
    width: 100%;
    padding: 0.85rem 1.25rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: var(--transition-smooth);
    background-color: #f8fafc;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    background-color: white;
    box-shadow: 0 0 0 3px var(--color-primary-glow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
@media (max-width: 992px) {
    .services-3col-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .inquiry-form-wrapper {
        padding: 1.75rem;
    }
}



/* Planners Section styling */
.planners-section {
    position: relative;
    padding: 6rem 2rem;
    background: linear-gradient(rgba(0, 42, 139, 0.92), rgba(7, 15, 30, 0.94)),
                url('../images/team-planners.webp') no-repeat center center;
    background-size: cover;
    color: white;
}

.planners-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.planners-left {
    display: flex;
    flex-direction: column;
}

.planners-title {
    font-family: var(--font-headings);
    font-size: clamp(2rem, 3.8vw, 2.75rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.planners-text {
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.planners-bullets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.bullet-col {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.bullet-item {
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    color: white;
}

.bullet-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background-color: white;
    color: var(--color-primary);
    border-radius: 50%;
    font-size: 0.7rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.btn-planners-more {
    display: inline-block;
    background-color: white;
    color: var(--color-primary);
    padding: 0.85rem 2rem;
    font-weight: 700;
    border-radius: 4px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-planners-more:hover {
    background-color: var(--color-accent);
    color: white;
    transform: translateY(-2px);
}

.planners-right {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.planners-team-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Planners responsive overrides */
@media (max-width: 992px) {
    .planners-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 576px) {
    .planners-bullets {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }
}



/* Google Reviews Carousel Section */
.reviews-carousel-section {
    padding: 6rem 2rem;
    background-color: #f8fafc;
    border-bottom: 1px solid var(--color-border);
}

.reviews-main-title {
    font-family: var(--font-headings);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 4.5rem;
    letter-spacing: -0.5px;
}

.reviews-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

/* Google Badge Card */
.google-badge-card {
    background: white;
    padding: 2.25rem 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid var(--color-border);
    text-align: center;
}

.badge-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 0.75rem;
}

.badge-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.rating-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-dark);
}

.badge-stars, .card-stars {
    color: #f4b400; /* Gold/yellow star colors matching Google Reviews */
    font-size: 1.15rem;
    letter-spacing: 2px;
}

.badge-count {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 1.25rem;
}

.badge-powered {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.badge-powered .google-text {
    font-weight: 700;
    color: var(--color-text-dark);
}

.btn-review-us {
    background: #1a73e8;
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.6rem 1.5rem;
    border-radius: 9999px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: background-color 0.2s;
}

.btn-review-us:hover {
    background: #1557b0;
}

.btn-review-us span {
    background: white;
    color: #1a73e8;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 900;
}

/* Slider Right Side */
.reviews-carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0 2.5rem;
    box-sizing: border-box;
    min-width: 0; /* Prevents grid column from stretching beyond its fraction */
}

.reviews-slider-viewport {
    width: 100%;
    overflow: hidden;
    padding: 1rem 0;
}

.reviews-slider-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
}

/* Individual Review Card */
.review-card {
    background: white;
    border-radius: 8px;
    border: 1px solid var(--color-border);
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    padding: 1.75rem;
    flex: 0 0 calc((100% - 4rem) / 3); /* Shows 3 cards at a time */
    min-width: 0; /* Remove overriding min-width to prevent layout break */
    display: flex;
    flex-direction: column;
    height: 250px;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    margin-bottom: 0.75rem;
    width: 100%;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Google-like colored avatars */
.avatar-green { background-color: #0f9d58; }
.avatar-blue { background-color: #4285f4; }
.avatar-pink { background-color: #e91e63; }
.avatar-orange { background-color: #f4b400; }
.avatar-teal { background-color: #009688; }
.avatar-purple { background-color: #673ab7; }

.user-meta {
    display: flex;
    flex-direction: column;
}

.user-meta h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-text-dark);
}

.user-meta span {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.google-icon {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 0.85rem;
    font-weight: 900;
    color: #4285f4;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-stars {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.card-text-scroll {
    overflow-y: auto;
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--color-text-muted);
    flex-grow: 1;
    padding-right: 0.5rem;
    text-align: left;
}

/* Simple scrollbar design inside card text */
.card-text-scroll::-webkit-scrollbar {
    width: 4px;
}

.card-text-scroll::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 4px;
}

.card-text-scroll::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

/* Arrow controls */
.carousel-arrow {
    background: white;
    border: 1px solid var(--color-border);
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    color: #94a3b8;
    position: absolute;
    z-index: 10;
    transition: all 0.2s;
}

.carousel-arrow:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
    background-color: #f8fafc;
}

.carousel-arrow.prev {
    left: 0;
}

.carousel-arrow.next {
    right: 0;
}

/* Carousel dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #cbd5e1;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: #fc2e20;
}

/* Responsive Overrides */
@media (max-width: 1100px) {
    .review-card {
        flex: 0 0 calc((100% - 2rem) / 2); /* Shows 2 cards */
    }
}

@media (max-width: 992px) {
    .reviews-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .google-badge-card {
        max-width: 320px;
        margin: 0 auto;
    }
}

@media (max-width: 650px) {
    .review-card {
        flex: 0 0 100%; /* Shows 1 card */
    }
}



/* Luxury Villas Section */
.villas-section {
    padding: 6rem 2rem;
    background-color: #060b13; /* Very dark background */
    background-image: radial-gradient(circle at top right, rgba(0, 42, 139, 0.15), transparent 60%);
    color: white;
}

.villas-section-title {
    font-family: var(--font-headings);
    font-size: clamp(2rem, 3.8vw, 2.75rem);
    font-weight: 700;
    color: white;
    margin-bottom: 2.5rem;
    letter-spacing: -0.5px;
}

.villas-intro-box {
    background: white;
    color: var(--color-text-dark);
    max-width: 900px;
    margin: 0 auto 4.5rem auto;
    padding: 2.25rem 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.villas-intro-box p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

.villas-intro-box a {
    color: var(--color-primary);
    font-weight: 700;
    text-decoration: underline;
}

.villas-intro-box a:hover {
    color: var(--color-accent);
}

/* Grid layout for 4 cards */
.villas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto 4.5rem auto;
}

/* Individual Villa Card */
.villa-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.villa-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 42, 139, 0.25);
}

.villa-img-container {
    width: 100%;
    height: 170px;
    overflow: hidden;
}

.villa-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.villa-card:hover .villa-img-container img {
    transform: scale(1.08);
}

.villa-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.villa-content h3 {
    font-family: var(--font-headings);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1.25rem;
    letter-spacing: -0.2px;
    text-align: left;
}

.villa-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    flex-grow: 1;
}

.villa-features li {
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--color-text-muted);
    position: relative;
    padding-left: 1.5rem;
    text-align: left;
}

.check-icon {
    color: #22c55e; /* Green checkmark */
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.btn-villa-know-more {
    display: block;
    background-color: #fc2e20; /* Vibrant red button */
    color: white !important;
    text-align: center;
    padding: 0.85rem 1rem;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.2s, transform 0.2s;
    margin-top: auto;
}

.btn-villa-know-more:hover {
    background-color: #e0241b;
}

/* Browse Villas Button */
.btn-browse-villas {
    display: inline-block;
    background-color: var(--color-primary);
    color: white !important;
    padding: 1rem 2.5rem;
    font-weight: 700;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-browse-villas:hover {
    background-color: var(--color-accent);
    transform: translateY(-2px);
}

.villas-footer {
    margin-top: 2rem;
}

/* Responsive Overrides */
@media (max-width: 1200px) {
    .villas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 650px) {
    .villas-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .villas-intro-box {
        padding: 1.5rem 1.75rem;
    }
}



/* Bachelor Party CTA Section */
.bachelor-cta-section {
    position: relative;
    padding: 6rem 2rem;
    background: linear-gradient(90deg, #61d9eb 35%, rgba(97, 217, 235, 0.85) 55%, rgba(97, 217, 235, 0) 80%),
                url('../images/bachelor-party-cta.webp') no-repeat right center;
    background-size: cover;
    display: flex;
    align-items: center;
    min-height: 480px;
}

.bachelor-cta-grid {
    display: grid;
    grid-template-columns: 1.25fr 1.2fr;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.bachelor-cta-card {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    color: #1e293b;
    max-width: 720px;
}

.bachelor-cta-title {
    font-family: var(--font-headings);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1.25rem;
    letter-spacing: -0.3px;
    text-align: left;
}

.bachelor-cta-intro {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #0f172a;
    font-weight: 500;
    text-align: left;
}

.bachelor-cta-subtitle {
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--color-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    text-align: left;
}

.bachelor-cta-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.bachelor-cta-list li {
    font-size: 0.95rem;
    line-height: 1.5;
    position: relative;
    padding-left: 1.25rem;
    color: #0f172a;
    font-weight: 500;
    text-align: left;
}

.bachelor-cta-list li::before {
    content: "◦";
    position: absolute;
    left: 0;
    top: -2px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-primary);
}

/* Responsive Overrides */
@media (max-width: 992px) {
    .bachelor-cta-section {
        background: #61d9eb; /* Fallback to solid cyan on tablet/mobile */
        padding: 4rem 2rem;
    }

    .bachelor-cta-grid {
        grid-template-columns: 1fr;
    }

    .bachelor-cta-card {
        padding: 2rem;
        max-width: 100%;
    }

    .bachelor-cta-spacer {
        display: none;
    }
}



/* Video Gallery Section */
.video-gallery-section {
    padding: 6rem 2rem;
    background-color: #f8fafc;
    border-bottom: 1px solid var(--color-border);
}

.video-gallery-title {
    font-family: var(--font-headings);
    font-size: clamp(2rem, 3.8vw, 2.75rem);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 4.5rem;
    letter-spacing: -0.5px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.video-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--color-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 42, 139, 0.1);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Video Gallery Responsive overrides */
@media (max-width: 992px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 650px) {
    .video-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}



/* FAQs Section */
.faq-section {
    padding: 6rem 2rem;
    background-color: white;
    border-bottom: 1px solid var(--color-border);
}

.faq-header {
    margin-bottom: 4.5rem;
}

.faq-tag {
    font-family: var(--font-headings);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-accent); /* Red color matching tag */
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.faq-section-title {
    font-family: var(--font-headings);
    font-size: clamp(2rem, 3.8vw, 2.75rem);
    font-weight: 700;
    color: var(--color-primary);
    margin-top: 0.5rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    background: white;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid var(--color-border);
    transition: var(--transition-smooth);
}

.faq-question {
    width: 100%;
    background-color: var(--color-secondary); /* Black/dark question bar */
    color: white;
    padding: 1.5rem 2rem;
    border: none;
    outline: none;
    font-family: var(--font-headings);
    font-size: 1.15rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    transition: background-color 0.2s;
}

.faq-question:hover {
    background-color: var(--color-primary);
}

.faq-chevron {
    color: var(--color-accent); /* Red chevron */
    font-size: 0.85rem;
    transition: transform 0.3s;
}

/* Accordion slide-down answer panels */
.faq-answer-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer {
    padding: 2rem;
    border-top: 1px solid var(--color-border);
    background-color: white;
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.65;
    text-align: left;
}

.faq-answer p {
    margin: 0;
}

/* Active states */
.faq-item.active {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: var(--color-primary);
}

.faq-item.active .faq-question {
    background-color: var(--color-primary);
}



/* Pool CTA Section */
.pool-cta-section {
    position: relative;
    padding: 7rem 2rem;
    background: linear-gradient(rgba(17, 19, 25, 0.45), rgba(17, 19, 25, 0.45)),
                url('../images/cta-pool.webp') no-repeat center center;
    background-size: cover;
    color: white;
}

.pool-cta-title {
    font-family: var(--font-headings);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: white;
    margin-bottom: 2.5rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.pool-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-pool-call {
    display: inline-flex;
    align-items: center;
    background-color: var(--color-primary); /* Blue */
    color: white !important;
    padding: 1rem 2.5rem;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 4px;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-pool-call:hover {
    background-color: var(--color-accent);
    transform: translateY(-2px);
}

.btn-pool-whatsapp {
    display: inline-flex;
    align-items: center;
    background-color: #25d366; /* WhatsApp Green */
    color: white !important;
    padding: 1rem 2.5rem;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 4px;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-pool-whatsapp:hover {
    background-color: #1ebd59;
    transform: translateY(-2px);
}



/* Group Trips Gallery Section */
.gallery-section {
    padding: 6rem 2rem;
    background-color: var(--color-bg-light);
    border-bottom: 1px solid var(--color-border);
}

.gallery-section-title {
    font-family: var(--font-headings);
    font-size: clamp(2rem, 3.8vw, 2.75rem);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 4rem;
    letter-spacing: -0.5px;
}

.gallery-grid-6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto 3.5rem auto;
}

.gallery-item {
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--color-border);
    position: relative;
    padding-bottom: 70%; /* 10:7 aspect ratio */
    height: 0;
}

.gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.btn-view-gallery {
    display: inline-block;
    background-color: var(--color-primary);
    color: white !important;
    padding: 1rem 2.5rem;
    font-weight: 700;
    border-radius: 4px;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-view-gallery:hover {
    background-color: var(--color-accent);
    transform: translateY(-2px);
}

/* Gallery responsive overrides */
@media (max-width: 992px) {
    .gallery-grid-6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .gallery-grid-6 {
        grid-template-columns: 1fr;
    }
}



/* Blog Section */
.blog-section {
    padding: 6rem 2rem;
    background-color: white;
    border-bottom: 1px solid var(--color-border);
}

.blog-tag {
    font-family: var(--font-headings);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-accent); /* Blue text tag */
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.blog-section-title {
    font-family: var(--font-headings);
    font-size: clamp(2rem, 3.8vw, 2.75rem);
    font-weight: 700;
    color: var(--color-primary);
    margin-top: 0.5rem;
    margin-bottom: 4.5rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto 3rem auto;
}

.blog-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-img-container {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.blog-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img-container img {
    transform: scale(1.05);
}

.blog-content {
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-muted);
    margin-bottom: 0.85rem;
}

.blog-category {
    color: var(--color-text-dark);
    border-bottom: 2px solid var(--color-accent);
    padding-bottom: 2px;
}

.blog-content h3 {
    font-family: var(--font-headings);
    font-size: 1.25rem;
    line-height: 1.4;
    font-weight: 700;
    margin: 0;
    text-align: left;
}

.blog-content h3 a {
    color: var(--color-text-dark);
    text-decoration: none;
    transition: color 0.2s;
}

.blog-content h3 a:hover {
    color: var(--color-accent);
}

.blog-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.blog-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #cbd5e1;
    cursor: pointer;
}

.blog-dot.active {
    background-color: #22c55e; /* Green active dot */
}







/* Blog responsive overrides */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

