/* ============================================
   Global Styles & Utilities
   ============================================ */

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

/* Remove default margins and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Typography */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
        'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.25;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Links */
a {
    transition: color 0.3s ease;
}

a:hover {
    color: #FF9500;
}

/* Buttons */
button, .btn {
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    border-radius: 0.5rem;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
}

button:hover, .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Forms */
input, textarea, select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #E5E7EB;
    border-radius: 0.5rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #FF9500;
    box-shadow: 0 0 0 3px rgba(255, 149, 0, 0.1);
}

/* Containers */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Sections */

section.section-light {
    background-color: #F9FAFB;
}

section.section-dark {
    background-color: #1F2937;
    color: white;
}

/* Utilities */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.sr-only:focus {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal;
}

/* Loading animation */
.spinner {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    border: 3px solid rgba(255, 149, 0, 0.2);
    border-top-color: #FF9500;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Fade in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}

/* Slide animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(2rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in-up {
    animation: slideInUp 0.5s ease-out;
}

/* Responsive images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Cards */
.card {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.card-header {
    padding: 1.5rem;
    border-bottom: 1px solid #E5E7EB;
}

.card-body {
    padding: 1.5rem;
}

.card-footer {
    padding: 1.5rem;
    border-top: 1px solid #E5E7EB;
    background-color: #F9FAFB;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 9999px;
    background-color: #E5E7EB;
    color: #1F2937;
}

.badge-primary {
    background-color: #FF9500;
    color: white;
}

.badge-success {
    background-color: #10B981;
    color: white;
}

.badge-danger {
    background-color: #EF4444;
    color: white;
}

/* Alerts */
.alert {
    padding: 1rem;
    border-radius: 0.5rem;
    border-left: 4px solid;
    margin-bottom: 1rem;
}

.alert-info {
    background-color: #EFF6FF;
    border-color: #3B82F6;
    color: #1E40AF;
}

.alert-success {
    background-color: #ECFDF5;
    border-color: #10B981;
    color: #065F46;
}

.alert-warning {
    background-color: #FFFBEB;
    border-color: #F59E0B;
    color: #92400E;
}

.alert-danger {
    background-color: #FEF2F2;
    border-color: #EF4444;
    color: #991B1B;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #F3F4F6;
}

::-webkit-scrollbar-thumb {
    background: #D1D5DB;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #9CA3AF;
}

/* Print styles */
@media print {
    body {
        background: white;
    }

    a {
        text-decoration: underline;
    }

    button, .btn {
        display: none;
    }
}

/* ============================================
   Home Page Styles
   ============================================ */

* {
    font-family: 'Poppins', sans-serif;
}

.hero-video {
    position: relative;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.swiper-pagination-offers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: unset;
    z-index: 9;
    gap: 8px;
}

.swiper-pagination-bullet {
    height: 10px;
    width: 10px;
    background-color: rgba(170, 170, 170, 0.5);
    opacity: 1;
    position: relative;
    border-radius: 50%;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 30px !important;
    border-radius: 50px !important;
    background-color: #f97316 !important;
}

.testimonials-swiper {
    position: relative;
}

.testimonials-swiper .swiper-slide {
    height: auto;
}

.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

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

.swiper-pagination-testimonials {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    z-index: 9;
    gap: 8px;
    margin-top: 30px;
}

.swiper-pagination-testimonials .swiper-pagination-bullet {
    height: 10px;
    width: 10px;
    background-color: rgba(170, 170, 170, 0.5);
    opacity: 1;
    position: relative;
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.swiper-pagination-testimonials .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 30px !important;
    border-radius: 50px !important;
    background-color: #f97316 !important;
}

.counter-section {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    padding: 80px 80px;
    background-color: #F0F0F0;
    width: 100%;
    box-sizing: border-box;
}

.single-counter {
    display: flex;
    flex-direction: row;
    gap: 20px;
    text-align: left;
    align-items: flex-start;
    justify-content: flex-start;
    flex: 1 1 0;
    position: relative;
    padding: 0 40px;
}

.single-counter.divider::before {
    content: url(/images/icons/home1-counter-divider.svg);
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    line-height: 1;
    display: block;
}

.single-counter:last-child::before {
    display: none;
}

.single-counter .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    min-width: 60px;
    height: 60px;
}

.single-counter .icon svg {
    width: 50px;
    height: 50px;
    color: #f97316;
    fill: #f97316;
    opacity: 1;
}

.single-counter .content {
    color: #110F0F;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.single-counter .content .number {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    gap: 0;
}

.single-counter .content .number h2 {
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    color: #f97316;
    line-height: 1;
}

.single-counter .content .number span {
    font-size: 24px;
    font-weight: 700;
    color: #f97316;
    margin-left: 2px;
    line-height: 1;
}

.single-counter .content span {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .counter-section {
        flex-direction: column;
        padding: 40px 20px;
    }

    .single-counter.divider::before {
        display: none;
    }

    .single-counter .content .number h2 {
        font-size: 36px;
    }

    .single-counter .content .number span {
        font-size: 18px;
    }

    .single-counter .content span {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .counter-section {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 30px 20px;
    }

    .single-counter .content .number h2 {
        font-size: 32px;
    }
}

.destination-card {
    position: relative;
    overflow: visible;
    background: transparent;
    border-radius: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.destination-img {
    display: block;
    overflow: hidden;
    position: relative;
    height: 210px;
    border-radius: 20px;
    background: white;
    margin-bottom: 12px;
    transition: height 0.3s ease;
}

.destination-card:hover .destination-img {
    height: 150px;
}

.destination-img img {
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
    border-radius: 20px;
    object-fit: cover;
    object-position: center center;
}

.destination-card:hover .destination-img img {
    transform: scale(1.05);
}

.destination-content {
    padding: 0;
    text-align: center;
    min-height: 50px;
    transition: transform 0.3s ease, margin-top 0.3s ease;
    margin-top: 0;
}

.destination-content > div:first-child {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 0;
}

.destination-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin: 0;
}

.destination-content .content {
    opacity: 0;
    transition: opacity 0.3s ease;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
}

.destination-card:hover .destination-content .content {
    opacity: 1;
    max-height: 50px;
    visibility: visible;
}

.destination-content .content p {
    font-size: 13px;
    color: #666;
    margin: 6px 0 0 0;
    line-height: 1.3;
}

.nav-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 30px 0 0 0;
    padding: 0;
    list-style: none;
}

.nav-item {
    list-style: none;
}

.nav-link {
    display: inline-block;
    padding: 6px 18px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    color: #333;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.5s ease;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
}

.nav-link:hover {
    color: #111;
    border-color: #ccc;
}

.nav-link.active {
    color: white;
    background-color: #f97316;
    border-color: #f97316;
}

.package-card {
    position: relative;
    padding: 10px;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    background-color: white;
    transition: all 0.3s ease;
}

.package-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.package-img-wrap {
    position: relative;
}

.package-img {
    position: relative;
    overflow: hidden;
    display: block;
    border-radius: 10px;
}

.package-img img {
    border-radius: 10px;
    min-height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease-out;
    width: 100%;
    height: 100%;
}

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

.package-img::after {
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) rotate(-45deg);
    content: "";
    z-index: 1;
}

.batch {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 7px;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
}

.batch span {
    color: white;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    display: block;
    padding: 6px 14px;
    background-color: #FF3927;
    border-radius: 100px;
}

.batch span.yellow-bg {
    background-color: #FFE100;
    color: #1f2937;
}

.batch span.discount {
    background-color: #FF8B00;
}

.package-content {
    padding: 20px 15px 15px;
}

.package-content h5 {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
}

.location-and-time {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.location-and-time .location {
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: 1;
}

.location-and-time .location svg {
    fill: #666;
    transition: 0.5s;
    width: 14px;
    height: 14px;
}

.location-and-time .location a {
    color: #666;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    transition: 0.5s;
    text-decoration: none;
}

.location-and-time .location a:hover {
    color: #f97316;
}

.location-and-time .arrow {
    fill: #666;
    width: 25px;
    height: 6px;
}

.location-and-time span {
    color: #666;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
}

.btn-and-price-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 5px;
}

.btn-and-price-area .primary-btn1 {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 13px 14px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-and-price-area .primary-btn1:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.2);
}

.btn-and-price-area .primary-btn1 span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-and-price-area .primary-btn1 svg {
    width: 10px;
    height: 10px;
}

.price-area h6 {
    color: #666;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    margin-bottom: 10px;
    text-align: end;
}

.price-area span {
    color: #1f2937;
    font-weight: 600;
    font-size: 25px;
    line-height: 1;
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    gap: 5px;
    flex-wrap: wrap;
}

.price-area span del {
    font-size: 18px;
    opacity: 0.5;
}

.package-card .divider {
    fill: #e5e7eb;
    width: 100%;
    height: 6px;
    margin: 15px 0 5px 0;
}

.bottom-area {
    padding-top: 5px;
}

.bottom-area ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 45px;
    position: relative;
}

.bottom-area ul li {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #1f2937;
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    position: relative;
    cursor: pointer;
    transition: color 0.3s ease;
}

.bottom-area ul li:hover {
    color: #f97316;
}

.bottom-area ul li svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    transition: fill 0.3s ease;
}

.bottom-area ul li .info {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #1f2937;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
    margin-bottom: 8px;
}

.bottom-area ul li .info::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #1f2937;
}

.bottom-area ul li .info .tooltip-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bottom-area ul li .info .tooltip-text span {
    font-weight: 700;
}

.bottom-area ul li:hover .info {
    opacity: 1;
    visibility: visible;
}

.bottom-area ul li .info svg {
    width: 12px;
    height: 12px;
    margin-right: 4px;
    display: inline;
}

.bottom-area ul li svg {
    fill: #AAAAAA;
}

.happiness-section {
    background-image: url('https://gofly-wp.egenstheme.com/wp-content/uploads/2025/09/home1-offer-banner-bg.webp');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    min-height: 780px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.happiness-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.happiness-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 100%;
    padding: 0 20px;
}

.happiness-label {
    font-family: 'Courgette', cursive;
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    color: white;
    margin-bottom: 15px;
}

.happiness-title {
    font-family: 'Poppins', sans-serif;
    font-size: 70px;
    font-weight: 600;
    line-height: 1.1;
    color: white;
    margin-bottom: 15px;
    margin-left: auto;
    margin-right: auto;
}

.happiness-author {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    color: white;
    margin-bottom: 8px;
}

.happiness-role {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.happiness-btn {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 13px 30px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.happiness-btn:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.2);
}

@media (max-width: 1024px) {
    .happiness-section {
        background-attachment: scroll;
    }
}

@media (max-width: 768px) {
    .happiness-title {
        font-size: 48px;
        max-width: 100%;
    }

    .happiness-author {
        font-size: 18px;
    }

    .happiness-role {
        font-size: 14px;
    }
}

.services-section {
    background-color: #F2F2FF;
    padding: 0;
}

.services-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 60px 50px;
    border-radius: 20px;
}

.services-title {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.1;
    color: #110F0F;
    text-align: center;
    margin-bottom: 20px;
}

.services-divider {
    width: 100%;
    max-width: 872px;
    height: 6px;
    margin: 0 auto 30px;
    display: block;
}

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

.service-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #F97316;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon svg {
    width: 30px;
    height: 30px;
    color: white;
    fill: white;
}

.service-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #110F0F;
    margin: 0;
    margin-bottom: 8px;
}

.service-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.offer-section {
    background-color: #FEF3E2;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.offer-title {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #110F0F;
    margin-bottom: 20px;
}

.offer-btn {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 13px 30px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.offer-btn:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.2);
}

.offer-btn svg {
    width: 10px;
    height: 10px;
    stroke: white;
    fill: none;
}

@media (max-width: 768px) {
    .services-container {
        padding: 40px 25px;
    }

    .services-title {
        font-size: 24px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .offer-section {
        padding: 30px 20px;
    }

    .offer-title {
        font-size: 20px;
    }
}

.faq-content.show {
    display: block !important;
    max-height: 500px !important;
    overflow: visible !important;
}

.faq-icon.rotate {
    transform: rotate(180deg);
}
