/* ========================================
   General Styles
   ======================================== */

:root {
    --primary-color: #a52a2a;
    --secondary-color: #f093fb;
    --accent-color: #667eea;
    --light-bg: #f8f9fa;
    --text-dark: #333;
    --text-light: #666;
    --border-color: #e0e0e0;
    --gradient-primary: linear-gradient(135deg, #a52a2a 0%, #f093fb 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #667eea 100%);
    --gradient-accent: linear-gradient(135deg, #667eea 0%, #a52a2a 100%);
    --dark-bg: #2c3e50;
    --success-color: #28a745;
    --warning-color: #ffc107;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

/* ========================================
   Header & Navigation
   ======================================== */

.header {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,249,250,0.95) 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 600;
    
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-brand i {
    margin-right: 8px;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin-left: 10px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* ========================================
   Hero Section
   ======================================== */

.hero-section {
    position: relative;
    min-height: 400px;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    align-items: top;
    justify-content: top;
    color: var(--primary-color);
    text-align: center;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 300px;
    }
}

/* .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(165, 42, 42, 0.7) 0%, rgba(240, 147, 251, 0.7) 100%);
    opacity: 0.8;
} */

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
    color: white;
}
.hero-section h3{
    color: white;
}

.hero-section h4{
    color:var(--secondary-color);
}

.hero-section p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-primary {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 12px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--light-bg);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* ========================================
   Section Styles
   ======================================== */

.section {
    padding: 20px 0;
}

.section-image {
    margin: 40px;
    width: fit-content;
    height: fit-content;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.section-image img {
    width: 100%;
    height: auto;
    display: block;
}

.section.bg-light {
    background-color: var(--light-bg);
}

#packages {
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.05) 0%, rgba(102, 126, 234, 0.05) 100%);
}

#who-joins {
    background: linear-gradient(135deg, rgba(165, 42, 42, 0.05) 0%, rgba(240, 147, 251, 0.05) 100%);
}

#start-up-costs {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(165, 42, 42, 0.05) 100%);
}

#ready-to-start {
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.05) 0%, rgba(102, 126, 234, 0.05) 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 400;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title p {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* ========================================
   Destination Cards
   ======================================== */

.destination-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.destination-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.destination-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.destination-card p {
    color: var(--text-light);
    flex-grow: 1;
    margin-bottom: 20px;
}

.btn-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.btn-link:hover {
    color: var(--secondary-color);
}

/* ========================================
   Package Cards
   ======================================== */

.package-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 10px;
    padding: 2px;
    background: var(--gradient-primary);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    z-index: -1;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15), 0 0 20px rgba(240, 147, 251, 0.3);
}

.package-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15), 0 0 30px rgba(102, 126, 234, 0.5);
}

.package-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.package-badge.featured {
    background: var(--accent-color);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.package-card h3 {
    font-size: 1.5rem;
    margin-top: 15px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.price {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 25px;
}

.package-features {
    list-style: none;
    margin-bottom: 25px;
    flex-grow: 1;
}

.package-features li {
    padding: 10px 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* ========================================
   About Section
   ======================================== */

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.features-list {
    list-style: none;
    margin-top: 30px;
}

.features-list li {
    display: flex;
    margin-bottom: 25px;
}

.features-list i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 20px;
    flex-shrink: 0;
    margin-top: 3px;
}

.features-list h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.features-list p {
    color: var(--text-light);
    margin: 0;
}

.about-image {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 10px;
    padding: 60px;
    text-align: center;
    color: white;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about-image i {
    font-size: 5rem;
    opacity: 0.8;
}

/* ========================================
   Contact Section
   ======================================== */

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-item i {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.contact-item:nth-child(1) i {
    color: var(--primary-color);
}

.contact-item:nth-child(2) i {
    color: var(--secondary-color);
}

.contact-item:nth-child(3) i {
    color: var(--accent-color);
}

.contact-item h4 {
    margin-bottom: 5px;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-light);
    margin: 0;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-box h4 {
    margin-bottom: 25px;
    font-size: 1.3rem;
    color: var(--text-dark);
}

.form-control {
    border: 1px solid var(--border-color);
    border-radius: 5px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(245, 87, 108, 0.25);
}

/* ========================================
   Footer
   ======================================== */

.footer {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #34495e 100%);
    color: white;
    padding: 60px 0 20px;
    margin-top: 40px;
}

.footer h5 {
    margin-bottom: 20px;
    font-weight: 600;
}

.footer p {
    color: #999;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 30px 0;
}

.footer .text-center {
    color: #999;
    font-size: 0.95rem;
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1.1rem;
    }

    .section {
        padding: 30px 0;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .package-card.featured {
        transform: scale(1);
    }

    .package-card.featured:hover {
        transform: translateY(-10px);
    }

    .about-image {
        padding: 40px;
        min-height: auto;
    }

    .about-image i {
        font-size: 3rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 400px;
    }

    .hero-section h1 {
        font-size: 1.8rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .section-title h2 {
        font-size: 1.5rem;
    }

    .destination-card,
    .package-card {
        padding: 20px;
    }
}
