:root {
    --primary-color: #8A9A5B;
    /* Sage green / olive */
    --primary-dark: #6B7B47;
    --accent-color: #D4AF37;
    /* Soft gold */
    --text-dark: #2C3E50;
    --text-light: #6a7c8e;
    --bg-light: #F9F9F6;
    --white: #FFFFFF;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
.logo,
.footer-logo {
    font-family: 'Playfair Display', serif;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 1rem 5%;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin-left: auto;
    /* Push navigation links away from the logo to the right */
    padding-right: 2rem;
    /* Add some space before the translate button or edge */
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1.05rem;
    font-family: 'Outfit', sans-serif;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-dark);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    padding: 0 5%;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    max-width: 650px;
    padding-right: 3rem;
    animation: fadeUp 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    opacity: 0;
    transform: translateY(40px);
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.15;
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-weight: 700;
}

.hero h1 span {
    color: var(--primary-color);
    font-style: italic;
    font-weight: 700;
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 1.2rem 3rem;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.15rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(138, 154, 91, 0.25);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(138, 154, 91, 0.35);
}

.hero-image {
    flex: 1;
    height: 100vh;
    position: absolute;
    right: 0;
    top: 0;
    width: 48%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 150px 0 0 150px;
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.1);
    animation: revealRight 1.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

/* Pourquoi Choisir Section */
.why-choose-us,
.packs-section {
    padding: 8rem 5%;
    background-color: var(--white);
    position: relative;
}

.packs-section {
    background-color: var(--bg-light);
    padding-top: 5rem;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 6rem;
    opacity: 0;
    transform: translateY(30px);
}

.section-title.visible {
    animation: fadeUp 1s ease-out forwards;
}

.section-title h2 {
    font-size: 3.2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.divider {
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
    margin: 0 auto 2rem auto;
    border-radius: 4px;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-bottom: 5rem;
}

.feature-card {
    background: var(--bg-light);
    padding: 3.5rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
    cursor: pointer;
    opacity: 0;
    transform: translateY(40px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.feature-card.visible {
    animation: fadeUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.feature-card:hover {
    transform: translateY(-12px);
    background: var(--white);
    border-color: rgba(138, 154, 91, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.icon-wrapper {
    width: 90px;
    height: 90px;
    margin: 0 auto 2rem auto;
    background-color: rgba(138, 154, 91, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.feature-card:hover .icon-wrapper {
    background-color: var(--primary-color);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
}

.bottom-slogan {
    text-align: center;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, rgba(138, 154, 91, 0.06) 0%, rgba(212, 175, 55, 0.08) 100%);
    border-radius: 24px;
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    border-left: 6px solid var(--accent-color);
    opacity: 0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
    max-width: 900px;
    margin: 0 auto;
}

.bottom-slogan.visible {
    animation: fadeUp 1s ease-out forwards;
}

.bottom-slogan strong {
    color: var(--primary-color);
    font-weight: 700;
}

.packs-container {
    padding: 2rem;
    text-align: center;
    font-style: italic;
    color: var(--text-light);
    font-size: 1.2rem;
}

/* Footer */
footer {
    background-color: var(--text-dark);
    color: var(--white);
    text-align: center;
    padding: 3rem 5%;
}

.footer-logo {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

footer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* =========================================
   Destinations Section (Home Page)
   ========================================= */
.destinations-section {
    background-color: var(--bg-light);
    padding-top: 5rem;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.destination-card {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
    background-size: cover;
    background-position: center;
}

.destinations-grid:hover>.destination-card.visible {
    opacity: 0.7;
}

.destination-card.visible {
    animation: fadeUp 0.8s ease-out forwards;
}

.destination-card.visible:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    opacity: 1;
}

/* Image backgrounds for destination cards */
.marrakech-card {
    background-image: url('photos/caption.jpg');
}

.casablanca-card {
    background-image: url('photos/gettyimages-2152143162-sergioformoso.jpg');
    /* Using a modern city vibe as placeholder */
}

.demenat-card {
    background-image: url('photos/J4x-EoM9V4dnedTr0DYA_6K8ld0.jpg');
    /* Nature vibe placeholder */
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 100%);
    transition: var(--transition);
}

.destination-card:hover .card-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
}

.card-content {
    position: relative;
    z-index: 2;
    padding: 2.5rem;
    width: 100%;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.destination-card:hover .card-content {
    transform: translateY(0);
}

.card-content h3 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.card-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.btn-discover {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.05rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.destination-card:hover .btn-discover {
    opacity: 1;
    transform: translateY(0);
}

.btn-discover i {
    transition: transform 0.3s ease;
}

.destination-card:hover .btn-discover i {
    transform: translateX(5px);
}

/* =========================================
   City Pages Specific Styles
   ========================================= */

/* Adjusted Navbar for City Pages */
.navbar.default-scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 1rem 5%;
}

/* City Hero Sections */
.city-hero {
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin-top: 70px;
    /* Offset for navbar */
}

/* Specific City Backgrounds */
.marrakech-hero {
    background-image: url('photos/caption.jpg');
}

.casablanca-hero {
    background-image: url('photos/gettyimages-2152143162-sergioformoso.jpg');
}

.demenat-hero {
    background-image: url('photos/J4x-EoM9V4dnedTr0DYA_6K8ld0.jpg');
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.city-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
    animation: fadeUp 1s ease forwards;
}

.city-hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.city-hero-content h1 span {
    color: var(--accent-color);
    font-style: italic;
}

.city-hero-content p {
    font-size: 1.3rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

/* Packs Section container on City pages */
.city-packs-section {
    padding: 6rem 5%;
    background-color: var(--bg-light);
    min-height: 50vh;
}

.packs-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

/* Temporary Empty State Styling */
.empty-packs-message {
    text-align: center;
    padding: 4rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border: 2px dashed rgba(138, 154, 91, 0.3);
}

.empty-packs-message i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.empty-packs-message h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.empty-packs-message p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* =========================================
   Pack Cards (Listing on City Pages)
   ========================================= */

.pack-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    width: calc(33.333% - 1.33rem);
    min-width: 300px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.pack-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pack-img-container {
    height: 220px;
    position: relative;
    overflow: hidden;
}

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

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

.pack-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.pack-card-content h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.pack-card-content p {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.pack-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.pack-card-footer .price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.pack-card-footer .btn-text {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

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

.empty-pack-card {
    border: 2px dashed rgba(138, 154, 91, 0.3);
    background: transparent;
    box-shadow: none;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem;
    min-height: 400px;
}

.empty-pack-card i {
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.5;
    margin-bottom: 1rem;
}

/* =========================================
   Individual Pack Detail Pages
   ========================================= */

.pack-details-page {
    background-color: var(--bg-light);
}

.pack-hero {
    height: 70vh;
    min-height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
}

.pack-hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.pack-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: -1;
}

.breadcrumb {
    font-family: 'Outfit', sans-serif;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

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

.breadcrumb i {
    font-size: 0.8rem;
    margin: 0 8px;
    opacity: 0.7;
}

.pack-hero-content h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.pack-hero-content h1 span {
    font-style: italic;
    color: var(--accent-color);
}

.pack-location {
    font-family: 'Outfit', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    padding: 8px 16px;
    border-radius: 30px;
    color: var(--white);
    font-weight: 500;
}

/* Pack Content Grid */
.pack-main-content {
    padding: 5rem 5%;
}

.pack-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Left Column: Details */
.detail-section {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    margin-bottom: 2rem;
}

.detail-section h2 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 15px;
}

.detail-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.detail-section p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.detail-section ul {
    list-style: none;
}

.detail-section ul li {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    line-height: 1.6;
}

.detail-section ul li i {
    color: var(--primary-color);
    margin-top: 5px;
}

.inclus-noter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.inclus-noter-grid .detail-section {
    margin-bottom: 0;
    padding: 2.5rem;
}

.inclus-section ul li i {
    color: #4CAF50;
    /* Green check */
}

.noter-section ul li i {
    color: var(--accent-color);
    /* Yellow info */
}

/* Right Column: Booking Sidebar */
.pack-sidebar {
    position: sticky;
    top: 100px;
}

.booking-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    /* Stronger shadow for emphasis */
    border-top: 5px solid var(--primary-color);
}

.price-info {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.price-label {
    display: block;
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-amount {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    color: var(--primary-dark);
    font-weight: 700;
}

.sidebar-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.feature-item i {
    width: 45px;
    height: 45px;
    background: rgba(138, 154, 91, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.feature-item div {
    display: flex;
    flex-direction: column;
}

.feature-item strong {
    color: var(--text-dark);
    font-size: 1.05rem;
}

.feature-item span {
    color: var(--text-light);
    font-size: 0.95rem;
}

.w-100 {
    width: 100%;
}

.text-center {
    text-align: center;
    justify-content: center;
}

.booking-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 1rem;
    margin-bottom: 0;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes revealRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ==========================================================================
   WhatsApp Modal & Floating Button
   ========================================================================== */

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 999;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    color: white;
}

/* Booking Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-booking-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.3s;
}

.close-booking-modal:hover {
    color: var(--accent-color);
}

.modal-content h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-group textarea {
    resize: vertical;
}

.modal-content .btn-primary {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
    border: none;
    cursor: pointer;
    font-family: var(--font-secondary);
}

/* Media Queries */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 4rem;
    }
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 3.2rem;
    }

    .hero-image {
        position: relative;
        width: 100%;
        height: 60vh;
        order: -1;
        margin-top: 80px;
    }

    .hero-image img {
        border-radius: 0;
    }

    .hero {
        flex-direction: column;
        padding: 0;
        min-height: auto;
    }

    .hero-content {
        max-width: 100%;
        padding: 4rem 5% 6rem 5%;
        text-align: center;
        background-color: var(--white);
    }

    .pack-grid {
        grid-template-columns: 1fr;
    }

    .pack-sidebar {
        position: static;
        margin-top: 2rem;
    }

    .inclus-noter-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        backdrop-filter: blur(15px);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 1.5rem 0;
    }

    .nav-links a {
        font-size: 1.5rem;
    }

    .hamburger {
        display: block;
        z-index: 1001;
    }

    .section-title h2 {
        font-size: 2.5rem;
    }

    .bottom-slogan {
        font-size: 1.5rem;
        padding: 2.5rem 1.5rem;
    }

    .why-choose-us,
    .packs-section,
    .city-packs-section,
    .pack-main-content {
        padding: 5rem 5%;
    }

    .pack-card {
        width: 100%;
    }

    .pack-hero-content h1 {
        font-size: 2.5rem;
    }

    .detail-section {
        padding: 2rem;
    }

    .inclus-noter-grid .detail-section {
        padding: 1.5rem;
    }
}

/* ==========================================================================
   Google Translate Custom Styles
   ========================================================================== */

/* Prevent body from being pushed down by Google Translate banner */
body {
    top: 0px !important;
}

/* Hide the Google Translate banner/iframe completely */
.skiptranslate iframe,
.goog-te-banner-frame {
    display: none !important;
}

/* Hide Google branding */
.goog-logo-link {
    display: none !important;
}

.goog-te-gadget {
    color: transparent !important;
    font-size: 0px;
}

/* Custom Translate Button Style */
.translate-btn.global {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    margin-right: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark, #333);
    text-decoration: none;
    transition: color 0.3s;
}

.translate-btn.global:hover {
    color: var(--primary-color, #8A9A5B);
}

@media (max-width: 768px) {
    .translate-btn.global {
        margin-right: 15px;
        /* Space between translate btn and hamburger */
    }
}