/* =================================================================
   FONT FACES
   ================================================================= */
@font-face {
    font-family: 'Reifilano';
    src: url('../fonts/Reifilano/Reifilano-Regular.woff2') format('woff2'),
         url('../fonts/Reifilano/Reifilano-Regular.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: 'Reifilano';
    src: url('../fonts/Reifilano/Reifilano-Medium.woff2') format('woff2'),
         url('../fonts/Reifilano/Reifilano-Medium.ttf') format('truetype');
    font-weight: 500;
    font-display: swap;
}
@font-face {
    font-family: 'Reifilano';
    src: url('../fonts/Reifilano/Reifilano-Bold.woff2') format('woff2'),
         url('../fonts/Reifilano/Reifilano-Bold.ttf') format('truetype');
    font-weight: 700;
    font-display: swap;
}
@font-face {
    font-family: 'SF Pro';
    src: url('../fonts/SFPro/SF-Pro-Display-Regular.woff2') format('woff2'),
         url('../fonts/SFPro/SF-Pro-Display-Regular.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: 'SF Pro';
    src: url('../fonts/SFPro/SF-Pro-Display-Medium.woff2') format('woff2'),
         url('../fonts/SFPro/SF-Pro-Display-Medium.ttf') format('truetype');
    font-weight: 500;
    font-display: swap;
}
@font-face {
    font-family: 'SF Pro';
    src: url('../fonts/SFPro/SF-Pro-Display-Semibold.woff2') format('woff2'),
         url('../fonts/SFPro/SF-Pro-Display-Semibold.ttf') format('truetype');
    font-weight: 600;
    font-display: swap;
}
@font-face {
    font-family: 'SF Pro';
    src: url('../fonts/SFPro/SF-Pro-Display-Bold.woff2') format('woff2'),
         url('../fonts/SFPro/SF-Pro-Display-Bold.ttf') format('truetype');
    font-weight: 700;
    font-display: swap;
}

/* =================================================================
   CSS VARIABLES
   ================================================================= */
:root {
    /* Colors */
    --color-primary: #8cc63f;
    --color-primary-hover: #7ab332;
    --color-danger: #ED1C24;
    --color-discount: #CD0000;
    --color-bg-dark: #1b1d1c;
    --color-bg-card: #23262F;
    --color-bg-light: #fcfcfd;
    --color-text-white: #ffffff;
    --color-text-dark: #141416;
    --color-text-gray: #777e90;
    --color-text-light-gray: #c3c3c3;
    --color-border: #e6e8ec;
    --color-input-bg: #F4F5F6;

    /* Fonts */
    --font-main: 'SF Pro', sans-serif;
    --font-serif: 'Reifilano', serif;

    /* Spacing */
    --space-xs: 8px;
    --space-sm: 12px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 40px;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-pill: 999px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* =================================================================
   RESET & BASE
   ================================================================= */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    background-color: #333333;
    color: var(--color-text-white);
    overflow-x: hidden;
    min-height: 100vh;
}

.page-wrapper {
    width: 100%;
    background-color: var(--color-bg-dark);
    position: relative;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* =================================================================
   UTILITY CLASSES
   ================================================================= */
.container {
    max-width: 1272px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Flex utilities */
.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-col {
    display: flex;
    flex-direction: column;
}

/* Grid utilities */
.grid-4-col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

/* Image cover */
.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Spacing utilities */
.mb-100px {
    margin-bottom: 100px;
}

.pb-100px {
    padding-bottom: 100px;
}

.px-sm-20 {
    padding-left: 20px;
    padding-right: 20px;
}

.me-5 {
    margin-right: 20px;
}

/* Text utilities */
.text-dark {
    color: var(--color-bg-card) !important;
}

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

/* Light text/bg utility */
.text-bg-light {
    background-color: var(--color-bg-light) !important;
    color: var(--color-bg-card) !important;
}

.text-bg-light .section-title {
    color: var(--color-bg-card) !important;
}

.reveal-on-scroll {
    opacity: 0;
}

/* =================================================================
   NAVIGATION
   ================================================================= */
.main-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4.4px);
    border-bottom: 1px solid rgba(230, 232, 236, 0.45);
    z-index: 1000;
    display: flex;
    align-items: center;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding: 0 84px;
}

.nav-menus {
    display: flex;
    gap: var(--space-2xl);
}

.nav-logo-group {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
}

.logo-container {
    width: 187px;
    height: 58px;
}

.logo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav-divider {
    width: 1px;
    height: 36px;
    background-color: var(--color-border);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-btn {
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 600;
    transition: all var(--transition-normal);
    border: 1px solid transparent;
}

.nav-btn.active {
    background-color: var(--color-primary);
    color: white;
}

.nav-btn.outline {
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.nav-btn.outline:hover {
    background-color: var(--color-primary);
    color: white;
}

.nav-btn.with-icon {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.lang-selector {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    font-weight: bold;
}

/* Shared dropdown styles */
.lang-dropdown,
.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    padding: var(--space-xs);
    visibility: hidden;
    min-width: 140px;
    z-index: 100;
    margin-top: var(--space-sm);
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition-fast);
    pointer-events: none;
}

.lang-dropdown {
    right: 0;
}

.nav-dropdown-menu {
    left: 0;
    min-width: 220px;
}

/* Dropdown pseudo-elements */
.lang-dropdown::before,
.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    width: 100%;
    height: 12px;
    background: transparent;
}

.lang-dropdown::after {
    content: "";
    background-color: #fff;
    position: absolute;
    top: -6px;
    right: 18px;
    height: 12px;
    width: 12px;
    transform: rotate(45deg);
    z-index: 101;
}

.nav-dropdown-menu::after {
    content: "";
    background-color: #fff;
    position: absolute;
    top: -6px;
    left: 24px;
    height: 12px;
    width: 12px;
    transform: rotate(45deg);
    z-index: 101;
}

/* Show dropdown on hover */
.lang-selector:hover .lang-dropdown,
.nav-item-dropdown:hover .nav-dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Show dropdown when active (JavaScript toggle) */
.lang-dropdown.active,
.nav-dropdown-menu.active {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Dropdown options */
.lang-option,
.nav-dropdown-item {
    padding: 10px 16px;
    color: var(--color-text-dark);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border-radius: var(--space-xs);
    transition: background var(--transition-fast);
    display: block;
    text-decoration: none;
}

.lang-option:hover,
.nav-dropdown-item:hover {
    background: var(--color-input-bg);
}

.nav-dropdown-item.active {
    background: var(--color-primary-light);
    color: var(--color-primary);
    font-weight: 600;
}

.user-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dropdown-toggle {
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-fast);
}

.dropdown-toggle svg {
    display: block;
}

.user-dropdown.active .dropdown-toggle,
.user-dropdown:hover .dropdown-toggle {
    transform: rotate(180deg);
}

.user-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    min-width: 240px;
    padding: 8px 0;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all var(--transition-fast);
    pointer-events: none;
    z-index: 1000;
}

.user-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 14px;
    width: 12px;
    height: 12px;
    background: white;
    transform: rotate(45deg);
    border-radius: 2px;
}

.user-dropdown.active .user-dropdown-menu,
.user-dropdown:hover .user-dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.user-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--color-text-gray);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background var(--transition-fast);
    cursor: pointer;
}

.user-dropdown-item:hover {
    background: var(--color-input-bg);
}

.user-dropdown-item i {
    font-size: 18px;
    width: 20px;
    text-align: center;
    color: var(--color-text-dark);
}

.user-dropdown-item.logout-form {
    padding: 0;
    margin: 0;
}

.user-dropdown-item.logout-form button {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: none;
    border: none;
    color: #EF4444;
    font-size: 14px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.user-dropdown-item.logout-form button:hover {
    background: var(--color-input-bg);
}

.user-dropdown-item.logout-form i {
    color: #EF4444;
}

.nav-item-dropdown {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

/* =================================================================
   SECTION CONTAINERS / HERO
   ================================================================= */
.dark-section-container {
    background-color: var(--color-bg-dark);
    padding-bottom: 80px; /* Space after Discover Weekly */
}

.light-section-container {
    background-color: #FCFCFD;
    padding-top: 80px;
}

.hero-section {
    position: relative;
    height: 612px;
    background-color: var(--color-bg-dark);
    margin-top: 80px;
    overflow: hidden;
}

.hero-section .swiper-slide {
    width: 100% !important;
}

.hero-bg {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(27, 29, 28, 0.3));
}

/* =================================================================
   PAGE BANNER
   ================================================================= */
.page-banner-section {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    margin-top: 80px;
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.64);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-title {
    font-family: var(--font-serif);
    font-size: 72px;
    font-weight: 600;
    color: #FCFCFD;
    text-align: center;
    line-height: 80px;
}

@media (max-width: 768px) {
    .page-banner-section {
        height: 300px;
    }

    .banner-title {
        font-size: 48px;
        line-height: 1.2;
    }
}

/* =================================================================
   TESTIMONIALS
   ================================================================= */
.testimonials-section-container {
    background-color: #f4f5f6;
    padding: 100px 0;
}

.testimonials-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
}

.testimonials-text {
    width: 369px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.testimonials-label {
    color: var(--color-text-gray);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--font-main);
}

.testimonials-heading {
    color: var(--color-bg-card);
    font-size: 48px;
    font-weight: 400;
    line-height: 56px;
    letter-spacing: -0.96px;
    font-family: var(--font-main);
}

.testimonialsSwiper {
    flex: 1;
    min-width: 0;
    overflow: visible !important;
    clip-path: inset(-100px -100vw -100px 0);
}

.testimonial-card {
    background: var(--color-bg-light);
    border: 1px solid var(--color-input-bg);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    height: 252px;
    width: 285px !important;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 20px;
    user-select: none;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #ffbc99;
    overflow: hidden;
    flex-shrink: 0;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.user-name {
    color: var(--color-text-dark);
    font-weight: 600;
    font-size: 16px;
    font-family: var(--font-main);
}

.testimonial-content {
    color: var(--color-text-gray);
    font-size: 16px;
    line-height: 1.3;
    font-family: var(--font-main);
    margin: 0;
}

/* =================================================================
   SEARCH WIDGET
   ================================================================= */
.search-widget {
    position: relative;
    margin: 40px auto 80px;
    width: 100%;
    max-width: 1272px;
    padding: 20px 16px;
    z-index: 20;
    border-radius: 17px;
    background: transparent;
}

.search-widget::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 80%;
    background: rgba(140, 198, 63, 0.20);
    filter: blur(80px);
    z-index: -1;
    border-radius: 50%;
    pointer-events: none;
}

.search-title {
    font-family: var(--font-serif);
    font-size: 32px;
    color: white;
    margin-bottom: 24px;
    padding-left: 8px;
    text-align: center;
}

.search-box {
    background-color: transparent;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    display: flex;
    gap: 24px;
}

.input-group {
    flex: 1;
    background-color: white;
    border-radius: 12px;
    padding: 0 24px;
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 64px;
    position: relative;
}

.input-label {
    color: #9CA3AF;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
    margin-right: 24px;
    white-space: nowrap;
    width: 120px;
    flex-shrink: 0;
}

.input-value {
    color: #141416;
    font-size: 16px;
    font-weight: 700;
    flex: 1;
    width: 100%;
    border: none;
    background-color: transparent;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19 9L12 16L5 9' stroke='%23141416' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 24px;
    cursor: pointer;
    padding-right: 32px;
    font-family: var(--font-main);
}

.input-value:focus {
    outline: none;
}

.search-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--color-primary);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
    flex-shrink: 0;
}

.search-btn:hover {
    background-color: var(--color-primary-hover);
}

.search-btn-text {
    display: none;
}

.side-indicators {
    position: absolute;
    right: 90px !important;
    left: auto !important;
    top: 252px !important;
    bottom: auto !important;
    width: auto !important;
    display: flex;
    flex-direction: column;
    gap: 0;
    z-index: 10;
}

.indicator {
    width: 6px;
    height: 54px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 999px;
    backdrop-filter: blur(4px);
}

.indicator.active {
    background-color: white;
}

/* =================================================================
   GENERIC SECTION STYLES
   ================================================================= */
.section {
    padding: 40px 0;
    position: relative;
}

.section-header {
    margin-bottom: 48px;
}

.section-subtitle {
    color: var(--color-text-gray);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-serif);
    color: white;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
}

.section-title-serif {
    font-family: var(--font-serif);
    font-size: 55px;
}

.section-description {
    color: var(--color-text-gray);
    font-family: var(--font-main);
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    max-width: 70%;
}

/* =================================================================
   GRIDS & CARDS
   ================================================================= */
.discover-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    height: auto;
}

.tour-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px 24px;
    height: auto;
}

.shopping-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px 24px;
    height: auto;
}

.card {
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.card-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    width: 100%;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.tour-img-wrapper {
    width: 100%;
}

.shopping-img-wrapper {
    width: 320px;
}

.card-overlay {
    position: absolute;
    inset: 0;
}

.card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 12px;
    border-radius: 32px;
    color: white;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}

.card-title {
    margin-top: 10px;
    color: var(--color-text-white);
    font-family: var(--font-main);
    font-size: 24px;
    font-weight: 590;
    line-height: 32px;
}

.card-description {
    color: var(--color-text-gray);
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
}

/* =================================================================
   PACKAGES LIST
   ================================================================= */
.packages-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 20px;
}

.package-card {
    background-color: white;
    border-radius: var(--radius-lg);
    padding: 10px;
    display: flex;
    gap: var(--space-xl);
    align-items: stretch;
    border: 1px solid var(--color-input-bg);
}

.package-img-container {
    width: 275px;
    height: 172px;
    border-radius: 14px;
    overflow: hidden;
    flex-shrink: 0;
    align-self: center;
}

.package-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.package-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.package-title {
    color: var(--color-text-dark);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.pills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pill {
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    background-color: var(--color-danger);
    color: white;
}

.price-block {
    text-align: left;
    padding-left: 32px;
    border-left: 1px solid #E6E8EC;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-right: 32px;
}

.separator-vertical {
    border-left: 1px solid #E6E8EC;
    height: 100%;
}

.price-label {
    color: var(--color-text-gray);
    font-size: 12px;
    margin-bottom: 4px;
}

.price-value {
    color: var(--color-primary);
    font-size: 24px;
    font-weight: 700;
}

.price-value span {
    font-weight: 500;
    color: var(--color-text-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-sm) var(--space-lg);
    font-size: 14px;
    color: var(--color-text-gray);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.feature-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -2px;
}

.feature-icon i {
    color: var(--color-primary);
    font-size: 20px;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    color: var(--color-primary);
}

.distance-text {
    color: #BABABA;
    font-family: var(--font-main);
    font-size: 12px;
    font-weight: 400;
    line-height: 150%;
}

.entries-text {
    color: #BABABA;
    font-family: var(--font-main);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin-top: 20px;
    text-align: center;
}

/* =================================================================
   BUTTONS
   ================================================================= */
.btn-outline-white,
.btn-outline-dark,
.btn-outline-dark-grey {
    padding: var(--space-sm) var(--space-xl);
    border-radius: var(--radius-pill);
    font-size: 18px;
    font-weight: 300;
    background: transparent;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: 1px solid;
}

.btn-outline-white {
    border-color: white;
    color: white;
}

.btn-outline-white:hover {
    background-color: white;
    color: black;
}

.btn-outline-dark {
    border-color: var(--color-bg-dark);
    color: var(--color-bg-dark);
}

.btn-outline-dark:hover {
    background-color: var(--color-bg-dark);
    color: white;
}

.btn-outline-dark-grey {
    border-color: #7E7E7E;
    color: #7E7E7E;
}

.btn-outline-dark-grey:hover {
    background-color: #7E7E7E;
    color: white;
}

.center-btn-container {
    display: flex;
    justify-content: center;
    margin-top: 20x;
}

/* =================================================================
   SHOP GRID
   ================================================================= */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product-img {
    height: 320px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background-color: #f3f4f6;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    transform: rotate(-45deg);
    color: #DC2626;
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
    text-align: center;
    z-index: 10;
    background: rgba(255,255,255,0.8);
    padding: 4px;
}

.product-name {
    font-size: 16px;
    font-weight: 500;
}

.product-price {
    color: var(--color-primary);
    font-family: var(--font-main);
    font-size: 20px;
    font-weight: 590;
    line-height: 26px;
}

.old-price {
    text-decoration: line-through;
    color: #9CA3AF;
    font-size: 16px;
    font-weight: 400;
    margin-right: var(--space-xs);
}

.discount-tag {
    color: var(--color-discount);
    font-size: 14px;
    margin-left: var(--space-xs);
}

.product-title {
    color: var(--color-bg-card);
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 510;
    line-height: 24px;
    margin-top: 20px;
}

.product-price-strike {
    color: #C4C4C4;
    font-family: var(--font-main);
    font-size: 20px;
    font-weight: 400;
    line-height: 26px;
    text-decoration-line: line-through;
}

.product-price-discount {
    color: var(--color-discount);
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 510;
    line-height: 20.8px;
}

/* =================================================================
   REACH OUT GRID
   ================================================================= */
.reach-out-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    height: 300px;
}

.reach-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    background-color: #3772ff;
}

.reach-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reach-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5), rgba(0,0,0,0.3) 30%, transparent);
}

.reach-title {
    position: absolute;
    bottom: 40px;
    left: 50px;
    color: var(--color-bg-light);
    font-family: var(--font-main);
    font-size: 32px;
    font-weight: 590;
    line-height: 40px;
}

/* =================================================================
   FLOATING BUTTON
   ================================================================= */
.floating-btn-container {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.floating-btn {
    width: 62px;
    height: 62px;
    background-color: var(--color-primary);
    border-radius: 50%;
    border: none;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-fast);
}

.floating-btn:hover {
    transform: translateY(-2px);
}

.suggestions-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 2px solid #E6E8EC;
    cursor: pointer;
    color: #23262F;
    transition: all 0.3s;
    padding: 0;
}

.suggestions-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.suggestions-btn-prev {
    border: none;
}

.suggestions-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 20px;
}

.suggestions-title {
    margin-bottom: 0;
}

.suggestions-nav {
    display: flex;
    gap: 10px;
}

.suggestion-img-wrapper {
    height: 256px;
}

.suggestion-badge {
    background-color: #734b96;
}

.suggestion-card-title {
    font-size: 24px;
}

.suggestion-price {
    font-weight: 700;
}

.suggestions-swiper-container {
    position: relative;
    clip-path: inset(0 -100vw 0 0);
}

.suggestionsSwiper {
    overflow: visible !important;
    position: relative;
    margin-left: 0 !important;
}

.suggestionsSwiper .swiper-wrapper {
    margin-left: 0 !important;
}

.right-bleed-wrapper {
    width: calc(100% + (100vw - 100%) / 2);
    overflow: hidden;
    margin-right: calc((100vw - 100%) / -2);
}

.suggestionsSwiper .swiper-slide {
    width: 285px;
    transition: width 0.3s ease;
    transform-origin: left center;
}

.suggestionsSwiper .swiper-slide-active {
    width: 460px !important;
    transform-origin: left center;
}

.suggestionsSwiper .card {
    width: 100%;
    transition: width 0.3s ease;
}

/* =================================================================
   MOBILE NAV / OVERLAY
   ================================================================= */
.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: 16px;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #1b1d1c;
    z-index: 2000;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.mobile-menu-overlay.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.mobile-menu-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-nav-link {
    font-size: 18px;
    font-weight: 600;
    color: white;
    text-decoration: none;
}

.mobile-nav-link.active {
    color: var(--color-primary);
}

.mobile-header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-lang-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

/* Mobile submenu */
.mobile-nav-item {
    display: flex;
    flex-direction: column;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.mobile-submenu {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin-top: 0;
    padding-left: 16px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    margin-left: 4px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-sublink {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.mobile-sublink.active {
    color: var(--color-primary);
    font-weight: 600;
}

.mobile-nav-item.active .mobile-submenu {
    max-height: 500px;
    opacity: 1;
    margin-top: 16px;
    gap: 16px;
}

.mobile-nav-item.active .chevron-icon {
    transform: rotate(180deg);
}

.chevron-icon {
    transition: transform 0.3s;
}

/* =================================================================
   SWIPER
   ================================================================= */
.swiper {
    width: 100%;
    height: 100%;
}

.side-indicators .swiper-pagination-bullet {
    width: 6px;
    height: 54px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-pill);
    backdrop-filter: blur(4px);
    opacity: 1;
    display: block;
    margin: var(--space-xs) 0 !important;
    transition: background-color var(--transition-normal);
}

.side-indicators .swiper-pagination-bullet-active {
    background-color: white;
}

/* =================================================================
   CUSTOM FEATURES GRIDS
   ================================================================= */
.features-grid.hajj-features {
    grid-template-columns: repeat(6, 1fr) !important;
    gap: 12px;
}

.features-grid.hajj-features .feature-item:nth-child(-n+3),
.features-grid.hajj-features .feature-item:nth-child(n+4) {
    grid-column: span 2;
}

.features-grid.umrah-features {
    grid-template-columns: repeat(6, 1fr) !important;
    gap: 12px;
}

.features-grid.umrah-features .feature-item:nth-child(1),
.features-grid.umrah-features .feature-item:nth-child(3) {
    grid-column: 1 / span 2;
}

.features-grid.umrah-features .feature-item:nth-child(2),
.features-grid.umrah-features .feature-item:nth-child(4) {
    grid-column: 3 / span 2;
}

/* =================================================================
   FOOTER
   ================================================================= */
.footer-section {
    background-color: black;
    padding-top: 80px;
    padding-bottom: 24px;
    border-top: 1px solid #23262F;
    width: 100%;
    position: relative;
    z-index: 10;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-col {
    gap: 24px;
}

.footer-logo {
    width: 205px;
    height: 64px;
    margin-bottom: 10px;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left;
}

.company-name {
    color: var(--color-text-light-gray);
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
}

.company-address {
    color: var(--color-text-light-gray);
    font-family: var(--font-main);
    font-size: 14px;
    line-height: 1.3;
}

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

.phone-link {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--color-primary);
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 600;
    text-decoration: underline;
}

.operation-hours {
    color: white;
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
}

.operation-hours .label {
    margin-bottom: 4px;
    display: block;
}

.footer-title {
    color: white;
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.4px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a {
    color: var(--color-text-light-gray);
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.footer-links li a:hover {
    color: white;
}

.footer-divider {
    height: 1px;
    background-color: rgba(244, 245, 246, 0.2);
    margin-bottom: 24px;
    width: 100%;
}

.copyright {
    color: white;
    font-family: var(--font-main);
    font-size: 12px;
    font-weight: 300;
    text-align: center;
}

/* =================================================================
   MEDIA QUERIES
   ================================================================= */

/* TABLET AND BELOW (max-width: 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 40px;
    }

    .light-section-container {
        padding-bottom: 60px;
    }

    /* Navigation */
    .nav-links,
    .nav-divider,
    .lang-selector {
        display: none;
    }

    .nav-content {
        padding: 0 30px;
    }

    .nav-actions {
        gap: var(--space-xs);
    }

    .burger-menu {
        display: block;
    }

    /* Testimonials */
    .testimonials-wrapper {
        flex-direction: column;
    }

    .testimonialsSwiper {
        width: 100%;
        overflow: hidden !important;
        clip-path: none;
    }

    .suggestions-header {
        margin-top: 60px;
    }

    .suggestions-nav {
        display: none !important;
    }

    .suggestionsSwiper {
        width: 100%;
        overflow: hidden !important;
    }

    .suggestionsSwiper .swiper-slide {
        width: 240px !important;
    }

    .suggestionsSwiper .swiper-slide-active {
        width: 240px !important;
    }

    /* Reset expand effect styles on mobile */
    .suggestionsSwiper.swiper-expand {
        height: auto;
    }

    .suggestionsSwiper .swiper-expand-wrapper {
        width: 100% !important;
        border-radius: 16px;
    }

    .suggestionsSwiper .swiper-expand-content {
        position: relative;
        width: 100%;
        height: auto;
    }

    .suggestions-section {
        overflow-x: visible;
    }

    .discover-grid,
    .tour-grid,
    .shopping-grid,
    .reach-out-grid {
        grid-template-columns: repeat(2, 1fr);
        height: auto;
    }

    .reach-card {
        height: 120px;
    }

    .reach-title {
        font-size: 20px;
        line-height: 30.259px;
        bottom: 30px;
        left: 40px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .package-card {
        flex-direction: column;
        align-items: stretch;
    }

    .package-img-container {
        width: 100%;
    }

    .tour-img-wrapper,
    .shopping-img-wrapper {
        width: 100%;
    }

    .package-header {
        flex-direction: column;
        gap: 16px;
    }

    .price-block {
        border-left: none;
        padding-left: 0;
        text-align: left;
        border-top: 1px solid #E6E8EC;
        padding-top: 20px;
        padding-bottom: 10px;
        margin-right: 0;
    }

    .hero-title {
        font-size: 80px;
    }

    .search-widget {
        position: relative;
        top: 0;
        margin-top: -50px;
    }

    .search-box {
        flex-direction: column;
        height: auto;
        align-items: center;
        gap: 18px;
    }

    .input-group {
        width: 100%;
        min-height: 64px;
    }

    .search-btn {
        width: auto;
        min-width: 160px;
        height: 56px;
        border-radius: 100px;
        gap: 12px;
        padding: 0 32px;
    }

    .search-btn-text {
        display: block;
        color: white;
        font-size: 18px;
        font-weight: 600;
    }

    .hero-section {
        height: auto;
        margin-top: 0 !important;
        padding-top: 80px;
    }

    .side-indicators {
        display: flex;
        flex-direction: column;
        top: 65% !important;
        bottom: auto !important;
        left: auto !important;
        right: 15px !important;
        transform: translateY(-50%);
        gap: 0;
        z-index: 20;
    }

    .side-indicators .swiper-pagination-bullet {
        height: 25px !important;
    }

    .indicator {
        width: 4px !important;
        height: 32px !important;
        border-radius: 2px;
    }

    .search-widget {
        margin: 20px auto 60px;
    }

    .distance-text {
        display: inline-block;
        margin-left: 8px;
    }

    .section-title,
    .section-description,
    .section-subtitle {
        text-align: center;
    }

    .section-description {
        max-width: 100%;
        padding-left: 10px;
        padding-right: 10px;
    }

    .testimonials-heading {
        font-size: 32px;
        line-height: 40px;
        letter-spacing: -0.32px;
        text-align: center;
    }

    .testimonials-text {
        max-width: 80%;
    }

    .testimonials-label {
        text-align: center;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* DESKTOP ONLY (min-width: 1024px) */
@media (min-width: 1024px) {
    .pb-md-100px {
        padding-bottom: 100px;
    }
}

/* MOBILE (max-width: 768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .section {
        margin-bottom: 80px;
    }

    .section:last-child {
        margin-bottom: 0;
    }

    .light-section-container {
        padding-bottom: 40px;
    }

    /* Reach grid */
    .reach-out-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-section-container {
        margin-bottom: 80px;
    }

    /* Horizontal scroll cards */
    .discover-grid,
    .tour-grid,
    .shopping-grid {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 24px;
        scrollbar-width: none;
        -ms-overflow-style: none;
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .discover-grid::-webkit-scrollbar,
    .tour-grid::-webkit-scrollbar,
    .shopping-grid::-webkit-scrollbar {
        display: none;
    }

    .discover-grid .card {
        width: 285px;
        scroll-snap-align: start;
        flex-shrink: 0;
    }

    .discover-grid .card:first-child,
    .tour-grid .card:first-child,
    .shopping-grid .card:first-child {
        padding-left: 24px;
    }

    .testimonials-container .testimonial-card:first-child {
        margin-left: 24px;
    }

    .tour-grid .card,
    .shopping-grid .card {
        scroll-snap-align: start;
        flex-shrink: 0;
    }

    /* Hajj & Umrah features layout */
    .features-grid.hajj-features,
    .features-grid.umrah-features {
        grid-template-columns: repeat(6, 1fr) !important;
    }

    .features-grid.hajj-features .feature-item:nth-child(n+4),
    .features-grid.umrah-features .feature-item:nth-child(n+3) {
        grid-column: 1 / -1 !important;
    }

    /* Footer layout */
    .footer-content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }

    .footer-col.info-col {
        grid-column: 1 / -1;
        margin-bottom: 24px;
    }

    .footer-section {
        padding-top: 40px;
    }

    .br-sm {
        display: block;
    }

    /* Image wrappers - specific mobile sizes */
    .tour-img-wrapper {
        width: 245px;
    }

    .shopping-img-wrapper {
        width: 200px;
    }
}

/* =================================================================
   SWIPER EXPAND EFFECT
   ================================================================= */
:root {
    --swiper-theme-color: #007aff;
    --swiper-expand-scale: 1;
    --swiper-expand-slide-size: 100%;
    --swiper-expand-slide-border-radius: 32px;
}

.swiper-expand {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 500px; /* Fixed height to prevent collapse */
    /* padding: 20px 0; */
}

.swiper-expand .swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
}

.swiper-expand .swiper-slide {
    flex-shrink: 0;
    height: 100%;
    position: relative;
    transition-property: transform;
    display: block;
}

.swiper-expand-wrapper {
    border-radius: var(--swiper-expand-slide-border-radius);
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    box-sizing: border-box;
    pointer-events: auto;
    margin: 0 auto;
}

.swiper-expand-content {
    position: relative;
    transform: translateZ(0);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.swiper-horizontal .swiper-expand-content {
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
}

.demo-expand-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: var(--swiper-expand-slide-border-radius);
}

.demo-expand-label {
    position: absolute;
    font-size: 24px;
    color: #fff;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50%;
    box-sizing: border-box;
    padding: 24px;
    display: flex;
    flex-direction: column;
    font-weight: 500;
    justify-content: flex-end;
    align-items: center;
    white-space: nowrap;
    text-shadow: 0px 0px 5px rgba(0,0,0,.25);
    background-image: linear-gradient(to bottom,rgba(0,0,0,0),rgba(0,0,0,.2) 50%);
}

.swiper-expand-animate-opacity {
    transition-property: opacity;
}
