/* NVRSholiday - Complete Stylesheet */

:root {
    --sky-blue: #87CEEB;
    --deep-sky: #00BFFF;
    --light-sky: #E0F6FF;
    --ocean-blue: #1E90FF;
    --white: #FFFFFF;
    --cream: #FFFEF9;
    --cloud: #F0F8FF;
    --navy: #1a4d7a;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    overflow-x: hidden;
    background: var(--cream);
}

/* Custom Cursor Effect */
body::before {
    content: '';
    position: fixed;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(135, 206, 235, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 191, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 5%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 191, 255, 0.1);
    animation: slideIn 0.6s ease-out;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--ocean-blue), var(--sky-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
    position: relative;
    animation: shimmer 3s infinite;
    background-size: 200% auto;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--ocean-blue), var(--sky-blue));
    transition: width 0.3s;
}

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

.contact-btn {
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, var(--ocean-blue), var(--sky-blue));
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    display: inline-block;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(30, 144, 255, 0.4);
}

/* Hero Section */
.hero {
    margin-top: 90px;
    min-height: 90vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    padding: 4rem 5%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.hero-content {
    animation: slideIn 0.8s ease-out 0.2s both;
}

.hero-badge {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: rgba(135, 206, 235, 0.2);
    border-radius: 50px;
    color: var(--ocean-blue);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 2px solid rgba(135, 206, 235, 0.3);
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    line-height: 1.1;
    color: var(--navy);
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--ocean-blue), var(--sky-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.hero p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--ocean-blue), var(--sky-blue));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(30, 144, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(30, 144, 255, 0.5);
}

.btn-secondary {
    padding: 1.2rem 3rem;
    background: white;
    color: var(--ocean-blue);
    border: 2px solid var(--ocean-blue);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--ocean-blue);
    color: white;
    transform: translateY(-5px);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 600px;
    animation: fadeIn 1s ease-out 0.4s both;
}

.hero-card {
    position: absolute;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s;
}

.hero-card:hover {
    transform: scale(1.05) rotate(-2deg) !important;
}

.hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-card-1 {
    width: 400px;
    height: 300px;
    top: 0;
    right: 50px;
    transform: rotate(5deg);
    z-index: 3;
}

.hero-card-2 {
    width: 350px;
    height: 250px;
    bottom: 100px;
    left: 0;
    transform: rotate(-8deg);
    z-index: 2;
}

.hero-card-3 {
    width: 200px;
    height: 200px;
    bottom: 0;
    right: 100px;
    border-radius: 50%;
    z-index: 1;
}

.floating-element {
    position: absolute;
    animation: float 6s ease-in-out infinite;
}

.plane-icon {
    top: 50px;
    left: 50px;
    font-size: 3rem;
    animation-delay: 0s;
}

.cloud-icon {
    bottom: 50px;
    right: 0;
    font-size: 2rem;
    animation-delay: 1s;
    opacity: 0.6;
}

/* Services Section */
.services {
    padding: 8rem 5%;
    background: linear-gradient(180deg, var(--cream) 0%, var(--light-sky) 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--cream);
    transform: skewY(-2deg);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    animation: slideIn 0.6s ease-out;
}

.section-label {
    font-size: 0.9rem;
    color: var(--ocean-blue);
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--navy);
    font-weight: 900;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background: white;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 191, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: scaleIn 0.6s ease-out both;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }
.service-card:nth-child(7) { animation-delay: 0.7s; }
.service-card:nth-child(8) { animation-delay: 0.8s; }
.service-card:nth-child(9) { animation-delay: 0.9s; }

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--ocean-blue), var(--sky-blue));
    transform: scaleX(0);
    transition: transform 0.4s;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(0, 191, 255, 0.25);
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.4s;
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(5deg);
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, var(--ocean-blue), var(--sky-blue));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: 1rem;
}

.service-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(30, 144, 255, 0.3);
}

/* Service Pages */
.service-page {
    /* display: none; */
    padding: 8rem 5% 4rem;
    min-height: 100vh;
    animation: fadeIn 0.6s ease-out;
}

.service-page.active {
    display: block;
}

.page-header {
    max-width: 1200px;
    margin: 0 auto 4rem;
    text-align: center;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--navy);
    margin-bottom: 1rem;
    font-weight: 900;
}

.page-header .icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.back-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: white;
    color: var(--ocean-blue);
    border: 2px solid var(--ocean-blue);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 2rem;
    transition: all 0.3s;
}

.back-btn:hover {
    background: var(--ocean-blue);
    color: white;
}

.service-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.service-details {
    background: white;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 191, 255, 0.1);
}

.service-details h2 {
    color: var(--navy);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.service-details h3 {
    color: var(--ocean-blue);
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.service-details p {
    line-height: 1.8;
    color: #666;
    margin-bottom: 1rem;
}

.service-details ul {
    list-style: none;
    padding-left: 0;
}

.service-details ul li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #666;
}

.service-details ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--ocean-blue);
    font-weight: bold;
    font-size: 1.2rem;
}

.service-image {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 120px;
}

.service-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-item {
    background: var(--cloud);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--ocean-blue);
}

.feature-item h4 {
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.price-box {
    background: linear-gradient(135deg, var(--ocean-blue), var(--sky-blue));
    color: white;
    padding: 2rem;
    border-radius: 20px;
    margin-top: 2rem;
    text-align: center;
}

.price-box h3 {
    color: white;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 1rem 0;
}

/* WhatsApp Elements */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    cursor: pointer;
    z-index: 9999;
    transition: all 0.3s;
    animation: pulse 2s infinite;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.7);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    z-index: -1;
    animation: ripple 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.whatsapp-tooltip {
    position: absolute;
    right: 80px;
    background: white;
    color: #333;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    border: 10px solid transparent;
    border-left-color: white;
}

.nav-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    background: #25D366;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    margin-left: 1rem;
}

.nav-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-cta {
    background: linear-gradient(135deg, #25D366, #128C7E);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    color: white;
    margin-top: 2rem;
}

.whatsapp-cta h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    background: white;
    color: #25D366;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    margin-top: 1rem;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Destinations */
.destinations {
    padding: 8rem 5%;
    background: white;
}

.destinations-grid {
    max-width: 1400px;
    margin: 3rem auto;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 250px;
    gap: 1.5rem;
}

.destination-card {
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.5s;
}

.destination-card:nth-child(1) {
    grid-column: span 6;
    grid-row: span 2;
}

.destination-card:nth-child(2) {
    grid-column: span 6;
    grid-row: span 1;
}

.destination-card:nth-child(3) {
    grid-column: span 4;
    grid-row: span 1;
}

.destination-card:nth-child(4) {
    grid-column: span 8;
    grid-row: span 2;
}

.destination-card:nth-child(5) {
    grid-column: span 4;
    grid-row: span 2;
}

.destination-card:nth-child(6) {
    grid-column: span 6;
    grid-row: span 1;
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

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

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem;
    color: white;
    transform: translateY(100%);
    transition: transform 0.4s;
}

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

.destination-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

/* Stats Section */
.stats {
    padding: 6rem 5%;
    background: linear-gradient(135deg, var(--ocean-blue), var(--sky-blue));
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></svg>');
    opacity: 0.3;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Contact Section */
.contact {
    padding: 8rem 5%;
    background: var(--cream);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.contact-info {
    animation: slideIn 0.8s ease-out;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--navy);
    margin-bottom: 2rem;
    font-weight: 900;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 191, 255, 0.1);
    transition: transform 0.3s;
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--ocean-blue), var(--sky-blue));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h4 {
    color: var(--navy);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.contact-details a {
    color: var(--ocean-blue);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
}

.booking-form {
    background: white;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 191, 255, 0.15);
    animation: scaleIn 0.8s ease-out;
}

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

.form-group label {
    display: block;
    color: var(--navy);
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(135, 206, 235, 0.3);
    border-radius: 15px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s;
    background: var(--cloud);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--ocean-blue);
    background: white;
    box-shadow: 0 5px 20px rgba(0, 191, 255, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 1.3rem;
    background: linear-gradient(135deg, var(--ocean-blue), var(--sky-blue));
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(30, 144, 255, 0.4);
}

.payment-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(135, 206, 235, 0.2);
}

.payment-badge {
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.1), rgba(0, 191, 255, 0.1));
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ocean-blue);
    border: 2px solid rgba(135, 206, 235, 0.3);
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.3s;
    cursor: pointer;
}

.social-icon:hover {
    background: var(--sky-blue);
    transform: translateY(-5px);
}

/* Footer */
footer {
    background: var(--navy);
    color: white;
    padding: 4rem 5% 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    opacity: 0.8;
    line-height: 1.8;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--sky-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 3rem 5%;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-visual {
        height: 400px;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .destinations-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .destination-card:nth-child(1),
    .destination-card:nth-child(4) {
        grid-column: span 6;
    }

    .service-content {
        grid-template-columns: 1fr;
    }

    .service-image {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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

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

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

    .destinations-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 300px;
    }

    .destination-card {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }

    .nav-whatsapp {
        display: none;
    }

    .features-list {
        grid-template-columns: 1fr;
    }
}

/* Scroll Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}
