/* ==================== RESET Y VARIABLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00838f;      /* Turquesa viajes */
    --primary-dark: #005662;
    --secondary-color: #2e7d32;    /* Verde naturaleza */
    --accent-color: #ff9800;       /* Naranja energía */
    --light-bg: #e0f7fa;           /* Azul claro */
    --dark-text: #004d40;          /* Verde oscuro */
    --light-text: #ffffff;
    --beige: #f5f5f5;
    --gray: #757575;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.18);
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --border-radius: 16px;
    --border-radius-lg: 24px;
    --border-radius-sm: 12px;
}

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

/* ==================== WHATSAPP FLOATING BUTTON ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    text-decoration: none;
    z-index: 1000;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ==================== CONTAINER ==================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== HEADER ==================== */
header {
    background: linear-gradient(135deg, rgba(0, 77, 64, 0.95) 0%, rgba(0, 40, 33, 0.98) 100%);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--light-text);
    text-decoration: none;
}

.logo i {
    font-size: 2.2rem;
    color: var(--accent-color);
}

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.3rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo h1 span {
    color: var(--accent-color);
    display: block;
    font-size: 1.3rem;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: -3px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

nav a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 10px 15px;
    border-radius: 50px;
    transition: var(--transition);
    position: relative;
    letter-spacing: 0.5px;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 70%;
    height: 3px;
    background: var(--accent-color);
    transition: var(--transition);
    transform-origin: center;
}

nav a:hover::after,
nav a.active::after {
    transform: translateX(-50%) scaleX(1);
}

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

/* ==================== HERO SECTION - LADO A LADO ==================== */
.hero {
    background: linear-gradient(135deg, rgba(0, 131, 143, 0.92) 0%, rgba(0, 86, 98, 0.96) 100%);
    min-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

/* Contenedor principal para el layout de dos columnas */
.hero-container {
    display: flex;
    max-width: 1400px;
    width: 100%;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    margin-top: -40px;
    margin-bottom: 50px;
}

/* Contenido de texto a la izquierda */
.hero-content {
    flex: 1;
    min-width: 450px;
    padding: 50px;
    background: rgba(0, 77, 64, 0.85);
    border-radius: 28px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.4rem;
    margin-bottom: 28px;
    text-shadow: 0 4px 25px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.8px;
    line-height: 1.15;
    color: var(--light-text);
}

.hero h1 strong {
    display: block;
    font-size: 3.7rem;
    color: var(--accent-color);
    margin-top: 15px;
    text-shadow: 0 3px 20px rgba(255, 152, 0, 0.5);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.75;
    font-weight: 300;
    color: var(--light-text);
    max-width: 650px;
}

.search-box {
    max-width: 650px;
    margin: 0 auto 45px;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 18px 30px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 55px;
    font-family: 'Raleway', sans-serif;
    font-size: 1.15rem;
    background: rgba(255, 255, 255, 0.22);
    color: var(--light-text);
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.search-box input:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.32);
    box-shadow: 0 0 0 4px rgba(255, 152, 0, 0.25), 0 6px 20px rgba(0, 0, 0, 0.2);
}

.search-box button {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--accent-color), #e65100);
    color: var(--light-text);
    border: none;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    font-size: 1.45rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.5);
}

.search-box button:hover {
    background: linear-gradient(135deg, #e65100, #d84315);
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.65);
}

.hero-stats {
    display: flex;
    justify-content: space-around;
    gap: 35px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    min-width: 130px;
}

.stat .number {
    font-family: 'Playfair Display', serif;
    font-size: 3.1rem;
    font-weight: 700;
    color: var(--accent-color);
    display: block;
    margin-bottom: 8px;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
}

.stat .label {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 600;
    letter-spacing: 0.8px;
}

/* Contenedor de imagen a la derecha */
.hero-image-container {
    flex: 1;
    min-width: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: slideInRight 0.8s ease-out 0.2s both;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image-container::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 152, 0, 0.15) 0%, rgba(0, 131, 143, 0) 70%);
    border-radius: 32px;
    z-index: -1;
    animation: pulseRing 8s infinite;
}

@keyframes pulseRing {
    0% { transform: scale(0.95); opacity: 0.7; }
    50% { transform: scale(1.05); opacity: 0.3; }
    100% { transform: scale(0.95); opacity: 0.7; }
}

.hero-image-container img {
    width: 100%;
    max-width: 650px;
    border-radius: 28px;
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.45), 
                0 0 0 12px rgba(255, 255, 255, 0.12),
                inset 0 0 40px rgba(0, 0, 0, 0.2);
    border: 12px solid rgba(255, 255, 255, 0.28);
    display: block;
    transition: all 0.5s ease;
    animation: floatImage 10s ease-in-out infinite;
}

@keyframes floatImage {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-12px) rotate(0.5deg); }
    50% { transform: translateY(0) rotate(0deg); }
    75% { transform: translateY(-8px) rotate(-0.5deg); }
}

.hero-image-container img:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 45px 80px rgba(0, 0, 0, 0.55), 
                0 0 0 12px rgba(255, 152, 0, 0.2),
                inset 0 0 40px rgba(0, 0, 0, 0.25);
}

/* ==================== SECTIONS ==================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.section-header p {
    color: var(--gray);
    font-size: 1.3rem;
    margin-top: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

/* ==================== DESTINATIONS SECTION ==================== */
.destinations-section {
    padding: 100px 0;
    background: var(--light-text);
}

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

.destination-card {
    background: var(--light-text);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.destination-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.destination-card:hover .destination-image img {
    transform: scale(1.1);
}

.destination-info {
    padding: 30px;
    text-align: center;
}

.destination-info h3 {
    font-size: 1.8rem;
    color: var(--dark-text);
    margin-bottom: 15px;
    font-weight: 700;
}

.destination-info p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 1.05rem;
}

.explore-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--light-text);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.explore-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #003d33 100%);
    transform: translateX(5px);
}

/* ==================== PACKAGES SECTION ==================== */
.packages-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #e0f7fa 0%, #b2dfdb 100%);
}

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

.package-card {
    background: var(--light-text);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(0, 131, 143, 0.1);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.package-card.featured {
    border: 2px solid var(--accent-color);
    transform: scale(1.05);
}

.package-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.package-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: var(--light-text);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 10;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.package-header {
    padding: 25px;
    text-align: center;
    background: rgba(0, 131, 143, 0.05);
    border-bottom: 1px solid rgba(0, 131, 143, 0.1);
}

.package-header h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 700;
}

.package-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

.package-image {
    height: 220px;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.package-card:hover .package-image img {
    transform: scale(1.1);
}

.package-features {
    padding: 25px;
}

.package-features ul {
    list-style: none;
    margin-bottom: 25px;
}

.package-features li {
    color: var(--dark-text);
    margin-bottom: 12px;
    font-size: 1.05rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.6;
}

.package-features li i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.package-price {
    text-align: center;
    padding: 20px;
    background: rgba(0, 131, 143, 0.05);
    border-top: 1px solid rgba(0, 131, 143, 0.1);
}

.package-price .original {
    text-decoration: line-through;
    color: var(--gray);
    font-size: 1.3rem;
    margin-right: 10px;
}

.package-price .current {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.package-price .per-person {
    display: block;
    color: var(--gray);
    font-size: 0.95rem;
    margin-top: 5px;
    font-style: italic;
}

.book-btn {
    background: linear-gradient(135deg, var(--accent-color) 0%, #e65100 100%);
    color: var(--light-text);
    border: none;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.15rem;
    cursor: pointer;
    transition: var(--transition);
    width: 60%;
    margin-top: 15px;
    display: block;
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.35);
    margin: 0 auto;
    margin-bottom: 20px;margin-top: 20px;
}

.book-btn:hover {
    background: linear-gradient(135deg, #e65100 0%, #d84315 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 152, 0, 0.5);
}

/* ==================== BOOKING SECTION ==================== */
.booking-section {
    padding: 100px 0;
    background: var(--light-text);
}

.booking-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.booking-form {
    background: var(--light-bg);
    padding: 50px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.booking-form .section-title {
    text-align: left;
    margin-bottom: 10px;
    font-size: 2.5rem;
    color: var(--primary-color);
}

.booking-form p {
    color: var(--gray);
    margin-bottom: 40px;
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: 600px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--dark-text);
    font-weight: 600;
    font-size: 1.1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(0, 131, 143, 0.2);
    border-radius: var(--border-radius-sm);
    font-family: 'Raleway', sans-serif;
    font-size: 1.05rem;
    transition: var(--transition);
    background: var(--light-text);
    color: var(--dark-text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--light-text);
    box-shadow: 0 0 0 3px rgba(0, 131, 143, 0.15);
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--light-text);
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    margin-top: 10px;
    box-shadow: 0 6px 20px rgba(0, 131, 143, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    letter-spacing: 0.5px;
    font-family: 'Raleway', sans-serif;
}

.submit-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #003d33 100%);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 131, 143, 0.55);
}

.booking-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: rgba(0, 131, 143, 0.08);
    border-radius: var(--border-radius);
    padding: 35px;
    margin-bottom: 30px;
    border: 1px solid rgba(0, 131, 143, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.info-card:hover {
    background: rgba(0, 131, 143, 0.15);
    transform: translateY(-5px);
    border-color: rgba(0, 131, 143, 0.4);
}

.info-card i {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.info-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.info-card p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* ==================== TESTIMONIALS SECTION ==================== */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #b2dfdb 0%, var(--light-bg) 100%);
}

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

.testimonial-card {
    background: var(--light-text);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(0, 131, 143, 0.1);
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 25px;
    left: 30px;
    font-family: 'Georgia', serif;
    font-size: 6rem;
    color: var(--primary-color);
    opacity: 0.1;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.rating {
    color: #ffc107;
    font-size: 1.4rem;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.testimonial-card p {
    color: var(--dark-text);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.15rem;
    position: relative;
    padding-left: 20px;
    font-weight: 300;
}

.testimonial-card p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 4px;
    height: calc(100% - 20px);
    background: var(--accent-color);
    border-radius: 2px;
}

.author {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 15px;
}

.avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    font-weight: 700;
    font-size: 1.8rem;
    flex-shrink: 0;
    border: 3px solid var(--light-text);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.name h4 {
    color: var(--dark-text);
    font-size: 1.5rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.name p {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
    font-style: normal;
}

/* ==================== CONTACT SECTION ==================== */
.contact-section {
    padding: 100px 0;
    background: var(--light-text);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.info-item i {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    font-size: 1.8rem;
    flex-shrink: 0;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.info-item div h3 {
    color: var(--dark-text);
    font-size: 1.7rem;
    margin-bottom: 10px;
}

.info-item div p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 8px;
    font-size: 1.15rem;
}

.contact-map {
    background: var(--light-bg);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    background: rgba(0, 131, 143, 0.1);
    border-radius: var(--border-radius);
    padding: 60px 20px;
    text-align: center;
    max-width: 600px;
    width: 100%;
}

.map-placeholder i {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.map-placeholder p {
    font-size: 1.4rem;
    color: var(--dark-text);
    opacity: 0.8;
}

/* ==================== FOOTER ==================== */
footer {
    background: linear-gradient(135deg, var(--dark-text) 0%, #00261f 100%);
    color: var(--light-text);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.footer-col h4 {
    font-size: 1.7rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
    color: var(--accent-color);
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.05rem;
    max-width: 350px;
}

.footer-about .logo {
    margin-bottom: 30px;
    gap: 15px;
    display: flex;
    align-items: center;
    color: var(--light-text);
    text-decoration: none;
}

.footer-about .logo i {
    font-size: 2rem;
    color: var(--accent-color);
}

.footer-about .logo h3 {
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer-about .logo h3 span {
    font-size: 1.3rem;
    font-family: 'Raleway', sans-serif;
    display: block;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: -3px;
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    font-size: 1.3rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    border-color: var(--primary-color);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 18px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.05rem;
    display: block;
    padding: 5px 0;
    position: relative;
    padding-left: 25px;
}

.footer-col ul li a::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0.7;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--accent-color);
    padding-left: 30px;
}

.footer-col ul li i {
    color: var(--accent-color);
    margin-right: 12px;
    width: 22px;
    font-size: 1.2rem;
}

.copyright {
    text-align: center;
    padding-top: 50px;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.copyright a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    position: relative;
    display: inline-block;
}

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

.copyright a:hover::after {
    width: 100%;
}

.developed-by {
    margin-top: 10px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1200px) {
    .destinations-grid,
    .packages-grid,
    .testimonials-grid,
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero h1 {
        font-size: 3.8rem;
    }
    
    .hero h1 strong {
        font-size: 3.2rem;
    }
    
    .hero p {
        font-size: 1.3rem;
    }
    
    .hero-container {
        gap: 40px;
    }
    
    .hero-content,
    .hero-image-container {
        min-width: 400px;
        padding: 40px;
    }
}

@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding: 20px;
    }
    
    .hero-content {
        min-width: 100%;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .hero-image-container {
        min-width: 100%;
        max-width: 850px;
    }
    
    .hero-image-container img {
        max-width: 95%;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    nav ul {
        gap: 15px;
    }
    
    nav a {
        font-size: 0.95rem;
        padding: 8px 12px;
    }
    
    .hero h1 {
        font-size: 3.4rem;
    }
    
    .hero h1 strong {
        font-size: 2.9rem;
    }
    
    .hero p {
        font-size: 1.25rem;
    }
    
    .booking-container {
        grid-template-columns: 1fr;
    }
    
    .destinations-grid,
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    nav a {
        padding: 6px 10px;
        font-size: 0.9rem;
    }
    
    .logo h1 {
        font-size: 2.1rem;
    }
    
    .logo h1 span {
        font-size: 1.25rem;
    }
    
    .hero {
        min-height: auto;
        padding-bottom: 100px;
        padding-top: 100px;
    }
    
    .hero-content {
        padding: 35px;
        margin-bottom: 0;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero h1 strong {
        font-size: 2.6rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .search-box {
        margin-bottom: 35px;
    }
    
    .hero-stats {
        gap: 25px;
        margin-top: 25px;
    }
    
    .stat .number {
        font-size: 2.7rem;
    }
    
    .stat .label {
        font-size: 1.1rem;
    }
    
    .hero-image-container img {
        max-width: 90%;
        border-radius: 24px;
        border-width: 10px;
    }
    
    .destinations-grid,
    .packages-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .logo i {
        font-size: 1.8rem;
    }
    
    .logo h1 {
        font-size: 1.9rem;
    }
    
    .logo h1 span {
        font-size: 1.15rem;
    }
    
    nav ul {
        gap: 8px;
    }
    
    nav a {
        font-size: 0.85rem;
        padding: 5px 8px;
    }
    
    .hero {
        padding-top: 90px;
        padding-bottom: 80px;
    }
    
    .hero-content {
        padding: 30px 20px;
    }
    
    .hero h1 {
        font-size: 2.7rem;
    }
    
    .hero h1 strong {
        font-size: 2.4rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .search-box input {
        padding: 16px 25px;
        font-size: 1.05rem;
    }
    
    .search-box button {
        width: 52px;
        height: 52px;
        font-size: 1.3rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 15px;
        margin-top: 20px;
    }
    
    .stat {
        min-width: 100%;
    }
    
    .stat .number {
        font-size: 2.5rem;
    }
    
    .stat .label {
        font-size: 1.15rem;
    }
    
    .hero-image-container {
        max-width: 100%;
    }
    
    .hero-image-container img {
        max-width: 100%;
        border-radius: 20px;
        border-width: 8px;
    }
    
    .section-title {
        font-size: 2.8rem;
    }
    
    .section-header p {
        font-size: 1.15rem;
    }
    
    .package-card.featured {
        transform: scale(1);
    }
    
    .package-card.featured:hover {
        transform: scale(1.03) translateY(-8px);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .booking-form,
    .booking-info,
    .contact-map {
        padding: 35px 25px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-col ul li a {
        padding-left: 25px;
    }
    
    .footer-col ul li a:hover {
        padding-left: 30px;
    }
    
    .copyright {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .copyright a {
        display: block;
        margin-top: 8px;
    }
    
    .developed-by {
        font-size: 0.95rem;
    }
}

