/*==================================================
  THE SAFARI SURF SHACK
  Modern Tourism Website
===================================================*/

/*==============================
  GOOGLE FONTS
===============================*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800&family=Nunito:wght@400;500;600;700;800&family=Poppins:wght@400;500;600;700&display=swap');

/*==============================
  CSS VARIABLES
===============================*/
:root {
    /* Primary Colors */
    --primary: #0F766E;
    --primary-dark: #0A4E49;
    --secondary: #F59E0B;
    --accent: #14B8A6;

    /* Neutral Colors */
    --white: #ffffff;
    --black: #111827;
    --text: #374151;
    --text-light: #6B7280;
    --light: #F9FAFB;
    --border: #E5E7EB;
    --success: #16A34A;

    /* Shadows */
    --shadow-sm: 0 5px 15px rgba(0,0,0,.08);
    --shadow-md: 0 10px 25px rgba(0,0,0,.12);
    --shadow-lg: 0 20px 45px rgba(0,0,0,.18);

    /* Radius */
    --radius: 12px;
    --radius-lg: 20px;

    /* Transition */
    --transition: .35s ease;

    /* Max Width */
    --container: 1200px;
}

/*==============================
  RESET
===============================*/
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    display: block;
    width: 100%;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button,
input,
textarea,
select {
    font-family: inherit;
    outline: none;
}

section {
    padding: 100px 0;
}

.container {
    width: min(92%, var(--container));
    margin: auto;
}

/*==============================
  TYPOGRAPHY
===============================*/
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px;
}

.section-subtitle {
    display: inline-block;
    color: var(--secondary);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--black);
    margin-bottom: 20px;
}

.section-description {
    color: var(--text-light);
    font-size: 1.08rem;
}

/*==============================
  BUTTONS
===============================*/
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 34px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/*==============================
  COMMON GRID
===============================*/
.grid,
.services-grid,
.safari-grid,
.surf-grid,
.destinations-grid,
.gallery-grid,
.testimonials-grid {
    display: grid;
    gap: 30px;
}

/*==============================
  SCROLLBAR
===============================*/
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f3f4f6;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 50px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/*==============================
  SKIP LINK
===============================*/
.skip-link {
    position: absolute;
    top: -50px;
    left: 20px;
    background: var(--primary);
    color: #fff;
    padding: 12px 18px;
    border-radius: 8px;
    z-index: 9999;
}

.skip-link:focus {
    top: 20px;
}

/*==============================
  SCROLL PROGRESS BAR
===============================*/
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    width: 0;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    z-index: 99999;
}

/*==================================================
  HEADER & NAVIGATION
===================================================*/
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: all .35s ease;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.navbar {
    width: min(92%, 1200px);
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 85px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    font-weight: 700;
}

.site-header.scrolled .brand {
    color: var(--black);
}

.brand-logo {
    width: 55px;
    height: 55px;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-text strong {
    font-size: 1.1rem;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
}

.brand-text small {
    font-size: .82rem;
    letter-spacing: 2px;
    opacity: .85;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link {
    position: relative;
    color: #fff;
    font-weight: 600;
    transition: .3s;
}

.site-header.scrolled .nav-link {
    color: var(--black);
}

.nav-link:hover {
    color: var(--secondary);
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 3px;
    background: var(--secondary);
    transition: .35s;
    border-radius: 50px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-whatsapp {
    background: var(--secondary);
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    transition: .35s;
}

.nav-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0,0,0,.15);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    margin: 6px auto;
    background: #fff;
    transition: .35s;
}

.site-header.scrolled .menu-toggle span {
    background: var(--black);
}

/* Responsive Navigation Menu */
@media(max-width: 992px) {
    .menu-toggle {
        display: block;
        z-index: 1002;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: #fff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 25px;
        transition: .4s;
        box-shadow: -10px 0 30px rgba(0,0,0,.1);
        z-index: 1001;
    }
    .nav-menu.active {
        right: 0;
    }
    .nav-link {
        color: var(--black);
        font-size: 1.1rem;
    }
    .nav-whatsapp {
        margin-top: 15px;
    }
}

@media(max-width: 576px) {
    .navbar { min-height: 75px; }
    .brand-logo { width: 45px; height: 45px; }
    .brand-text strong { font-size: 1rem; }
    .brand-text small { font-size: .75rem; }
    .nav-menu { width: 100%; }
}

/*==================================================
  HERO SECTION
===================================================*/
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url("images/hero.jpg") center center/cover no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,.70), rgba(15,118,110,.55));
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 60px;
    align-items: center;
}

.hero-content { color: #fff; }

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.2);
    padding: 10px 18px;
    border-radius: 50px;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    line-height: 1.15;
    margin-bottom: 25px;
}

.hero h1 span { color: var(--secondary); }

.hero-description {
    font-size: 1.15rem;
    max-width: 650px;
    margin-bottom: 40px;
    color: #f3f4f6;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 60px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-box {
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 18px;
    padding: 25px;
    text-align: center;
}

.stat-box h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 8px;
}

.stat-box p { color: #fff; }

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 550px;
    border-radius: 30px;
    box-shadow: 0 25px 60px rgba(0,0,0,.35);
    animation: floatImage 5s ease-in-out infinite;
}

.scroll-down {
    position: absolute;
    left: 50%;
    bottom: 35px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.scroll-down span {
    width: 12px;
    height: 12px;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
    transform: rotate(45deg);
    animation: scrollArrow 1.8s infinite;
}

.scroll-down span:nth-child(2) { animation-delay: .2s; }
.scroll-down span:nth-child(3) { animation-delay: .4s; }

@keyframes floatImage {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes scrollArrow {
    0% { opacity: 0; transform: rotate(45deg) translate(-5px,-5px); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: rotate(45deg) translate(5px,5px); }
}

@media(max-width: 992px) {
    .hero { text-align: center; padding-top: 120px; }
    .hero-container { grid-template-columns: 1fr; }
    .hero-description { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .hero-image { order: -1; }
    .hero-image img { max-width: 420px; }
}

@media(max-width: 768px) {
    .hero { min-height: auto; padding: 140px 0 80px; }
    .hero-stats { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.7rem; }
}

@media(max-width: 576px) {
    .hero h1 { font-size: 2.2rem; }
    .hero-description { font-size: 1rem; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; }
}

/*==================================================
  ABOUT SECTION
===================================================*/
.about { background: var(--light); }

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-image { position: relative; }
.about-image img {
    width: 100%;
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}
.about-image img:hover { transform: scale(1.03); }

.about-image::before {
    content: ""; position: absolute; width: 180px; height: 180px;
    background: var(--secondary); opacity: .12; border-radius: 50%;
    top: -40px; left: -40px; z-index: -1;
}

.about-image::after {
    content: ""; position: absolute; width: 140px; height: 140px;
    background: var(--primary); opacity: .10; border-radius: 50%;
    bottom: -30px; right: -30px; z-index: -1;
}

.about-text h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: var(--black);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.8;
}

.about-features {
    margin: 40px 0;
    display: grid;
    gap: 22px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #fff;
    padding: 22px;
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    font-size: 1.5rem;
    border-radius: 50%;
}

.feature-item h4 {
    margin-bottom: 8px;
    color: var(--black);
    font-size: 1.1rem;
}

.feature-item p {
    margin: 0;
    color: var(--text-light);
    font-size: .96rem;
}

.about-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 35px;
}

@media(max-width: 992px) {
    .about-content { grid-template-columns: 1fr; }
    .about-image { order: -1; }
    .about-text { text-align: center; }
    .about-buttons { justify-content: center; }
}

@media(max-width: 768px) {
    .about { padding: 80px 0; }
    .about-text h3 { font-size: 1.8rem; }
    .feature-item { text-align: left; }
}

@media(max-width: 576px) {
    .feature-item { flex-direction: column; align-items: center; text-align: center; }
    .feature-icon { margin-bottom: 10px; }
    .about-buttons { flex-direction: column; }
    .about-buttons .btn { width: 100%; }
}

/*==================================================
  SERVICES SECTION
===================================================*/
.services { background: #ffffff; }

.services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-bottom: 70px;
}

.service-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all .4s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform .5s ease;
}

.service-card:hover img { transform: scale(1.08); }

.service-content {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--black);
    margin-bottom: 15px;
    font-size: 1.35rem;
}

.service-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
    flex: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-weight: 700;
    transition: .3s;
}

.service-link:hover {
    color: var(--secondary);
    transform: translateX(8px);
}

.services-cta {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    text-align: center;
    padding: 70px 40px;
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
}

.services-cta h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    margin-bottom: 20px;
}

.services-cta p {
    max-width: 700px;
    margin: 0 auto 35px;
    opacity: .95;
    font-size: 1.05rem;
}

.services-cta .btn {
    background: white;
    color: var(--primary);
}

.services-cta .btn:hover {
    background: var(--secondary);
    color: #fff;
}

@media(max-width: 1100px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media(max-width: 768px) {
    .services { padding: 80px 0; }
    .services-grid { grid-template-columns: 1fr; gap: 30px; }
    .service-card img { height: 220px; }
    .services-cta { padding: 50px 25px; }
    .services-cta h3 { font-size: 1.7rem; }
}

@media(max-width: 576px) {
    .service-content { padding: 22px; }
    .service-content h3 { font-size: 1.25rem; }
    .services-cta .btn { width: 100%; }
}

/*==================================================
  SAFARI TOURS
===================================================*/
.safari { background: var(--light); }

.safari-banner { margin-bottom: 60px; }
.safari-banner img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
}

.safari-grid {
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 60px;
}

.safari-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.safari-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.safari-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: .4s;
}

.safari-card:hover img { transform: scale(1.08); }

.safari-content { padding: 25px; }

.safari-content h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--black);
    margin-bottom: 15px;
}

.safari-content p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Experience Box Setup */
.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 60px 0;
}

.experience-box {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-top: 5px solid var(--secondary);
}

.experience-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.experience-box h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--black);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.experience-box p { color: var(--text-light); }

.tour-includes {
    background: #fff;
    padding: 45px;
    border-radius: 22px;
    margin-bottom: 60px;
    box-shadow: var(--shadow-sm);
}

.tour-includes h3 {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 30px;
    color: var(--black);
}

.tour-includes ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.tour-includes li {
    background: var(--light);
    padding: 18px 22px;
    border-radius: 12px;
    font-weight: 600;
}

.cta-box {
    text-align: center;
    padding: 70px 40px;
    border-radius: 25px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    box-shadow: var(--shadow-lg);
}

.cta-box h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta-box p {
    max-width: 700px;
    margin: 0 auto 35px;
    opacity: .95;
}

.cta-box .btn {
    background: #fff;
    color: var(--primary);
}

.cta-box .btn:hover {
    background: var(--secondary);
    color: #fff;
}

@media(max-width: 992px) {
    .safari-grid, .experience-grid { grid-template-columns: repeat(2, 1fr); }
}

@media(max-width: 768px) {
    .safari { padding: 80px 0; }
    .safari-banner img { height: 320px; }
    .safari-grid, .experience-grid { grid-template-columns: 1fr; }
    .tour-includes { padding: 30px; }
    .tour-includes ul { grid-template-columns: 1fr; }
    .cta-box { padding: 50px 25px; }
    .cta-box h3 { font-size: 1.7rem; }
}

@media(max-width: 576px) {
    .safari-content { padding: 20px; }
    .cta-box .btn { width: 100%; }
}

/*==================================================
  SURF LESSONS
===================================================*/
.surf { background: #ffffff; }

.surf-banner { margin-bottom: 60px; }
.surf-banner img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
}

.surf-grid {
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 60px;
}

.surf-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.surf-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.surf-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: .4s;
}

.surf-card:hover img { transform: scale(1.08); }

.surf-content { padding: 25px; }

.surf-content h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--black);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.surf-content p {
    color: var(--text-light);
    line-height: 1.8;
}

.surf-spots { margin: 70px 0; }

.surf-spots h3 {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    color: var(--black);
    font-size: 2rem;
    margin-bottom: 40px;
}

.spots-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.spot-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    border-top: 5px solid var(--accent);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.spot-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.spot-card h4 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary);
    margin-bottom: 15px;
}

.spot-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.surf .experience-box { border-top: 5px solid var(--primary); }

.surf .cta-box {
    background: linear-gradient(135deg, #0284C7, #0EA5E9);
}

.surf .cta-box .btn {
    background: #fff;
    color: #0284C7;
}

.surf .cta-box .btn:hover {
    background: var(--secondary);
    color: #fff;
}

@media(max-width: 1100px) {
    .spots-grid { grid-template-columns: repeat(2, 1fr); }
}

@media(max-width: 992px) {
    .surf-grid { grid-template-columns: repeat(2, 1fr); }
}

@media(max-width: 768px) {
    .surf { padding: 80px 0; }
    .surf-banner img { height: 320px; }
    .surf-grid, .spots-grid { grid-template-columns: 1fr; }
    .surf-spots h3 { font-size: 1.8rem; }
}

@media(max-width: 576px) {
    .surf-content { padding: 20px; }
    .spot-card { padding: 25px; }
}

/*==================================================
  DESTINATIONS
===================================================*/
.destinations { background: var(--light); }

.destinations-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-bottom: 70px;
}

.destination-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.destination-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform .5s ease;
}

.destination-card:hover img { transform: scale(1.08); }

.destination-content { padding: 28px; }

.destination-content h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--black);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.destination-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.destination-features {
    display: grid;
    gap: 12px;
    margin-bottom: 25px;
}

.destination-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    font-weight: 500;
}

.destination-features i {
    color: var(--primary);
    width: 18px;
}

.destination-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.highlight-box {
    background: #fff;
    padding: 30px;
    text-align: center;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.highlight-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.highlight-box h4 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 12px;
    color: var(--black);
}

.highlight-box p {
    color: var(--text-light);
    font-size: .95rem;
}

@media(max-width: 1100px) {
    .destination-highlights { grid-template-columns: repeat(2, 1fr); }
}

@media(max-width: 992px) {
    .destinations-grid { grid-template-columns: repeat(2, 1fr); }
}

@media(max-width: 768px) {
    .destinations { padding: 80px 0; }
    .destinations-grid, .destination-highlights { grid-template-columns: 1fr; }
}

@media(max-width: 576px) {
    .destination-content { padding: 22px; }
    .destination-card img { height: 220px; }
}

/*==================================================
  GALLERY
===================================================*/
.gallery { background: #ffffff; }

.gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Filter controls configuration style */
.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 22px;
    border: 2px solid var(--border);
    border-radius: 50px;
    background: transparent;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.gallery-item:hover img { transform: scale(1.12); }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.80), rgba(0,0,0,.15));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 25px;
    opacity: 0;
    transition: .35s ease;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay h3 {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 8px;
    font-size: 1.3rem;
}

.gallery-overlay p {
    color: #f8fafc;
    font-size: .95rem;
    line-height: 1.6;
}

.gallery-cta {
    margin-top: 60px;
    text-align: center;
}

@media(max-width: 1100px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media(max-width: 768px) {
    .gallery { padding: 80px 0; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item img { height: 220px; }
}

@media(max-width: 576px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item img { height: 250px; }
    .gallery-overlay { padding: 20px; }
    .gallery-overlay h3 { font-size: 1.1rem; }
}

/*==================================================
  TESTIMONIALS
===================================================*/
.testimonials { background: var(--light); }

.testimonials-grid { grid-template-columns: repeat(3, 1fr); }

.testimonial-card {
    background: #fff;
    padding: 35px;
    border-radius: 22px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.stars {
    color: #FBBF24;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.testimonial-text {
    color: var(--text-light);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 { margin-bottom: 5px; }

.testimonial-author span {
    font-size: .9rem;
    color: var(--text-light);
}

/* Review Status Blocks Wrapper */
.review-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
    text-align: center;
}

.review-stat {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.review-stat h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary);
    font-size: 1.8rem;
}

.review-stat p {
    color: var(--text-light);
    font-size: .9rem;
}

.review-cta {
    margin-top: 60px;
    padding: 40px;
    text-align: center;
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.05), rgba(236, 100, 44, 0.05));
    border-radius: 15px;
    margin-bottom: 70px;
}

.review-cta h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    color: var(--black);
    margin-bottom: 15px;
}

.review-cta p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.trust-section {
    margin-top: 70px;
    text-align: center;
}

.trust-section h3 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 40px;
    font-size: 2rem;
    color: var(--black);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.trust-item {
    background: #fff;
    padding: 25px;
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
}

.trust-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.trust-item h4 {
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.trust-item p {
    color: var(--text-light);
    font-size: .9rem;
}

@media(max-width: 992px) {
    .testimonials-grid, .review-stats, .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

@media(max-width: 768px) {
    .testimonials { padding: 80px 0; }
    .review-stats, .trust-grid, .testimonials-grid { grid-template-columns: 1fr; }
}

/*==================================================
  FAQ
===================================================*/
.faq { background: #fff; }

.faq-container {
    max-width: 900px;
    margin: auto;
}

.faq-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover { box-shadow: var(--shadow-md); }

.faq-question {
    width: 100%;
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--black);
}

.faq-icon { transition: .3s; }

.faq-item.active .faq-icon { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
}

.faq-answer p {
    padding: 0 28px 25px;
    color: var(--text-light);
    line-height: 1.8;
}

.faq-contact {
    margin-top: 50px;
    text-align: center;
}

/*==================================================
  CONTACT & MAP (PREMIUM TWO-COLUMN GRID SYSTEM)
===================================================*/
#contact {
    background-color: var(--light);
    padding: 100px 0;
}

/* Master Grid Layout Strategy */
#contact .container {
    display: grid !important;
    grid-template-columns: 1fr 1.2fr !important;
    gap: 40px 60px !important;
    max-width: var(--container);
    margin: 0 auto;
    align-items: center; /* Vertically balances the left text callout with the form */
}

/* Header Text Column Styles */
.contact .section-header {
    grid-column: 1 !important;
    text-align: left !important;
    margin: 0 !important;
    max-width: 100%;
}

.contact .section-subtitle {
    display: block;
    margin-bottom: 15px;
}

.contact .section-title {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
}

/* Form Container Column Styles */
.contact-wrapper {
    grid-column: 2 !important;
    width: 100%;
}

.contact-form {
    background: var(--white);
    padding: 45px !important;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 5px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-group label {
    font-weight: 600;
    color: var(--black);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 20px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--light);
    color: var(--black);
    font-size: .95rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: #fff;
}

/* Google Map Row Layout Styles */
.map-section {
    grid-column: span 2 !important;
    width: 100% !important;
    margin-top: 30px;
}

.map-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    color: var(--black);
    margin-bottom: 25px;
}

.map-section iframe {
    width: 100% !important;
    height: 420px !important;
    border: none !important;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

/* ==========================================
   REVIEW MODAL FORM
========================================== */
.review-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.review-modal.active {
    display: flex;
}

.review-modal-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: slideUp 0.3s ease;
}

.review-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0;
    width: 40px;
    height: 40px;
}

.review-modal-close:hover {
    color: var(--primary);
}

.review-modal-header {
    margin-bottom: 30px;
    text-align: center;
}

.review-modal-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    color: var(--black);
    margin-bottom: 10px;
}

.review-modal-header p {
    color: var(--text-light);
    font-size: 1rem;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Nunito', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
}

.star-rating input {
    display: none;
}

.star-rating label {
    font-size: 2rem;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s ease;
    margin: 0;
    padding: 0;
}

.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
    color: var(--secondary);
}

.form-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
}

.form-actions .btn {
    padding: 12px 20px;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary {
    background: #f0f0f0;
    color: var(--black);
}

.btn-secondary:hover {
    background: #e0e0e0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Overrides */
@media(max-width: 992px) {
    #contact .container {
        grid-template-columns: 1fr !important;
        gap: 50px !important;
    }
    .contact .section-header, 
    .contact-wrapper,
    .map-section {
        grid-column: 1 !important;
    }
    .contact .section-header {
        text-align: center !important;
    }
}

@media(max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr !important;
    }
    .contact-form {
        padding: 30px 20px !important;
    }
    .map-section iframe {
        height: 320px !important;
    }
}

/*==================================================
  FOOTER
===================================================*/
.footer {
    background: #111827;
    color: #d1d5db;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    max-width: 140px;
    height: auto;
    margin-bottom: 15px;
    opacity: 0.95;
    transition: transform var(--transition), opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

.footer h3,
.footer h4 {
    color: #fff;
    margin-bottom: 20px;
}

.footer p { line-height: 1.8; }

.footer ul li { margin-bottom: 12px; }

.footer ul li a {
    color: #d1d5db;
    transition: .3s;
}

.footer ul li a:hover {
    color: var(--secondary);
    padding-left: 6px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #1f2937;
    color: #fff;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

/* =======================================================
   FOOTER PAYMENT METHODS STYLES
======================================================== */
.footer-payments {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-title {
    font-size: 0.88rem;
    color: #9ca3af;
    margin-bottom: 8px;
    font-weight: 600;
}

.payment-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.payment-icons i {
    font-size: 1.8rem;
    color: #e5e7eb;
    transition: transform var(--transition), color var(--transition);
}

.payment-icons i.fa-cc-visa:hover {
    color: #2557d6; /* Visa Blue */
    transform: translateY(-2px);
}

.payment-icons i.fa-cc-mastercard:hover {
    color: #ff5f00; /* Mastercard Orange */
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    font-size: .95rem;
}

@media(max-width: 992px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media(max-width: 576px) {
    .footer-grid { grid-template-columns: 1fr; }
}

/*==================================================
  FLOATING WHATSAPP BUTTON
===================================================*/
.floating-whatsapp {
    position: fixed;
    left: 25px;
    bottom: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition);
}

.floating-whatsapp:hover {
    transform: scale(1.08) translateY(-5px);
    background: #20ba5a;
}

/*==================================================
  BACK TO TOP BUTTON
===================================================*/
.back-to-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 55px;
    height: 55px;
    border: none;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all .3s ease;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--secondary);
    transform: translateY(-5px);
}

/*==================================================
  PAGE LOADER
===================================================*/
.page-loader {
    position: fixed;
    inset: 0;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity .5s ease, visibility .5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-spinner {
    width: 70px;
    height: 70px;
    border: 6px solid #e5e7eb;
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: rotate360 1s linear infinite;
}

@keyframes rotate360 {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/*==================================================
  UTILITY & LIGHTBOX CONFIG
===================================================*/
.text-center { text-align: center; }
.hidden { display: none !important; }

button:focus,
a:focus,
input:focus,
textarea:focus {
    outline: 3px solid rgba(13,148,136,.25);
    outline-offset: 3px;
}

/* Lightbox overlay engine hook hidden state */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.lightbox.show {
    display: flex;
}

.lightbox-image {
    max-width: 85%;
    max-height: 85%;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--white);
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--secondary);
}

/*==================================================
  MOBILE RESPONSIVE - REVIEW MODAL
===================================================*/
@media(max-width: 768px) {
    .review-modal-content {
        padding: 30px 20px;
        width: 95%;
    }

    .review-modal-header h2 {
        font-size: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .form-actions {
        grid-template-columns: 1fr;
    }

    .star-rating {
        justify-content: center;
    }

    .review-modal-close {
        font-size: 1.5rem;
        right: 15px;
        top: 10px;
    }
}