/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
    --ink: #1e293b;       /* dark slate gray */
    --primary: #064e3b;   /* darker forest green */
    --secondary: #f5f5dc; /* cream/beige */
    --base: #fafaf9;      /* warm off-white */
    --accent: #9f1239;    /* deep burgundy */
    --explore-red: #00c9ff; 
    --explore-dark-red: #003dff; 
    --explore-yellow: #003dff; 
    --explore-purple: #003dff; 
}

/* Base Styles */
body {
    font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--base);
    color: var(--ink);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

/* Top Support Bar */
.top-support-bar {
    background: #00c9ff;;;
    border-bottom: 1px solid #ffffff!important;
    color: white;
    padding: 8px 0;
    font-size: 14px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1040;
}

.top-support-bar a:hover {
    color: #003dff !important;
}

/* Main Navigation */
#navbar {
    background: #ffffff !important;
    padding: 15px 0;
    top: 38px;
    z-index: 1030;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 0px 0px 50px 50px;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #00c9ff !important;
}

.navbar-toggler-icon-white {
    filter: invert(1);
}

/* Yellow Promo Bar */
.yellow-promo-bar {
    background: var(--explore-yellow);
    color: var(--ink);
    padding: 6px 0;
    font-weight: 500;
    position: absolute;
    top: 123px;
    left: 0;
    right: 0;
    z-index: 1020;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.yellow-promo-bar strong {
    color: var(--explore-red);
    cursor: pointer;
}

.yellow-promo-bar strong:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero-section {
    position: relative;
}

.hero-slider {
    position: relative;
    height: 80vh;
    min-height: 500px;
    overflow: hidden;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="1200" height="600" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-title {
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 0;
}

.hero-accent {
    color: var(--explore-yellow);
    font-size: 4rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    opacity: 0.9;
}


/* Hero Search Bar */
.hero-search-bar {
    background: #ffffff;;
    /*padding: 40px 0;*/
    /*margin-top: -50px;*/
    position: relative;
    z-index: 3;
    /*border-radius: 50px 50px 0 0;*/
}

.search-form {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.search-form .form-label {
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 8px;
}

.search-form .form-select,
.search-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.search-form .form-select:focus,
.search-form .form-control:focus {
    border-color: var(--explore-red);
}

.search-form .btn-primary {
    background: #307082;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    padding: 15px 40px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.search-form .btn-primary:hover {
    background: #064e3b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(6, 78, 59, 0.4);
}

/* Global Primary Button Styling */
.btn-primary {
    background: var(--explore-red) !important;
    border: none !important;
    border-radius: 10px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.btn-primary:hover {
    background: var(--explore-dark-red) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px #003dff !important;
}

/* Section Dividers */
.section-divider {
    padding: 40px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--explore-red), transparent);
}

.divider-content {
    background: var(--base);
    padding: 0 30px;
    position: relative;
    z-index: 2;
    display: inline-block;
}

.divider-content i {
    font-size: 2rem;
    color: var(--explore-red);
    margin-right: 15px;
    vertical-align: middle;
}

.divider-content span {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--ink);
    vertical-align: middle;
}

/* Different divider styles */
.section-divider-1 {
    background: linear-gradient(135deg, #064e3b 0%, #9f1239 100%);
}

.section-divider-2 {
    background: linear-gradient(135deg, #f5f5dc 0%, #e5e7eb 100%);
}

.section-divider-3 {
    background: linear-gradient(135deg, #064e3b 0%, #f5f5dc 100%);
}

.section-divider-4 {
    background: linear-gradient(135deg, #f5f5dc 0%, #d1d5db 100%);
}

.section-divider-5 {
    background: linear-gradient(135deg, #064e3b 0%, #f5f5dc 100%);
}

.section-divider-1 .divider-content,
.section-divider-2 .divider-content,
.section-divider-3 .divider-content,
.section-divider-4 .divider-content,
.section-divider-5 .divider-content {
    background: white;
    border-radius: 25px;
    padding: 15px 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Trust Section - Why Choose Us */
.trust-section {
    background: white;
    padding: 80px 0;
}

.trust-content {
    padding-right: 40px;
}

.trust-headline {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.2;
    margin-bottom: 20px;
}

.trust-underline {
    width: 120px;
    height: 4px;
    background: var(--explore-red);
    margin-bottom: 25px;
    border-radius: 2px;
}

.trust-supporting-text {
    font-size: 1.2rem;
    color: var(--ink);
    line-height: 1.6;
    margin: 0;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.feature-block {
    padding: 25px;
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: transparent;
    border: 2px solid var(--explore-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: var(--explore-red);
    font-size: 1.5rem;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--explore-red);
    margin-bottom: 10px;
    text-transform: lowercase;
}

.feature-title::first-letter {
    text-transform: uppercase;
}

.feature-description {
    font-size: 0.95rem;
    color: var(--ink);
    line-height: 1.5;
    margin: 0;
}

/* Section Styles */
section {
    padding: 80px 0 0;
}

/* Service Cards */
.service-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(227, 24, 55, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: var(--explore-red);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: transparent;
    border: 2px solid var(--explore-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--explore-red);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 8px 20px rgba(48, 112, 130, 0.3);
    background: var(--explore-red);
    color: white;
    border-color: var(--explore-red);
}

.service-title {
    color: var(--explore-red);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.service-description {
    color: var(--ink);
    opacity: 0.8;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
    font-size: 0.95rem;
}

.testimonial-author {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(227, 24, 55, 0.1);
}

.testimonial-author strong {
    color: var(--ink);
    font-size: 1rem;
}

.testimonial-author small {
    color: var(--secondary);
    font-size: 0.85rem;
}

.bg-primary-ghost {
    background: linear-gradient(135deg, rgba(227, 24, 55, 0.05) 0%, rgba(196, 18, 48, 0.05) 100%);
}

/* Cards */
.card {
    border: none;
    border-radius: 20px;
    transition: all 0.3s ease;
    overflow: hidden;
}

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

.card-body {
    padding: 2rem;
}

/* Buttons */
.btn-accent {
    background: var(--explore-red);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accent:hover {
    background: var(--explore-dark-red);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(227, 24, 55, 0.4);
}

.btn-outline-primary {
    border: 2px solid var(--explore-red);
    color: var(--explore-red);
    border-radius: 10px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--explore-red);
    color: white;
    transform: translateY(-2px);
}

/* Icons */
.icon-wrapper {
    width: 80px;
    height: 80px;
    background: transparent;
    border: 2px solid var(--explore-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: var(--explore-red);
    font-size: 2rem;
}

/* Package Tabs */
.nav-tabs {
    border: none;
    margin-bottom: 3rem;
}

.nav-tabs .nav-link {
    border: none;
    background: transparent;
    color: var(--ink);
    font-weight: 600;
    padding: 15px 30px;
    margin: 0 10px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link.active {
    background: var(--explore-purple);
    color: white;
    box-shadow: 0 5px 15px rgba(107, 70, 193, 0.3);
}

.nav-tabs .nav-link:hover:not(.active) {
    background: rgba(107, 70, 193, 0.1);
    color: var(--explore-purple);
}

/* Success Stories */
.stars {
    color: var(--explore-yellow);
}

.avatar {
    width: 50px;
    height: 50px;
    background: transparent;
    border: 2px solid var(--explore-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--explore-red);
}

/* FAQ Accordion */
.accordion-button {
    border-radius: 15px !important;
    font-weight: 600;
    padding: 20px;
    color: var(--ink) !important;
}

.accordion-button:not(.collapsed) {
    background: var(--explore-red);
    color: var(--ink) !important;
    border: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(227, 24, 55, 0.25);
}

/* Contact Form */
.form-control, .form-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--explore-red);
}

/* Footer */
footer {
    background: var(--ink);
    color: white;
    padding: 60px 0 30px;
}

footer a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--explore-yellow);
}

/* Back to Top Button */
#backToTop {
    background: var(--explore-red);
    color: white;
    border: none;
    width: 50px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 1000;
}

#backToTop:hover {
    background: var(--explore-dark-red);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(227, 24, 55, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-accent {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .top-support-bar {
        font-size: 12px;
    }
    
    .yellow-promo-bar {
        font-size: 14px;
    }
    
    .search-form {
        padding: 20px;
    }
    
    .section-divider {
        padding: 30px 0;
    }
    
    .divider-content span {
        font-size: 1.1rem;
    }
    
    /* Trust Section Mobile */
    .trust-headline {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .trust-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .trust-underline {
        margin: 0 auto 25px auto;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-block {
        padding: 20px;
        text-align: center;
    }
}

/* Decorative Elements */
.decorative-shape {
    width: 60px;
    height: 4px;
    background: var(--explore-red);
    margin: 0 auto;
    border-radius: 2px;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

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

.card, .section-divider {
    animation: fadeInUp 0.6s ease-out;
}

/* Utility Classes */
.bg-ink {
    background-color: var(--ink);
}

.text-ink {
    color: var(--ink);
}

.text-primary {
    color: var(--primary);
}

.text-accent {
    color: var(--accent);
}

/* Price Styling */
.price {
    padding: 1rem;
    background-color: var(--base);
    border-radius: 10px;
    margin: 1rem 0;
}

/* Form Label Styling */
.form-label {
    color: var(--ink);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Accordion Body Styling */
.accordion-body {
    background-color: #fff;
    color: var(--ink);
}


/* Package Section Styling */
.package-tabs-wrapper {
    background: linear-gradient(135deg, #fafaf9 0%, #f5f5dc 100%);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.package-tabs-wrapper .nav-pills .nav-link {
    background: white;
    color: var(--ink);
    border: 2px solid transparent;
    border-radius: 15px;
    padding: 12px 24px;
    margin: 0 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.package-tabs-wrapper .nav-pills .nav-link:hover {
    background: var(--explore-red);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(227, 24, 55, 0.3);
}

.package-tabs-wrapper .nav-pills .nav-link.active {
    background: var(--explore-red);
    color: white;
    border-color: var(--explore-red);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(227, 24, 55, 0.4);
}

.package-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.package-card.featured {
    border-color: var(--explore-red);
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(227, 24, 55, 0.2);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--explore-red);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(227, 24, 55, 0.3);
}

.package-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f8f9fa;
}

.package-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 1rem;
}

.package-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.package-price .currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--explore-red);
}

.package-price .amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--explore-red);
    line-height: 1;
}

.package-price .period {
    font-size: 1rem;
    color: #6c757d;
    font-weight: 500;
}

.package-features {
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f8f9fa;
    color: var(--ink);
    font-weight: 500;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li i {
    color: var(--explore-red);
    margin-right: 12px;
    font-size: 1.1rem;
}

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

.package-footer .btn {
    padding: 15px 30px;
    font-weight: 600;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.package-footer .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .package-tabs-wrapper {
        padding: 1.5rem;
    }
    
    .package-tabs-wrapper .nav-pills .nav-link {
        margin: 5px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .package-card {
        padding: 1.5rem;
    }
    
    .package-price .amount {
        font-size: 2.5rem;
    }
}

/* Campus Photo Styles */
.campus-photo-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.campus-photo {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: 12px;
}

.campus-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.campus-photo:hover .campus-photo-img {
    transform: scale(1.05);
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 20px;
    text-align: center;
}

.photo-overlay p {
    margin: 0;
    font-weight: 500;
    font-size: 0.9rem;
}