/* Base Variables */
:root {
    --primary: #facc15;      /* Sun Yellow */
    --primary-hover: #eab308;
    --secondary: #0284c7;    /* Sea Blue */
    --secondary-hover: #0369a1;
    --dark: #0f172a;         /* Deep Navy */
    --light: #f8fafc;
    --text-main: #334155;
    --text-muted: #64748b;
    --bg-white: #ffffff;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    color: var(--dark);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.highlight {
    color: var(--secondary);
    position: relative;
    display: inline-block;
}
.highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(250, 204, 21, 0.4);
    z-index: -1;
    transform: rotate(-1deg);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--dark);
    box-shadow: 0 4px 14px rgba(250, 204, 21, 0.4);
}
.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(250, 204, 21, 0.5);
}

.btn-secondary {
    background-color: var(--bg-white);
    color: var(--secondary);
    border: 2px solid var(--secondary);
}
.btn-secondary:hover {
    background-color: var(--secondary);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo-img {
    height: 36px;
    width: auto;
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--dark);
    letter-spacing: -0.5px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.desktop-nav a:not(.nav-cta) {
    font-weight: 500;
    color: var(--text-main);
}

.desktop-nav a:not(.nav-cta):hover {
    color: var(--secondary);
}

.nav-cta {
    background-color: var(--secondary);
    color: white;
    padding: 0.6rem 1.25rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: var(--transition);
}
.nav-cta:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}

/* Hero Section */
.hero {
    padding-top: 80px;
    min-height: 90vh;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: stretch;
}

.hero-inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    display: grid;
    grid-template-columns: 55% 45%;
    align-items: center;
    gap: 0;
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(250,204,21,0.15) 0%, rgba(250,204,21,0) 70%);
    top: -100px;
    right: -100px;
    border-radius: 50%;
}

.hero-content {
    padding: 2rem 2rem 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.hero h1 {
    font-size: clamp(2.8rem, 4.5vw, 4.5rem);
    margin-bottom: 1.25rem;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.75rem;
    max-width: 440px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0 2rem 2rem;
    height: 100%;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    width: 100%;
    max-height: 580px;
    object-fit: cover;
    transform: rotate(2deg);
    transition: var(--transition);
}
.hero-image img:hover {
    transform: rotate(0deg) scale(1.02);
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 3.5rem;
}

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

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Grid Layout */
.grid {
    display: grid;
    gap: 2rem;
}

/* Destinations */
.destinations {
    padding: 6rem 0;
    background-color: var(--bg-white);
}

.dest-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.dest-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}
.dest-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.dest-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.dest-img {
    height: 240px;
    overflow: hidden;
}

.dest-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.dest-card:hover .dest-img img {
    transform: scale(1.1);
}

.dest-content {
    padding: 1.5rem;
}

.dest-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.dest-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Services */
.services {
    padding: 6rem 0;
    background-color: var(--light);
}

.service-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.service-card {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
    opacity: 0;
    transform: translateY(20px);
}
.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.service-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.service-card .icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 1rem;
    background: rgba(2, 132, 199, 0.05);
    border-radius: 50%;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* FAQ */
.faq-section {
    padding: 6rem 0;
    background-color: var(--bg-white);
}

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

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background: var(--bg-white);
    border: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}
.faq-question:hover {
    background-color: rgba(2, 132, 199, 0.02);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--secondary);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background-color: rgba(2, 132, 199, 0.02);
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    max-height: 300px; /* arbitrary large value */
}
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Bottom CTA */
.bottom-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--dark) 0%, #1e293b 100%);
    color: var(--bg-white);
}

.bottom-cta h2 {
    color: var(--bg-white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.bottom-cta p {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2.5rem;
}

.google-review-badge {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.google-review-badge p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}
.google-review-badge img {
    height: 50px;
    border-radius: 8px;
    transition: transform 0.2s;
}
.google-review-badge img:hover {
    transform: scale(1.05);
}

/* Footer */
footer {
    background-color: var(--bg-white);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.footer-info p {
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--text-muted);
    font-weight: 500;
}
.footer-links a:hover {
    color: var(--secondary);
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
}

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

/* Trust Badges & Hero Benefits */
.trust-badge {
    background-color: rgba(250, 204, 21, 0.15);
    color: #eab308;
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(250, 204, 21, 0.3);
}

.hero-benefits {
    list-style: none;
    margin-bottom: 2rem;
    font-size: 1.05rem;
    color: var(--text-main);
}

.hero-benefits li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.check-icon {
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
}

.hero-social-proof {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Animations */
@keyframes pulse-shadow {
    0% { box-shadow: 0 0 0 0 rgba(250, 204, 21, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(250, 204, 21, 0); }
    100% { box-shadow: 0 0 0 0 rgba(250, 204, 21, 0); }
}

.cta-pulse {
    animation: pulse-shadow 2s infinite;
}

.mt-4 { margin-top: 1rem; }

/* Mobile Menu Elements */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--dark);
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    transform: translateY(-10px);
}

.mobile-overlay.active {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--dark);
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.mobile-nav a {
    font-size: 1.5rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    color: var(--dark);
}
.mobile-nav a.btn {
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 900px) {
    .hero {
        padding-top: 100px;
        min-height: auto;
    }
    .hero-inner {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }
    .hero-content {
        padding: 2rem 0;
        align-items: center;
        text-align: center;
    }
    .hero-image {
        padding: 0 0 2rem 0;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-benefits {
        display: inline-block;
        text-align: left;
    }
    .desktop-nav {
        display: none;
    }
    .mobile-toggle {
        display: block;
    }
}
