/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-small {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

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

.logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 8px;
}

.logo-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0;
}

.logo-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 0;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #3b82f6;
}

.btn-reserve {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-reserve:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.8), rgba(59, 130, 246, 0.7));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 24px;
}

.hero-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 48px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-subtitle {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 300;
    color: #bfdbfe;
    margin-top: 16px;
}

.hero-description {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: #dbeafe;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.btn-primary, .btn-secondary {
    padding: 16px 32px;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    min-width: 280px;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Sections */
.presentation-section {
    padding: 80px 0;
    background: white;
}

.section-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 32px;
    line-height: 1.2;
}

.section-title-playfair {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-description {
    font-size: 20px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.feature-card {
    background: white;
    padding: 32px;
    border-radius: 24px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-blue {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}

.feature-green {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
}

.feature-amber {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
}

.feature-card:hover {
    transform: translateY(-8px);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.feature-text {
    color: #6b7280;
    line-height: 1.6;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9fafb, #dbeafe);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.title-divider {
    width: 96px;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    margin: 0 auto;
    border-radius: 2px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.about-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-text {
    font-size: 18px;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 24px;
}

.highlight-blue {
    font-weight: 600;
    color: #2563eb;
}

.highlight-green {
    font-weight: 600;
    color: #059669;
}

.highlight-bold {
    font-weight: 600;
}

.mission-card {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    padding: 24px;
    border-radius: 16px;
    margin-top: 32px;
}

.mission-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.mission-icon {
    font-size: 24px;
    margin-right: 12px;
}

.mission-title {
    font-size: 18px;
    font-weight: 600;
}

.mission-text {
    color: #dbeafe;
    line-height: 1.6;
}

.profile-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 24px;
}

.profile-header {
    text-align: center;
    margin-bottom: 32px;
}

.profile-avatar {
    width: 128px;
    height: 128px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 48px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    margin: 0 auto 24px;
}

.profile-name {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.profile-title {
    color: #2563eb;
    font-weight: 600;
}

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

.contact-item {
    display: flex;
    align-items: center;
    padding: 16px;
    border-radius: 12px;
}

.contact-blue {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}

.contact-green {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
}

.contact-amber {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
}

.contact-purple {
    background: linear-gradient(135deg, #ede9fe, #ddd6fe);
}

.contact-icon {
    font-size: 20px;
    margin-right: 12px;
}

.contact-text {
    color: #374151;
    font-weight: 500;
}

.contact-link {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #1d4ed8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 16px;
    text-align: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
}

.stat-blue {
    color: #2563eb;
}

.stat-green {
    color: #059669;
}

.stat-amber {
    color: #d97706;
}

.stat-label {
    font-size: 12px;
    color: #6b7280;
}

/* Packages Sections */
.packages-section {
    padding: 80px 0;
}

.packages-location {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}

.packages-purchase {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
}

.section-icon-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

.section-icon {
    font-size: 48px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 64px;
}

.package-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    position: relative;
    transition: all 0.3s ease;
}

.package-card:hover {
    transform: translateY(-8px) scale(1.02);
}

.package-popular {
    border-color: #3b82f6;
    box-shadow: 0 20px 25px -5px rgba(59, 130, 246, 0.2);
}

.package-green.package-popular {
    border-color: #059669;
    box-shadow: 0 20px 25px -5px rgba(5, 150, 105, 0.2);
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.popular-green {
    background: linear-gradient(135deg, #059669, #047857);
}

.package-header {
    text-align: center;
    margin-bottom: 32px;
}

.package-name {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.package-price {
    margin-bottom: 24px;
}

.price-amount {
    font-size: 48px;
    font-weight: 700;
    color: #1f2937;
}

.price-currency {
    font-size: 20px;
    color: #6b7280;
    margin-left: 8px;
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.5;
}

.feature-check {
    color: #10b981;
    font-weight: 700;
    margin-right: 12px;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.package-btn {
    width: 100%;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.package-btn:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.package-btn-green {
    background: linear-gradient(135deg, #059669, #047857);
}

.package-btn-green:hover {
    background: linear-gradient(135deg, #047857, #065f46);
    box-shadow: 0 10px 25px rgba(5, 150, 105, 0.3);
}

/* How it Works Section */
.how-it-works-section {
    padding: 80px 0;
    background: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 64px;
}

.step-card {
    text-align: center;
    padding: 32px;
    border-radius: 24px;
    transition: transform 0.3s ease;
}

.step-blue {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}

.step-green {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
}

.step-amber {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
}

.step-card:hover {
    transform: translateY(-8px);
}

.step-icon {
    font-size: 64px;
    margin-bottom: 24px;
}

.step-title {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.step-description {
    color: #6b7280;
    font-size: 18px;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f9fafb;
}

.faq-list {
    margin-top: 48px;
}

.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f9fafb;
}

.faq-icon {
    font-size: 24px;
    color: #6b7280;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: #6b7280;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    position: relative;
    padding: 80px 0;
    color: white;
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.contact-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.contact-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.9), rgba(55, 65, 81, 0.8));
}

.section-title-white {
    color: white;
}

.section-description-white {
    color: #d1d5db;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    margin-top: 64px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 32px;
    font-family: 'Playfair Display', serif;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-detail {
    display: flex;
    align-items: center;
    font-size: 18px;
}

.contact-detail .contact-icon {
    font-size: 24px;
    margin-right: 16px;
    width: 32px;
}

.phone-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.whatsapp-btn {
    background: #10b981;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    width: fit-content;
}

.whatsapp-btn:hover {
    background: #059669;
    transform: translateY(-2px);
}

/* Contact Form */
.contact-form-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-title {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
}

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

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-input::placeholder, .form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
}

.form-textarea {
    resize: none;
    min-height: 100px;
}

.form-submit {
    width: 100%;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

/* Footer */
.footer {
    background: #1f2937;
    color: #d1d5db;
    padding: 48px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.footer-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 16px;
}

.footer-text {
    font-size: 14px;
    line-height: 1.6;
}

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

.footer-list li {
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #9ca3af;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
}

.whatsapp-float-btn {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 16px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.whatsapp-float-btn:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.5);
}

.whatsapp-icon {
    font-size: 24px;
}

.whatsapp-text {
    margin-left: 8px;
    font-weight: 600;
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.whatsapp-float-btn:hover .whatsapp-text {
    opacity: 1;
    max-width: 100px;
}

.whatsapp-pulse {
    position: absolute;
    inset: 0;
    background: #10b981;
    border-radius: 50px;
    animation: pulse 2s infinite;
    opacity: 0.3;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    70% {
        transform: scale(1.4);
        opacity: 0;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-primary, .btn-secondary {
        min-width: auto;
    }
    
    .about-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .hero-card {
        padding: 32px 24px;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .whatsapp-float-btn {
        padding: 12px;
    }
    
    .whatsapp-text {
        display: none;
    }
}

@media (max-width: 480px) {
    .container, .container-small {
        padding: 0 16px;
    }
    
    .hero-card {
        padding: 24px 16px;
    }
    
    .feature-card, .step-card {
        padding: 24px;
    }
    
    .about-card, .profile-card, .contact-card, .contact-form-section {
        padding: 24px;
    }
    
    .package-card {
        padding: 24px;
    }
}

/* Smooth scrolling and animations */
@media (prefers-reduced-motion: no-preference) {
    .feature-card, .step-card, .package-card {
        animation: fadeInUp 0.6s ease-out;
    }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* Print styles */
@media print {
    .header-fixed, .whatsapp-float, .contact-section {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
}