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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #e8f4f8 0%, #f5f5f5 100%);
    color: #1a202c;
    overflow-x: hidden;
    transition: background 0.3s, color 0.3s;
}

body.dark-theme {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: #e2e8f0;
}

body.dark-theme header {
    background: #2d3748;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

body.dark-theme .logo {
    color: #63b3ed;
}

body.dark-theme .nav-menu a {
    color: #a0aec0;
}

body.dark-theme .nav-menu a:hover {
    color: #63b3ed;
}

body.dark-theme .menu-toggle {
    color: #63b3ed;
}

body.dark-theme .agent-card,
body.dark-theme .package-card,
body.dark-theme .about-section,
body.dark-theme .booking-section,
body.dark-theme .reviews-section,
body.dark-theme .social-box,
body.dark-theme .footer-cta {
    background: #2d3748;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

body.dark-theme .agent-name,
body.dark-theme .section-title,
body.dark-theme .hero-title .black {
    color: #e2e8f0;
}

body.dark-theme .agent-title,
body.dark-theme .hero-title .blue {
    color: #63b3ed;
}

body.dark-theme .agent-bio,
body.dark-theme .about-text p,
body.dark-theme .package-features li,
body.dark-theme .hero-title p,
body.dark-theme .reviews-summary,
body.dark-theme .contact-details p,
body.dark-theme .location-text p {
    color: #a0aec0;
}

body.dark-theme .stat-card {
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
}

body.dark-theme .review-card {
    background: #4a5568;
}

body.dark-theme .package-images {
    background: #4a5568;
}

body.dark-theme .package-price {
    background: #63b3ed;
    color: #1a202c;
}

body.dark-theme input,
body.dark-theme select,
body.dark-theme textarea {
    background: #4a5568;
    color: #e2e8f0;
    border-color: #718096;
}

body.dark-theme input:focus,
body.dark-theme select:focus,
body.dark-theme textarea:focus {
    border-color: #63b3ed;
}

body.dark-theme .submit-btn {
    background: #63b3ed;
    color: #1a202c;
}

body.dark-theme .submit-btn:hover {
    background: #4299e1;
}

body.dark-theme .cta-icon,
body.dark-theme .location-icon {
    background: #4a5568;
}

body.dark-theme .cta-text p {
    color: #e2e8f0;
}

body.dark-theme footer {
    background: #1a202c;
}

#splash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

#splash.hide {
    opacity: 0;
    visibility: hidden;
}

.splash-content {
    text-align: center;
    color: white;
}

.logo-main {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.logo-main span {
    display: block;
    font-size: 2rem;
    letter-spacing: 0.3em;
    color: #63b3ed;
}

.loader-bar {
    width: 300px;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
    margin: 2rem auto;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: #63b3ed;
    animation: loading 2s ease-in-out;
}

@keyframes loading {
    from { width: 0; }
    to { width: 100%; }
}

.floating-call {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #48bb78;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(72, 187, 120, 0.4);
    z-index: 1000;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

.floating-call:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(72, 187, 120, 0.6);
}

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

.theme-toggle {
    position: fixed;
    top: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: all 0.3s;
}

body.dark-theme .theme-toggle {
    background: #4a5568;
}

.theme-toggle:hover {
    transform: rotate(180deg);
}

.plane-decoration {
    position: fixed;
    color: #4a5568;
    opacity: 0.15;
    font-size: 48px;
    z-index: 0;
    pointer-events: none;
}

body.dark-theme .plane-decoration {
    color: #a0aec0;
}

.plane-1 { top: 15%; left: 5%; transform: rotate(-45deg); }
.plane-2 { top: 40%; right: 8%; transform: rotate(135deg); }
.plane-3 { bottom: 20%; left: 10%; font-size: 36px; }
.plane-4 { top: 70%; right: 15%; font-size: 36px; transform: rotate(45deg); }

.plane-path {
    position: fixed;
    border-top: 2px dashed #cbd5e0;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

body.dark-theme .plane-path {
    border-top: 2px dashed #4a5568;
}

.path-1 { top: 25%; left: 0; right: 0; transform: rotate(-5deg); }
.path-2 { bottom: 30%; left: 0; right: 0; transform: rotate(3deg); }

header {
    background: white;
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s;
}

header.scrolled {
    padding: 0.5rem 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5282;
}

.logo i {
    font-size: 2rem;
    color: #3182ce;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-menu a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #3182ce;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #2c5282;
}

.social-header {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: transform 0.3s;
}

.social-icon:hover { transform: scale(1.1); }
.social-icon.ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-icon.fb { background: #1877f2; }
.social-icon.tw { background: #1da1f2; }
.social-icon.wa { background: #25d366; }

.top-hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.9) 0%, rgba(44, 82, 130, 0.85) 100%),
                url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920') center/cover;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 2rem;
    max-width: 1200px;
    animation: fadeInUp 1s ease-out;
}

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

.hero-main-title {
    font-size: 4.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.gradient-text {
    background: linear-gradient(135deg, #63b3ed 0%, #4299e1 50%, #3182ce 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #e2e8f0;
    margin-bottom: 3rem;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.btn-primary-hero,
.btn-whatsapp-hero {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-primary-hero {
    background: linear-gradient(135deg, #3182ce 0%, #2c5282 100%);
    color: white;
}

.btn-primary-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(49, 130, 206, 0.4);
}

.btn-whatsapp-hero {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
}

.btn-whatsapp-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: white;
    opacity: 0.7;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.banner-highlight {
    background: linear-gradient(135deg, #3182ce 0%, #2c5282 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(49, 130, 206, 0.3);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.banner-highlight:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(49, 130, 206, 0.4);
}

.agent-section {
    max-width: 1400px;
    margin: -80px auto 3rem;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

.agent-card {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2.5rem;
    align-items: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.agent-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

.agent-avatar {
    position: relative;
}

.agent-avatar-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #3182ce;
    box-shadow: 0 10px 30px rgba(49, 130, 206, 0.3);
}

.agent-badge {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(72, 187, 120, 0.4);
}

.agent-info {
    flex: 1;
}

.agent-name {
    font-size: 2rem;
    font-weight: 900;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.agent-title {
    font-size: 1.1rem;
    color: #3182ce;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.agent-bio {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.agent-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4a5568;
    font-size: 0.95rem;
}

.stat-item i {
    color: #3182ce;
    font-size: 1.1rem;
}

.stat-item strong {
    color: #1a202c;
}

.agent-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-weight: 600;
    transition: all 0.3s;
    white-space: nowrap;
}

.contact-btn-primary {
    background: linear-gradient(135deg, #3182ce 0%, #2c5282 100%);
    color: white;
    box-shadow: 0 5px 20px rgba(49, 130, 206, 0.3);
}

.contact-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(49, 130, 206, 0.4);
}

.contact-btn-secondary {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
    box-shadow: 0 5px 20px rgba(72, 187, 120, 0.3);
}

.contact-btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(72, 187, 120, 0.4);
}

.hero {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.hero-title {
    text-align: center;
    margin-bottom: 3rem;
}

.hero-title h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-title .blue { color: #3182ce; }
.hero-title .black { color: #1a202c; }

.hero-title p {
    font-size: 1.2rem;
    color: #4a5568;
}


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

.package-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.package-images {
    position: relative;
    height: 400px;
    display: grid;
    gap: 8px;
    padding: 8px;
    background: #f7fafc;
}

.package-card:nth-child(1) .package-images {
    grid-template-areas: "img1 img1" "img2 img3";
    grid-template-rows: 1fr 1fr;
}

.package-card:nth-child(2) .package-images,
.package-card:nth-child(3) .package-images {
    grid-template-areas: "img1 img2" "img1 img3";
    grid-template-columns: 1fr 1fr;
}

.pkg-img {
    border-radius: 12px;
    overflow: hidden;
}

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

.pkg-img-1 { grid-area: img1; }
.pkg-img-2 { grid-area: img2; }
.pkg-img-3 { grid-area: img3; }

.package-content {
    padding: 2rem;
    text-align: center;
}

.package-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a202c;
}

.package-content .subtitle {
    font-size: 1rem;
    color: #718096;
    margin-bottom: 0.5rem;
}

.package-features {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.package-features li {
    padding: 0.5rem 0;
    color: #4a5568;
    font-size: 0.95rem;
}

.package-features li:before {
    content: "✓ ";
    color: #48bb78;
    font-weight: bold;
    margin-right: 0.5rem;
}

.package-price {
    background: #1a202c;
    color: white;
    padding: 1rem 2rem;
    font-size: 2rem;
    font-weight: 700;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.about-section {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 3rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    color: #1a202c;
    margin-bottom: 3rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-stats {
    display: grid;
    gap: 1.5rem;
}

.stat-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.gallery-section {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.gallery-container {
    overflow: hidden;
    border-radius: 20px;
}

.gallery-track {
    display: flex;
    animation: scroll 30s linear infinite;
}

.gallery-item {
    min-width: 300px;
    height: 400px;
    margin: 0 10px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.booking-section {
    max-width: 800px;
    margin: 5rem auto;
    padding: 3rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.booking-header {
    text-align: center;
    margin-bottom: 2rem;
}

.booking-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1a202c;
    margin-bottom: 1rem;
}

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

input, select, textarea {
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #3182ce;
}

textarea {
    width: 100%;
    min-height: 100px;
    resize: vertical;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: #3182ce;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    background: #2c5282;
    transform: scale(1.02);
}

.reviews-section {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 3rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.reviews-summary {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    color: #4a5568;
}

.reviews-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.review-form-container h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.rating-input {
    margin: 1rem 0;
}

.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 0.5rem;
}

.star-rating input {
    display: none;
}

.star-rating label {
    font-size: 2rem;
    color: #cbd5e0;
    cursor: pointer;
    transition: color 0.3s;
}

.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
    color: #f6ad55;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.review-card {
    background: #f7fafc;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.stars {
    color: #f6ad55;
    margin: 0.5rem 0;
}

.contact-section {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

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

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

.social-box {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.social-box h3 {
    font-size: 1.8rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: transform 0.3s;
}

.social-link:hover {
    transform: scale(1.15);
}

.social-link.fb { background: #1877f2; }
.social-link.ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-link.wa { background: #25d366; }
.social-link.tt { background: #000000; }

.contact-details {
    margin-top: 2rem;
}

.contact-details p {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
    color: #4a5568;
}

.contact-details i {
    color: #3182ce;
    width: 20px;
}

.footer-cta {
    background: white;
    padding: 3rem 2rem;
    max-width: 1400px;
    margin: 3rem auto 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cta-icon {
    width: 60px;
    height: 60px;
    background: #2d3748;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.cta-text h3 {
    font-size: 1.2rem;
    color: #3182ce;
    margin-bottom: 0.25rem;
}

.cta-text p {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
}

.book-now-btn {
    background: #3182ce;
    color: white;
    padding: 1.2rem 3rem;
    font-size: 1.3rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.book-now-btn:hover {
    background: #2c5282;
    transform: scale(1.05);
}

.cta-location {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.location-icon {
    width: 60px;
    height: 60px;
    background: #2d3748;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.location-text h3 {
    font-size: 1.2rem;
    color: #3182ce;
    margin-bottom: 0.25rem;
}

.location-text p {
    font-size: 1rem;
    color: #4a5568;
}

footer {
    background: #1a202c;
    color: white;
    text-align: center;
    padding: 2rem;
}

@media (max-width: 768px) {
    .hero-title h1 { font-size: 2.5rem; }
    .packages-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .reviews-layout { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .cta-content { justify-content: center; text-align: center; }
    .social-header { display: none; }
    .nav-menu { display: none; flex-direction: column; width: 100%; position: absolute; top: 100%; left: 0; background: white; padding: 1rem; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
    body.dark-theme .nav-menu { background: #2d3748; }
    .nav-menu li { margin: 1rem 0; }
    .menu-toggle { display: block; }
    .plane-decoration { display: none; }
    .form-row { grid-template-columns: 1fr; }

    .top-hero { height: auto; padding: 6rem 0; }
    .hero-main-title { font-size: 2.5rem; margin-bottom: 1rem; }
    .hero-subtitle { font-size: 1rem; margin-bottom: 2rem; }
    .hero-buttons { flex-direction: column; gap: 1rem; }
    .btn-primary-hero, .btn-whatsapp-hero { padding: 1rem 2rem; font-size: 1rem; }
    .scroll-indicator { bottom: 20px; }
    .scroll-indicator i { font-size: 1.5rem; }

    .banner-highlight { font-size: 1rem; padding: 0.8rem 1.5rem; margin-bottom: 1.5rem; display: flex; justify-content: center; text-align: center; flex-wrap: wrap; gap: 0.5rem; }

    .agent-section { margin-top: -40px; margin-bottom: 2rem; padding: 0 1rem; }
    .agent-card { grid-template-columns: 1fr; padding: 2rem; gap: 1.5rem; text-align: center; }
    .agent-avatar { margin: 0 auto; }
    .agent-avatar-img { width: 120px; height: 120px; }
    .agent-name { font-size: 1.8rem; }
    .agent-title { font-size: 1rem; }
    .agent-bio { font-size: 0.95rem; }
    .agent-stats { justify-content: center; gap: 1rem; }
    .stat-item { font-size: 0.9rem; }
    .agent-contact { flex-direction: column; gap: 1rem; }
    .contact-btn { padding: 0.8rem 1.5rem; font-size: 0.95rem; }

    .hero { padding: 0 1rem; margin: 2rem auto; }
    .hero-title h1 { font-size: 2.5rem; }
    .hero-title p { font-size: 1rem; }
    .package-images { height: auto; min-height: 300px; }
    .package-content { padding: 1.5rem; }
    .package-content h3 { font-size: 1.5rem; }
    .package-features li { font-size: 0.9rem; }
    .package-price { font-size: 1.5rem; padding: 0.8rem 1.5rem; }

    .about-section { padding: 2rem 1rem; margin: 3rem auto; }
    .section-title { font-size: 2rem; margin-bottom: 2rem; }
    .about-grid { gap: 2rem; }
    .about-text p { font-size: 0.95rem; }
    .stat-card { padding: 1.5rem; }
    .stat-number { font-size: 2.5rem; }

    .gallery-section { padding: 0 1rem; margin: 3rem auto; }
    .gallery-item { min-width: 200px; height: 300px; margin: 0 5px; }

    .booking-section { padding: 2rem 1rem; margin: 3rem auto; }
    .booking-header h2 { font-size: 2rem; }
    .booking-header p { font-size: 0.95rem; }
    input, select, textarea { font-size: 0.95rem; padding: 0.8rem; }
    .submit-btn { padding: 1rem; font-size: 1rem; }

    .reviews-section { padding: 2rem 1rem; margin: 3rem auto; }
    .reviews-summary { font-size: 1rem; }
    .review-form-container h3 { font-size: 1.3rem; }
    .star-rating label { font-size: 1.5rem; }
    .review-card { padding: 1rem; }
    .avatar { width: 40px; height: 40px; font-size: 1.2rem; }

    .contact-section { padding: 0 1rem; margin: 3rem auto; }
    .map-container iframe { height: 300px; }
    .social-box { padding: 1.5rem; }
    .social-box h3 { font-size: 1.5rem; }
    .social-link { width: 40px; height: 40px; font-size: 1.2rem; }
    .contact-details p { font-size: 0.95rem; }

    .footer-cta { padding: 2rem 1rem; margin: 2rem auto 1rem; }
    .cta-content { gap: 1.5rem; }
    .cta-icon, .location-icon { width: 50px; height: 50px; font-size: 1.2rem; }
    .cta-text h3, .location-text h3 { font-size: 1rem; }
    .cta-text p { font-size: 1.2rem; }
    .book-now-btn { padding: 1rem 2rem; font-size: 1.1rem; }

    .floating-call { bottom: 20px; right: 20px; padding: 0.8rem 1.2rem; font-size: 0.9rem; }
    .theme-toggle { top: 60px; right: 20px; width: 40px; height: 40px; font-size: 1.2rem; }
    .loader-bar { width: 80%; max-width: 300px; }

    body, section, div { overflow-x: hidden; }
}