/* 
 * SimpleFly - Abroad Education Consultancy Website
 * Theme: Blue & Gold Premium
 */

:root {
    /* Color Palette */
    --primary-blue: #003366;
    --primary-light: #004d99;
    --accent-gold: #D4AF37;
    --accent-gold-hover: #b4941f;
    --text-dark: #1a1a1a;
    --text-gray: #666666;
    --bg-white: #ffffff;
    --bg-light: #f5f7fa;
    --border-color: #e1e4e8;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;

    /* Spacing */
    --section-padding: 80px 0;
    --container-width: 1200px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding);
}

.bg-light {
    background: linear-gradient(135deg, #f8fafd 0%, #edf2f7 100%);
}

.text-center {
    text-align: center;
}

.section-header {
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--accent-gold);
    margin: 10px auto 0;
}

.section-desc {
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-weight: 500;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--primary-blue);
    font-weight: 600;
}

.btn-primary:hover {
    background-color: var(--accent-gold-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--bg-white);
    color: var(--bg-white);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.btn-outline:hover {
    background-color: var(--primary-blue);
    color: var(--bg-white);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-block {
    display: block;
    width: 100%;
}

.icon-btn i {
    margin-right: 8px;
}

.icon-btn i.fa-arrow-right {
    margin-right: 0;
    margin-left: 8px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.header.scrolled {
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-blue);
}

/* Removed scrolled logo color as it is now default */

.logo .dot {
    color: var(--accent-gold);
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
}

/* Removed scrolled nav-link color as it is now default */

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    padding-bottom: 0;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 200px;
    background-color: var(--bg-white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1001;
    display: flex;
    flex-direction: column;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background-color: var(--bg-light);
    color: var(--primary-blue);
    padding-left: 25px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-blue);
    background: none;
    border: none;
    cursor: pointer;
}

.header.scrolled .mobile-toggle {
    color: var(--text-dark);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--bg-white);
    background: url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') no-repeat center center/cover;
    margin-top: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 51, 102, 0.8), rgba(0, 51, 102, 0.6));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-title .highlight {
    color: var(--accent-gold);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.trust-badges {
    display: flex;
    gap: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
}

.badge i {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.badge span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* About Section */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.experience-badge {
    position: absolute;
    bottom: 25px;
    right: 25px;
    background-color: var(--accent-gold);
    color: var(--primary-blue);
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.experience-badge .years {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.8rem;
    font-weight: 600;
}

.about-features {
    margin: 30px 0;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-weight: 500;
}

.about-features i {
    color: var(--accent-gold);
}

/* Services Section */
.service-selection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.selection-card {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.selection-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
}

.selection-card.active {
    border-color: var(--accent-gold);
    background-color: var(--primary-blue);
    color: var(--bg-white);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 51, 102, 0.2);
}

.selection-card.active h3 {
    color: var(--bg-white);
}

.selection-card.active p {
    color: rgba(255, 255, 255, 0.9);
}

.selection-card.active .icon-box {
    background-color: var(--accent-gold);
    color: var(--primary-blue);
}

.selection-card.active .btn-outline {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.selection-card.active .btn-outline:hover {
    background-color: var(--accent-gold);
    color: var(--primary-blue);
}

.selection-card .icon-box {
    width: 80px;
    height: 80px;
    background-color: var(--bg-light);
    color: var(--primary-blue);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.selection-card:hover .icon-box {
    background-color: var(--primary-blue);
    color: var(--bg-white);
}

.selection-card h3 {
    margin-bottom: 15px;
    color: var(--primary-blue);
    font-size: 1.5rem;
}

.selection-card p {
    color: var(--text-gray);
    margin-bottom: 25px;
}

.services-grid-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    animation: fadeInUp 0.5s ease-out;
}

.service-card {
    background-color: var(--bg-white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-bottom-color: var(--accent-gold);
}

.service-card .icon-box {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 51, 102, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--primary-blue);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .icon-box {
    background-color: var(--primary-blue);
    color: var(--bg-white);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.service-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Destinations Section */
.scroll-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.destinations-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
    padding-top: 10px;
    /* Space for hover */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE 10+ */
}

.destinations-grid::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari/Webkit */
}

.destination-card {
    min-width: 300px;
    /* Ensure cards don't shrink */
    max-width: 320px;
    /* Optional: cap width */
    background-color: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.3s ease;
    scroll-snap-align: start;
    flex-shrink: 0;
    /* Enable horizontal layout */
}

.destination-card:hover {
    transform: translateY(-5px);
}

.card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Scroll Buttons */
.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background-color: var(--bg-white);
    color: var(--primary-blue);
    border: none;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.scroll-btn:hover {
    background-color: var(--primary-blue);
    color: var(--bg-white);
}

.left-btn {
    left: -20px;
}

.right-btn {
    right: -20px;
}

@media (max-width: 768px) {
    .scroll-btn {
        display: none;
        /* Hide scroll buttons on mobile, use touch scroll */
    }

    .scroll-container {
        padding: 0 10px;
    }
}

/* --- Destination Modal (Details) --- */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    overflow-y: auto;
}

.modal-content {
    background-color: var(--bg-white);
    margin: 50px auto;
    width: 90%;
    max-width: 900px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: zoomIn 0.3s ease-out;
    overflow: hidden;
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 35px;
    color: var(--bg-white);
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s;
    background: rgba(0, 0, 0, 0.3);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-modal:hover {
    color: var(--accent-gold);
    background: rgba(0, 0, 0, 0.5);
}

.modal-body {
    padding: 0;
}

.modal-header-img {
    height: 350px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 40px;
}

.modal-header-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 51, 102, 0.9), transparent);
}

.modal-header-img h2 {
    position: relative;
    color: #fff;
    font-size: 3rem;
    margin: 0;
}

.modal-info-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    padding: 40px;
}

.modal-main-content h3 {
    color: var(--primary-blue);
    margin-bottom: 20px;
    border-left: 4px solid var(--accent-gold);
    padding-left: 15px;
}

.modal-main-content p {
    line-height: 1.8;
    margin-bottom: 25px;
}

.info-list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.info-item {
    background: var(--bg-light);
    padding: 15px;
    border-radius: 8px;
}

.info-item label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.info-item span {
    font-weight: 600;
    color: var(--primary-blue);
}

.modal-sidebar {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
}

.modal-sidebar h4 {
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.sidebar-list {
    list-style: none;
    padding: 0;
}

.sidebar-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.sidebar-list i {
    color: var(--accent-gold);
}

@media (max-width: 850px) {
    .modal-info-grid {
        grid-template-columns: 1fr;
    }

    .modal-header-img {
        height: 250px;
        padding: 20px;
    }

    .modal-header-img h2 {
        font-size: 2rem;
    }
}

/* --- About Details Modal Specific --- */
.about-modal-content {
    max-width: 1000px;
    background: linear-gradient(to bottom, #ffffff, #f9fbff);
}

.about-modal-header {
    background: var(--primary-blue);
    color: var(--bg-white);
    padding: 60px 40px;
    text-align: center;
    position: relative;
}

.about-modal-header h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 10px;
}

.about-modal-header p {
    font-size: 1.2rem;
    color: var(--accent-gold);
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 50px 40px;
}

.about-modal-section {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 51, 102, 0.05);
    border: 1px solid rgba(0, 51, 102, 0.05);
    transition: transform 0.3s ease;
}

.about-modal-section:hover {
    transform: translateY(-5px);
}

.section-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-light);
    color: var(--primary-blue);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 25px;
}

.about-modal-section h3 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.modal-feature-list {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

.modal-feature-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.modal-feature-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--accent-gold);
    font-size: 1.1rem;
}

.modal-feature-list li strong {
    color: var(--primary-blue);
    display: block;
    margin-bottom: 2px;
}

.about-modal-footer {
    padding: 40px;
    text-align: center;
    background: var(--bg-light);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.about-modal-footer p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--text-gray);
}

.about-close-modal {
    background: rgba(255, 255, 255, 0.2) !important;
}

@media (max-width: 900px) {
    .about-modal-grid {
        grid-template-columns: 1fr;
    }

    .about-modal-header h2 {
        font-size: 2.5rem;
    }
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.card-overlay h3 {
    color: var(--bg-white);
    font-family: var(--font-heading);
    font-size: 1.5rem;
}

.card-content {
    padding: 25px;
}

.card-content h4 {
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.card-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.card-content li {
    list-style-type: disc;
    color: var(--text-gray);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

/* Custom Places List */
.places-list {
    padding-left: 0 !important;
}

.places-list li {
    list-style-type: none !important;
    color: var(--text-gray);
    margin-bottom: 8px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.places-list i {
    color: var(--accent-gold);
    font-size: 0.8rem;
}

.visa-info-sm {
    font-size: 0.85rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 15px;
    border-top: 1px solid #eee;
    padding-top: 10px;
}

/* Education Details in Cards */
.edu-details {
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.edu-details p {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 8px;
    line-height: 1.4;
}

.edu-details strong {
    color: var(--primary-blue);
    display: block;
    margin-bottom: 3px;
}

.edu-details i {
    color: var(--accent-gold);
    margin-right: 5px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.student-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.student-profile img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.student-info h4 {
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.student-info p {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.rating {
    color: var(--accent-gold);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.review {
    font-style: italic;
    color: var(--text-dark);
}

/* Process Section */
.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50px;
    width: 2px;
    height: 100%;
    background-color: var(--primary-blue);
    opacity: 0.2;
}

.process-step {
    position: relative;
    padding-left: 100px;
    margin-bottom: 50px;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-icon {
    position: absolute;
    left: 25px;
    top: 0;
    width: 50px;
    height: 50px;
    background-color: var(--primary-blue);
    color: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    border: 4px solid var(--bg-white);
    box-shadow: 0 0 0 2px var(--primary-blue);
}

.process-step h3 {
    margin-bottom: 10px;
    color: var(--primary-blue);
}

/* Contact / Lead Capture */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background-color: var(--primary-blue);
    padding: 60px;
    border-radius: 20px;
    color: var(--bg-white);
}

.contact-text .contact-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-subtitle {
    opacity: 0.9;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.info-item i {
    color: var(--accent-gold);
    width: 20px;
}

.social-links-large {
    margin-top: 40px;
    display: flex;
    gap: 20px;
}

.social-links-large a {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links-large a:hover {
    background-color: var(--accent-gold);
    color: var(--primary-blue);
}

.contact-form-wrapper {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 10px;
    color: var(--text-dark);
}

.contact-form-wrapper h3 {
    color: var(--primary-blue);
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary-blue);
    font-size: 0.9rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

input,
select,
textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.form-note {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-top: 15px;
    text-align: center;
}

/* FAQ Section */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-white);
    border-radius: 5px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--primary-blue);
    font-weight: 600;
}

.faq-question i {
    color: var(--accent-gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    padding-bottom: 20px;
}

/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background-color: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.blog-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent-gold);
    color: var(--primary-blue);
    padding: 5px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
}

.blog-content {
    padding: 25px;
}

.blog-content h4 {
    margin-bottom: 15px;
    color: var(--primary-blue);
    line-height: 1.4;
}

.read-more {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background-color: #002244;
    color: #e6e6e6;
    padding-top: 80px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 40px;
    padding-bottom: 60px;
}

.footer-col h3 {
    color: var(--bg-white);
    font-family: var(--font-heading);
    margin-bottom: 20px;
}

.footer-col h4 {
    color: var(--accent-gold);
    margin-bottom: 25px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-col p {
    margin-bottom: 15px;
    display: flex;
    gap: 10px;
    font-size: 0.95rem;
}

.footer-bottom {
    background-color: #001a33;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #999;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 2000;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.77, 0.2, 0.05, 1);
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    left: 0;
}

.close-menu {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--primary-blue);
    cursor: pointer;
    margin-bottom: 30px;
    display: block;
    margin-left: auto;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-list li a {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
    display: block;
    padding: 5px 0;
}

.mobile-nav-list li a:hover {
    color: var(--accent-gold);
}

.mobile-nav-list .btn {
    margin-top: 20px;
    text-align: center;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        padding: 40px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .header-actions .btn {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .about-container {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .destinations-grid {
        padding-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .trust-badges {
        flex-direction: column;
        gap: 20px;
    }
}

/* Highlight Pulse Effect (Premium Gold) */
.highlight-pulse {
    animation: highlightPulse 2s ease-out;
    border-radius: 12px;
}

@keyframes highlightPulse {
    0% {
        background-color: rgba(212, 175, 55, 0.2);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(212, 175, 55, 0);
    }

    100% {
        background-color: transparent;
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}
/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--accent-gold);
    color: var(--primary-blue);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--primary-blue);
    color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.back-to-top:active {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 90px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

