/* Globe Vista Travel - Exact Match Design Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Montserrat:wght@400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root {
    --primary-navy: #0f223d;
    --dark-navy: #0a172a;
    --turquoise: #30d5c8;
    --turquoise-hover: #26b5aa;
    --accent-orange: #ec6838;
    --accent-orange-hover: #d95325;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --font-heading: 'Montserrat', sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', sans-serif;
    --radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box !important;
}

html {
    overflow-x: hidden !important;
    max-width: 100% !important;
    width: 100% !important;
}

body {
    font-family: var(--font-body);
    background-color: #ffffff;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden !important;
    max-width: 100% !important;
    width: 100% !important;
    position: relative !important;
}

img, video, iframe {
    max-width: 100% !important;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1560px;
    width: 95%;
    margin: 0 auto;
    padding: 0 24px;
}

/* STICKY LEFT SOCIAL BAR */
.sticky-social-bar {
    position: fixed;
    left: 0;
    top: 45%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
}
.sticky-social-item {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
    transition: var(--transition);
}
.sticky-social-item.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.sticky-social-item.facebook {
    background: #3b5998;
}
.sticky-social-item.whatsapp {
    background: #25d366;
}
.sticky-social-item:hover {
    width: 50px;
    padding-left: 5px;
}

/* TOP CONTACT & CURRENCY BAR (DARK NAVY) */
.top-bar-navy {
    background-color: #07101d;
    color: #cbd5e1;
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar-left {
    display: flex;
    align-items: center;
    gap: 25px;
}
.top-bar-left a {
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}
.top-bar-left a i {
    color: var(--accent-orange);
}
.top-bar-left a:hover {
    color: #ffffff;
}
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}
.currency-pill {
    background: rgba(255, 255, 255, 0.08);
    padding: 4px 14px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.8rem;
    color: #94a3b8;
}

/* STYLISH LANGUAGE DROPDOWN WITH FLAGS */
.lang-dropdown-wrap {
    position: relative;
    display: inline-block;
}
.lang-dropdown-btn {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.825rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: all 0.2s ease;
}
.lang-dropdown-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}
.lang-dropdown-btn img {
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
    object-fit: cover;
}
.lang-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 2px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    border: 1px solid #e2e8f0;
    min-width: 165px;
    padding: 6px 0;
    z-index: 999999;
    display: none;
}
/* Invisible hover bridge to prevent dropdown disappearing on mouse move */
.lang-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    width: 100%;
    height: 14px;
    background: transparent;
}
.lang-dropdown-wrap:hover .lang-dropdown-menu,
.lang-dropdown-menu.show {
    display: block !important;
}
.lang-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px;
    color: #1e293b;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s ease;
    border-bottom: 1px solid #f1f5f9;
}
.lang-dropdown-menu a:last-child {
    border-bottom: none;
}
.lang-dropdown-menu a:hover {
    background: #f8fafc;
    color: var(--accent);
}
.lang-dropdown-menu img {
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    object-fit: cover;
}

/* HIDE DEFAULT GOOGLE TRANSLATE BANNER OVERLAYS */
body {
    top: 0 !important;
    position: relative !important;
}
.goog-te-banner-frame,
.skiptranslate,
#google_translate_element {
    display: none !important;
}
.goog-te-gadget-icon {
    display: none !important;
}
.goog-tooltip {
    display: none !important;
}
.goog-tooltip:hover {
    display: none !important;
}
.goog-text-highlight {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.admin-login-link {
    color: #cbd5e1;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
}
.admin-login-link:hover {
    color: var(--turquoise);
}

/* MAIN DARK NAVY HEADER (EXACT MATCH SCREENSHOT) */
.main-header-navy {
    background-color: var(--primary-navy);
    padding: 16px 0;
    position: relative;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo-box {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-circle-icon {
    width: 44px;
    height: 44px;
    background-color: var(--accent-orange);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 4px 12px rgba(236, 104, 56, 0.4);
}
.logo-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 1px;
}
.logo-title span {
    color: var(--accent-orange);
}
.nav-menu-navy {
    display: flex;
    align-items: center;
    gap: 28px;
}
.nav-link-item {
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    position: relative;
    padding: 6px 0;
    transition: var(--transition);
}
.nav-link-item:hover, .nav-link-item.active {
    color: #ffffff;
}
.nav-link-item.active::after, .nav-link-item:hover::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--accent-orange);
    border-radius: 2px;
}

.btn-orange-cta {
    background-color: var(--accent-orange);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(236, 104, 56, 0.35);
    transition: var(--transition);
}
.btn-orange-cta:hover {
    background-color: var(--accent-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(236, 104, 56, 0.5);
}
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
}

/* HERO SECTION WITH 1080P ALANYA DRONE VIDEO BACKGROUND & OVERLAY CONTENT */
.hero-video-wrap {
    position: relative;
    width: 100%;
    height: 78vh;
    min-height: 540px;
    overflow: hidden;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-video-element {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}
.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 23, 42, 0.35);
    z-index: 2;
}
.hero-content-center {
    position: relative;
    z-index: 5;
    text-align: center;
    color: #ffffff;
    max-width: 900px;
    padding: 0 20px;
    margin-top: -30px;
}
.hero-badge-pill {
    display: inline-block;
    border: 1px solid var(--accent-orange);
    color: #ffffff;
    padding: 6px 24px;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    background: rgba(0,0,0,0.25);
    backdrop-filter: blur(4px);
}
.hero-headline-serif {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.hero-subtitle-text {
    font-size: 1.15rem;
    font-weight: 400;
    color: #e2e8f0;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* TURQUOISE SEARCH BAR WIDGET (#30d5c8) */
.search-widget-wrapper {
    position: relative;
    z-index: 20;
    margin-top: -60px;
    padding: 0 20px;
}
.search-widget-card {
    background-color: var(--turquoise);
    border-radius: 20px;
    padding: 24px 30px;
    box-shadow: 0 15px 35px rgba(48, 213, 200, 0.25);
}
.search-widget-form {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 160px;
    gap: 20px;
    align-items: end;
}
.search-field-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.search-field-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.search-input {
    width: 100%;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    background-color: #ffffff;
}
.search-input:focus {
    outline: 2px solid var(--primary-navy);
}
.btn-search-navy {
    background-color: var(--primary-navy);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 13px 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-search-navy:hover {
    background-color: #050d18;
    box-shadow: 0 4px 15px rgba(0, 0, 128, 0.4);
}

/* SECTION STYLING (PURE WHITE) */
.section {
    padding: 70px 0;
    background-color: #ffffff;
}
.section-title-wrap {
    text-align: center;
    margin-bottom: 45px;
}
.section-main-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-navy);
}
.section-main-heading span {
    color: var(--turquoise);
}

/* CATEGORY DESTINATION CARDS */
.dest-grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}
.dest-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
@media (max-width: 992px) {
    .dest-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .dest-grid-3 {
        grid-template-columns: 1fr;
    }
}
.dest-card {
    position: relative;
    height: 320px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.dest-card:hover img {
    transform: scale(1.08);
}
.dest-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(15,34,61,0.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    color: #ffffff;
}
.dest-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
}
.dest-card-sub {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--turquoise);
}
.dest-card-badge-count {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(8px);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.825rem;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 2;
}
.dest-card-badge-count i {
    color: var(--accent-orange);
}

/* TOUR CARDS GRID */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
}
.tour-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    border: 1px solid #e2e8f0;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    border-color: var(--turquoise);
}
.tour-thumb-link {
    display: block;
    cursor: pointer;
    text-decoration: none;
}
.tour-thumb {
    position: relative;
    height: 230px;
    overflow: hidden;
    cursor: pointer;
}
.tour-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    cursor: pointer;
}
.tour-thumb-link:hover .tour-thumb img,
.tour-card:hover .tour-thumb img {
    transform: scale(1.08);
}
.badge-featured {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--turquoise);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
}
.tour-price-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(15, 34, 61, 0.9);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 6px 14px;
    border-radius: 30px;
    display: flex;
    align-items: baseline;
    gap: 6px;
}
.price-old {
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 0.85rem;
}
.price-new {
    color: #eab308;
    font-weight: 800;
    font-size: 1.15rem;
}
.tour-content {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.tour-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}
.tour-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}
.tour-meta i {
    color: var(--turquoise);
}
.tour-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 10px;
}
.tour-desc {
    font-size: 0.925rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.tour-footer {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.btn-card {
    background: #f8fafc;
    color: var(--primary-navy);
    border: 1px solid #e2e8f0;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.btn-card:hover {
    background: var(--turquoise);
    border-color: var(--turquoise);
    color: #fff;
}

/* FLOATING WHATSAPP BUTTON */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}

/* FOOTER REMAINS DARK NAVY */
.site-footer {
    background-color: #0a172a;
    color: #94a3b8;
    padding: 70px 0 25px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}
.footer-col h4 {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a:hover {
    color: var(--turquoise);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 25px;
    text-align: center;
    font-size: 0.875rem;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .top-bar-container {
        flex-direction: column;
        gap: 8px;
    }
    .search-widget-form {
        grid-template-columns: 1fr 1fr;
    }
    .hero-headline-serif {
        font-size: 2.8rem;
    }
}
@media (max-width: 768px) {
    .nav-menu-navy {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #0f223d;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }
    .nav-menu-navy.active {
        display: flex;
    }
    .mobile-toggle {
        display: block;
    }
    .search-widget-form {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   LUXURY & MODERN TOUR DETAIL PAGE OVERHAUL (ELEGANT DESIGN)
   ========================================================================== */
.luxury-detail-wrapper {
    background-color: #f8fafc;
    padding: 30px 0 90px;
}

/* BREADCRUMB */
.luxury-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 20px;
}
.luxury-breadcrumb a {
    color: #475569;
    font-weight: 600;
    transition: var(--transition);
}
.luxury-breadcrumb a:hover {
    color: var(--turquoise);
}
.luxury-breadcrumb .separator {
    font-size: 0.7rem;
    color: #cbd5e1;
}
.luxury-breadcrumb span {
    color: var(--primary-navy);
    font-weight: 700;
}

/* TOUR HEADER BLOCK */
.tour-header-block {
    margin-bottom: 30px;
}
.tour-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
}
.pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.825rem;
    font-weight: 700;
}
.pill-badge.category {
    background: #e0f2fe;
    color: #0369a1;
}
.pill-badge.rating {
    background: #fef9c3;
    color: #a16207;
}
.pill-badge.guarantee {
    background: #dcfce7;
    color: #15803d;
}

.tour-title-serif {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-navy);
    line-height: 1.2;
    margin-bottom: 12px;
}
.tour-meta-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    font-size: 0.975rem;
    color: #64748b;
    font-weight: 500;
}
.tour-meta-inline i {
    color: var(--turquoise);
    margin-right: 6px;
}

/* 5-IMAGE GALLERY GRID */
.gallery-grid-wrapper {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 14px;
    height: 520px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 45px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}
.gallery-main-img {
    position: relative;
    height: 100%;
    overflow: hidden;
}
.gallery-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.5s ease;
}
.gallery-main-img:hover img {
    transform: scale(1.03);
}
.gallery-pill-btn {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 0.875rem;
    color: var(--primary-navy);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}
.gallery-pill-btn:hover {
    background: #ffffff;
    transform: translateY(-2px);
}
.gallery-sub-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 14px;
    height: 100%;
}
.gallery-sub-item {
    overflow: hidden;
    height: 100%;
    border-radius: 4px;
}
.gallery-sub-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.4s ease;
}
.gallery-sub-item img:hover {
    transform: scale(1.08);
}

/* LAYOUT CONTAINER */
.tour-layout-container {
    display: grid;
    grid-template-columns: 1fr 410px;
    gap: 45px;
}

/* QUICK STATS GRID (4 BADGES) */
.quick-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 35px;
}
.stat-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 18px 16px;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}
.stat-icon {
    width: 44px;
    height: 44px;
    background: rgba(48, 213, 200, 0.12);
    color: var(--turquoise);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}
.stat-text label {
    display: block;
    font-size: 0.775rem;
    color: #64748b;
    text-transform: uppercase;
    font-weight: 700;
}
.stat-text strong {
    font-size: 0.95rem;
    color: var(--primary-navy);
    font-weight: 800;
}

/* LUXURY CARD CONTAINERS */
.luxury-card-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
    margin-bottom: 35px;
}
.detail-section-title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.detail-section-title i {
    color: var(--turquoise);
}
.tour-description-text {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #334155;
}

/* HIGHLIGHTS GRID */
.luxury-highlights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    list-style: none;
}
.luxury-highlights-grid li {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 0.95rem;
    color: #166534;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}
.luxury-highlights-grid li i {
    color: #16a34a;
    font-size: 1.1rem;
}

/* INCLUDES / EXCLUDES */
.inc-exc-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 35px;
}
.inc-card, .exc-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 28px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
}
.inc-title, .exc-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.inc-list li, .exc-list li {
    font-size: 0.95rem;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #334155;
}
.inc-list i { color: #16a34a; font-size: 1.1rem; }
.exc-list i { color: #dc2626; font-size: 1.1rem; }

/* ITINERARY TIMELINE */
.itinerary-timeline {
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: relative;
    padding-left: 20px;
}
.itinerary-timeline::before {
    content: '';
    position: absolute;
    left: 38px;
    top: 20px;
    bottom: 20px;
    width: 3px;
    background: #e2e8f0;
}
.itinerary-item {
    display: flex;
    gap: 20px;
    position: relative;
    z-index: 2;
}
.itinerary-node {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #0f223d 0%, #30d5c8 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(48, 213, 200, 0.3);
}
.itinerary-body {
    background: #f8fafc;
    border-radius: 14px;
    padding: 20px;
    border: 1px solid #e2e8f0;
    flex-grow: 1;
}
.itinerary-time-pill {
    display: inline-block;
    background: #e0f2fe;
    color: #0369a1;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
}
.itinerary-body h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 6px;
}
.itinerary-body p {
    font-size: 0.95rem;
    color: #475569;
}

/* CANCELLATION BLOCK */
.cancellation-block {
    background: #f0f9ff;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid #bae6fd;
    margin-bottom: 35px;
}
.cancellation-header {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    color: #0284c7;
    margin-bottom: 15px;
}
.cancellation-list {
    padding-left: 20px;
    font-size: 0.975rem;
    color: #0369a1;
    line-height: 1.85;
}

/* RIGHT STICKY BOOKING WIDGET */
.booking-card-widget {
    background: #ffffff;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 20px 45px rgba(15, 34, 61, 0.08);
    border: 1px solid #e2e8f0;
    position: sticky;
    top: 35px;
}
.booking-card-header {
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 20px;
    margin-bottom: 22px;
}
.booking-label-small {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.price-display-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-top: 6px;
}
.price-from-text {
    font-size: 0.95rem;
    color: #64748b;
}
.price-main-amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-navy);
}

.booking-field-group {
    margin-bottom: 18px;
}
.booking-field-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 8px;
}
.booking-field-group label i {
    color: var(--turquoise);
    margin-right: 6px;
}
.booking-input-control {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #cbd5e1;
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition);
}
.booking-input-control:focus {
    outline: none;
    border-color: var(--turquoise);
    box-shadow: 0 0 0 4px rgba(48, 213, 200, 0.15);
}

.guest-counter-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}
.guest-counter-info strong {
    font-size: 0.95rem;
    color: var(--primary-navy);
    display: block;
}
.guest-counter-info span {
    font-size: 0.825rem;
    color: #64748b;
}
.guest-counter-control {
    display: flex;
    align-items: center;
    border: 1.5px solid #cbd5e1;
    border-radius: 10px;
    overflow: hidden;
    background: #ffffff;
}
.guest-counter-control button {
    width: 36px;
    height: 36px;
    background: #f8fafc;
    border: none;
    font-weight: 800;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--primary-navy);
    transition: var(--transition);
}
.guest-counter-control button:hover {
    background: var(--turquoise);
    color: #ffffff;
}
.guest-counter-control input {
    width: 40px;
    text-align: center;
    border: none;
    font-weight: 800;
    font-size: 1rem;
    color: var(--primary-navy);
}

.payment-method-box {
    background: #f0fdf4;
    border: 1.5px solid #86efac;
    border-radius: 14px;
    padding: 16px;
    margin: 22px 0;
}
.payment-option-header {
    display: flex;
    align-items: center;
    gap: 10px;
}
.payment-radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.95rem;
    color: #14532d;
}
.payment-badge-desc {
    font-size: 0.85rem;
    color: #15803d;
    margin-top: 8px;
    line-height: 1.5;
}

.total-price-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: #f8fafc;
    border-radius: 12px;
    margin-bottom: 22px;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary-navy);
    border: 1px solid #e2e8f0;
}
.total-price-bar strong {
    color: var(--accent-orange);
    font-size: 1.6rem;
    font-weight: 900;
}

.btn-proceed-booking {
    width: 100%;
    background: linear-gradient(135deg, #0f223d 0%, #1e40af 100%);
    color: #ffffff;
    border: none;
    padding: 16px;
    border-radius: 14px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(15, 34, 61, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.btn-proceed-booking:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(15, 34, 61, 0.35);
    background: linear-gradient(135deg, #1e40af 0%, #0f223d 100%);
}

.booking-footer-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 18px;
}
.btn-whatsapp-direct {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25d366;
    color: #ffffff;
    padding: 12px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
    transition: var(--transition);
}
.btn-whatsapp-direct:hover {
    background: #1eb954;
    color: #ffffff;
}
.btn-wishlist-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    padding: 10px;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 700;
    color: #475569;
    cursor: pointer;
    transition: var(--transition);
}
.btn-wishlist-pill:hover {
    background: #f8fafc;
    border-color: #94a3b8;
}

@media (max-width: 992px) {
    .tour-layout-container {
        grid-template-columns: 1fr;
    }
    .gallery-grid-wrapper {
        height: 360px;
    }
    .quick-stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    .luxury-highlights-grid, .inc-exc-container {
        grid-template-columns: 1fr;
    }
    .tour-title-serif {
        font-size: 2rem;
    }
}

.destination-hero-section {
    position: relative;
    padding: 100px 0 80px;
    text-align: center;
    color: #ffffff;
}
.destination-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 34, 61, 0.6) 0%, rgba(15, 34, 61, 0.85) 100%);
}
.destination-hero-content {
    position: relative;
    z-index: 2;
}
.destination-sub-label {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.3rem;
    color: #cbd5e1;
    margin-bottom: 5px;
}
.destination-hero-title {
    font-family: var(--font-serif);
    font-size: 3.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}
.destination-hero-desc {
    max-width: 680px;
    margin: 0 auto;
    font-size: 1.05rem;
    color: #e2e8f0;
}

.tours-grid-destination {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
}
.dest-tour-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    transition: var(--transition);
}
.dest-tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}
.dest-tour-img-wrap {
    position: relative;
    height: 240px;
    overflow: hidden;
}
.dest-tour-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.dest-tour-card:hover .dest-tour-img-wrap img {
    transform: scale(1.06);
}
.dest-tour-info {
    padding: 20px;
}
.dest-tour-title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 15px;
}
.dest-tour-title a:hover {
    color: var(--turquoise);
}
.dest-tour-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #f1f5f9;
}
.dest-tour-duration {
    font-size: 0.875rem;
    color: var(--turquoise);
    font-weight: 600;
}
.dest-tour-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.dest-price-old {
    font-size: 0.9rem;
    color: #94a3b8;
    text-decoration: line-through;
}
.dest-price-new {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--turquoise);
}

/* ==========================================================================
   TOUR DETAIL PAGE STYLES (5-GRID GALLERY & INTERACTIVE BOOKING WIDGET)
   ========================================================================== */
.tour-header-block {
    margin-bottom: 25px;
}
.tour-title-serif {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 8px;
}
.tour-meta-inline {
    display: flex;
    gap: 25px;
    font-size: 0.95rem;
    color: var(--text-muted);
}
.tour-meta-inline i {
    color: var(--turquoise);
}

/* 5-IMAGE GALLERY GRID */
.gallery-grid-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 12px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 40px;
    height: 480px;
}
.gallery-main-img {
    position: relative;
    height: 100%;
}
.gallery-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}
.gallery-pill-btn {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 6px;
}
.gallery-sub-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
    height: 100%;
}
.gallery-sub-item {
    overflow: hidden;
    height: 100%;
}
.gallery-sub-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.gallery-sub-item img:hover {
    transform: scale(1.05);
}

/* LAYOUT CONTAINER */
.tour-layout-container {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
}
.detail-summary-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 24px;
    border: 1px solid #e2e8f0;
    margin-bottom: 30px;
}
.detail-section-title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--primary-navy);
    margin-bottom: 18px;
}
.detail-info-list li {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #f1f5f9;
}
.detail-info-list li:last-child {
    border-bottom: none;
}
.tour-description-block {
    font-size: 1.025rem;
    line-height: 1.8;
    color: #334155;
    margin-bottom: 35px;
}

/* HIGHLIGHTS & INC/EXC */
.highlights-list {
    margin-bottom: 35px;
}
.highlights-list li {
    position: relative;
    padding-left: 22px;
    font-size: 0.95rem;
    margin-bottom: 10px;
    color: #334155;
}
.highlights-list li::before {
    content: '•';
    position: absolute;
    left: 4px;
    color: var(--primary-navy);
    font-size: 1.3rem;
    top: -2px;
}

.inc-exc-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}
.inc-card, .exc-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 24px;
    border: 1px solid #e2e8f0;
}
.inc-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 18px;
}
.exc-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 18px;
}
.inc-list li, .exc-list li {
    font-size: 0.9rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.inc-list i { color: #16a34a; }
.exc-list i { color: #dc2626; }

.cancellation-block {
    background: #f8fafc;
    border-radius: 14px;
    padding: 25px;
    border: 1px solid #e2e8f0;
    margin-top: 40px;
}
.cancellation-list {
    padding-left: 20px;
    font-size: 0.925rem;
    color: #475569;
    line-height: 1.8;
}

/* RIGHT SIDEBAR BOOKING WIDGET */
.booking-card-widget {
    background: #ffffff;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
    position: sticky;
    top: 30px;
}
.booking-card-header {
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 18px;
    margin-bottom: 20px;
}
.booking-label-small {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}
.price-display-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 6px;
}
.price-from-text {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 600;
}
.price-main-amount {
    font-size: clamp(1.6rem, 2.2vw, 2.3rem);
    font-weight: 900;
    color: var(--turquoise);
    white-space: nowrap;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.booking-field-group {
    margin-bottom: 16px;
}
.booking-field-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 6px;
}
.booking-input-control {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: inherit;
}
.booking-input-control:focus {
    outline: none;
    border-color: var(--turquoise);
    box-shadow: 0 0 0 3px rgba(48, 213, 200, 0.15);
}

.guest-counter-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
}
.guest-counter-info strong {
    font-size: 0.9rem;
    color: var(--primary-navy);
}
.guest-counter-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-left: 4px;
}
.guest-counter-control {
    display: flex;
    align-items: center;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    overflow: hidden;
}
.guest-counter-control button {
    width: 32px;
    height: 32px;
    background: #f1f5f9;
    border: none;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    color: var(--primary-navy);
}
.guest-counter-control button:hover {
    background: #e2e8f0;
}
.guest-counter-control input {
    width: 36px;
    text-align: center;
    border: none;
    font-weight: 700;
    font-size: 0.95rem;
}

.payment-method-box {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 10px;
    padding: 14px;
    margin: 18px 0;
}
.payment-option-header {
    display: flex;
    align-items: center;
    gap: 8px;
}
.payment-radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.9rem;
}
.payment-badge-desc {
    font-size: 0.8rem;
    color: #166534;
    margin-top: 6px;
    line-height: 1.4;
}

.total-price-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px;
    background: #f8fafc;
    border-radius: 10px;
    margin-bottom: 18px;
    font-size: 1.05rem;
    font-weight: 700;
}
.total-price-bar strong {
    color: var(--turquoise);
    font-size: 1.4rem;
}

.btn-proceed-booking {
    width: 100%;
    background: #2563eb;
    color: #ffffff;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
}
.btn-proceed-booking:hover {
    background: #1d4ed8;
}

.booking-footer-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}
.btn-wishlist {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    padding: 10px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
}
.btn-wishlist:hover {
    background: #f8fafc;
}

/* FLOATING LIVE SOCIAL PROOF POPUP */
.social-proof-popup {
    position: fixed;
    bottom: 25px;
    left: 25px;
    background: #262626;
    color: #ffffff;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    z-index: 999;
}
.social-proof-icon {
    font-size: 1.2rem;
    color: var(--turquoise);
}

/* GALLERY MODAL LIGHTBOX */
.gallery-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 99999;
    align-items: center;
    justify-content: center;
}
.gallery-modal-content {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 8px;
}
.gallery-modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
}

@media (max-width: 992px) {
    .tour-layout-container {
        grid-template-columns: 1fr;
    }
    .gallery-grid-wrapper {
        height: 340px;
    }
    .inc-exc-container {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   ULTRA-MODERN ARCHIVE HERO & LUXURY FILTER SECTION
   ========================================================================== */
.tours-archive-hero {
    background: linear-gradient(180deg, rgba(15,34,61,0.85) 0%, rgba(10,23,42,0.94) 100%), url('../uploads/2022/genel/a2cb596fd99e21615ec48159b39405ad-scaled-2-1536x1024.webp') center/cover no-repeat;
    padding: 75px 0 95px;
    text-align: center;
    color: #ffffff;
    transition: all 0.4s ease;
}
.hero-sub-title {
    display: inline-block;
    color: var(--turquoise);
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.hero-main-title {
    font-family: var(--font-serif);
    font-size: 3.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 14px;
}
.hero-desc-text {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #cbd5e1;
    line-height: 1.6;
}

.tours-archive-section {
    padding: 20px 0 90px;
    background-color: #f8fafc;
}

/* MODERN FILTER CARD */
.modern-filter-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 28px 32px;
    margin-top: -65px;
    margin-bottom: 30px;
    box-shadow: 0 20px 45px rgba(15, 34, 61, 0.08);
    border: 1px solid #e2e8f0;
    position: relative;
    z-index: 10;
}

.modern-filter-form {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 180px;
    gap: 18px;
    align-items: flex-end;
}

.filter-field-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.filter-field-wrap label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-navy);
    display: flex;
    align-items: center;
    gap: 8px;
}
.filter-field-wrap label i {
    color: var(--turquoise);
    font-size: 0.95rem;
}

.filter-input-element, .filter-select-element {
    width: 100%;
    height: 52px;
    padding: 0 18px;
    border: 1.5px solid #cbd5e1;
    border-radius: 14px;
    font-size: 0.975rem;
    color: var(--primary-navy);
    background: #ffffff;
    font-family: inherit;
    transition: var(--transition);
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%2364748b%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 16px top 50%;
    background-size: 10px auto;
}
.filter-input-element {
    background-image: none;
}
.filter-input-element:focus, .filter-select-element:focus {
    outline: none;
    border-color: var(--turquoise);
    box-shadow: 0 0 0 4px rgba(48, 213, 200, 0.15);
}

.btn-modern-filter {
    width: 100%;
    height: 52px;
    background: linear-gradient(135deg, #0f223d 0%, #1e40af 100%);
    color: #ffffff;
    border: none;
    border-radius: 14px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: 0 6px 18px rgba(15, 34, 61, 0.2);
}
.btn-modern-filter:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #1e40af 0%, #0f223d 100%);
    box-shadow: 0 10px 24px rgba(15, 34, 61, 0.3);
}

/* DESTINATION QUICK PILLS BAR */
.dest-pills-bar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}
.pills-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #64748b;
    margin-right: 5px;
}
.dest-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #f1f5f9;
    color: #475569;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 700;
    transition: var(--transition);
    border: 1px solid transparent;
}
.dest-pill i {
    color: var(--turquoise);
}
.dest-pill:hover {
    background: #e2e8f0;
    color: var(--primary-navy);
}
.dest-pill.active {
    background: var(--primary-navy);
    color: #ffffff;
    border-color: var(--primary-navy);
}
.dest-pill.active i {
    color: var(--turquoise);
}

/* FILTER STATUS BAR */
.filter-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 0 5px;
}
.results-count {
    font-size: 1.05rem;
    color: #475569;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}
.results-count i {
    color: var(--turquoise);
}
.btn-clear-filters {
    font-size: 0.875rem;
    font-weight: 700;
    color: #dc2626;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: #fef2f2;
    border-radius: 20px;
    border: 1px solid #fecaca;
    transition: var(--transition);
}
.btn-clear-filters:hover {
    background: #dc2626;
    color: #ffffff;
}

.empty-filter-state {
    text-align: center;
    padding: 70px 20px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid #e2e8f0;
}
.empty-filter-state i {
    font-size: 3.5rem;
    color: var(--turquoise);
    margin-bottom: 18px;
}
.empty-filter-state h3 {
    font-family: var(--font-serif);
    color: var(--primary-navy);
    font-size: 1.7rem;
    margin-bottom: 10px;
}
.empty-filter-state p {
    color: #64748b;
    font-size: 1.05rem;
}

@media (max-width: 992px) {
    .modern-filter-form {
        grid-template-columns: 1fr 1fr;
    }
    .hero-main-title {
        font-size: 2.3rem;
    }
}
@media (max-width: 600px) {
    .modern-filter-form {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   EXACT MATCH LIVE SITE (globevistatravel.com.tr) HOME HOMEPAGE CSS STYLES
   ========================================================================== */

/* HIKER HERO BLOCK (SCREENSHOT 1) */
.hiker-hero-block {
    background-color: #f3f4f6;
    padding: 60px 0;
    border-bottom: 1px solid #e5e7eb;
}
.hiker-hero-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.hiker-logo-box {
    max-width: 580px;
}
.hiker-logo-badge {
    margin-bottom: 15px;
}
.hiker-tagline {
    font-size: 1.15rem;
    color: #4b5563;
    line-height: 1.7;
}
.hiker-image-circle-wrap {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    border: 6px solid #ffffff;
    flex-shrink: 0;
}
.hiker-circle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* SORT FILTER STRIP */
.sort-filter-strip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 25px;
    margin-bottom: 30px;
    border-bottom: 1px solid #e5e7eb;
}
.sort-select-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}
.sort-by-label {
    font-weight: 700;
    color: var(--primary-navy);
    font-size: 0.95rem;
}
.sort-select-pill {
    padding: 8px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 0.875rem;
    color: #334155;
    background: #ffffff;
    cursor: pointer;
}
.view-toggle-icons {
    display: flex;
    gap: 10px;
    font-size: 1.2rem;
    color: #94a3b8;
}
.view-toggle-icons i.active {
    color: var(--turquoise);
}

/* LIVE TOUR CARDS (SCREENSHOT 1 & 2) */
.tours-grid-4col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.tours-grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.tours-grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.live-tour-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.live-tour-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}
.live-tour-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.live-tour-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.live-tour-card:hover .live-tour-img-wrap img {
    transform: scale(1.06);
}
.live-pill-bestseller, .live-pill-featured {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #3b82f6;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 20px;
}
.live-pill-featured {
    background: var(--turquoise);
}

.live-tour-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.live-tour-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 12px;
    line-height: 1.3;
}
.live-tour-price-row {
    margin-bottom: 14px;
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.live-price-from {
    font-size: 0.85rem;
    color: #64748b;
}
.live-price-old {
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 0.9rem;
}
.live-price-new {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--turquoise);
}
.live-tour-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 15px;
    font-size: 0.825rem;
    color: #64748b;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.live-tour-specs i {
    color: var(--turquoise);
    width: 18px;
}
.live-tour-short-desc {
    font-size: 0.85rem;
    color: #94a3b8;
    line-height: 1.5;
    margin-top: auto;
}

/* PROMO COLLAGE SECTION (SCREENSHOT 3) */
.promo-collage-section {
    padding: 70px 0;
    background: #ffffff;
}
.promo-collage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.promo-collage-left {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    height: 380px;
}
.collage-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.collage-badge-overlay {
    position: absolute;
    top: 30px;
    left: 30px;
    background: rgba(15, 34, 61, 0.85);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 12px;
}
.promo-collage-right {
    background: #f8fafc;
    border-radius: 20px;
    padding: 50px 40px;
    border: 1px solid #e2e8f0;
}
.promo-collage-right h3 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 14px;
}
.promo-collage-right p {
    font-size: 1.05rem;
    color: #64748b;
    margin-bottom: 25px;
    line-height: 1.6;
}
.btn-see-tours {
    display: inline-block;
    background: #3b82f6;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
}
.btn-see-tours:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

/* TESTIMONIALS SECTION (SCREENSHOT 4) */
.testimonials-section {
    background: #f8fafc;
    padding: 80px 0;
    text-align: center;
}
.testimonials-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 45px;
}
.testimonials-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 35px;
}
.testimonial-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 28px 22px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    text-align: left;
}
.testimonial-user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}
.testimonial-user img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}
.testimonial-user strong {
    display: block;
    font-size: 0.95rem;
    color: var(--primary-navy);
}
.testimonial-user span {
    font-size: 0.8rem;
    color: #94a3b8;
}
.stars-gold {
    margin-left: auto;
    color: #eab308;
    font-size: 0.9rem;
}
.testimonial-text {
    font-size: 0.875rem;
    color: #475569;
    line-height: 1.6;
}
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}
.testimonial-dots .dot {
    width: 10px;
    height: 10px;
    background: #cbd5e1;
    border-radius: 50%;
    cursor: pointer;
}
.testimonial-dots .dot.active {
    background: var(--turquoise);
    width: 24px;
    border-radius: 10px;
}

/* TRUST FEATURES COLUMNS (SCREENSHOT 5) */
.trust-features-section {
    padding: 55px 0;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
}
.trust-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.trust-feature-col {
    display: flex;
    align-items: center;
    gap: 20px;
}
.trust-icon {
    width: 55px;
    height: 55px;
    background: rgba(48, 213, 200, 0.12);
    color: var(--turquoise);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}
.trust-content h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 4px;
}
.trust-content p {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.4;
}

@media (max-width: 1100px) {
    .tours-grid-4col, .testimonials-grid-4 {
        grid-template-columns: 1fr 1fr;
    }
    .trust-features-grid {
        grid-template-columns: 1fr;
    }
    .tour-layout-container {
        grid-template-columns: 1fr;
    }
    .booking-card-widget {
        position: static;
        margin-top: 30px;
    }
}
/* MOBILE & RESPONSIVE DESIGN IMPROVEMENTS */
.mobile-only-item {
    display: none !important;
}

@media (max-width: 1100px) {
    .tours-grid-4col, .testimonials-grid-4 {
        grid-template-columns: 1fr 1fr;
    }
    .trust-features-grid {
        grid-template-columns: 1fr;
    }
    .tour-layout-container {
        grid-template-columns: 1fr;
    }
    .booking-card-widget {
        position: static;
        margin-top: 30px;
    }
}

@media (max-width: 991px) {
    .desktop-only-btn {
        display: none !important;
    }
    .mobile-only-item {
        display: block !important;
    }
    .mobile-toggle {
        display: block !important;
    }
    .nav-menu-navy {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        background-color: #0f172a;
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        box-shadow: 0 15px 35px rgba(0,0,0,0.5);
        border-top: 1px solid #1e293b;
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
        z-index: 9999;
    }
    .nav-menu-navy.active {
        display: flex !important;
    }
}

@media (max-width: 768px) {
    .hiker-hero-flex {
        flex-direction: column;
        text-align: center;
    }
    .promo-collage-grid {
        grid-template-columns: 1fr;
    }
    .tours-grid-3col, .tours-grid-2col {
        grid-template-columns: 1fr;
    }
    .inc-exc-container {
        grid-template-columns: 1fr;
    }
    .price-main-amount {
        font-size: 1.8rem;
    }
    .total-price-bar strong {
        font-size: 1.5rem !important;
    }

    /* Hide left fixed sticky social bar on mobile to avoid covering content/images */
    .sticky-social-bar {
        display: none !important;
    }
    
    /* Hide social proof popup permanently */
    .social-proof-popup {
        display: none !important;
    }

    /* Hide left fixed sticky social bar on mobile to avoid covering content/images */
    .sticky-social-bar {
        display: none !important;
    }
    
    /* Clean Top Bar Navy for Mobile (Single Sleek Row) */
    .top-bar-navy {
        padding: 6px 0 !important;
        background-color: #07101d !important;
    }
    .top-bar-container {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        flex-wrap: nowrap !important;
    }
    .top-bar-left a:nth-child(1),
    .top-bar-left a:nth-child(2) {
        display: none !important;
    }
    .top-bar-left {
        gap: 6px !important;
    }
    .top-bar-left a {
        font-size: 0.78rem !important;
        font-weight: 600 !important;
        color: #25d366 !important;
        white-space: nowrap !important;
    }
    .top-bar-right {
        gap: 8px !important;
    }
    
    /* HIDE CURRENCY PILL ON MOBILE AS REQUESTED BY USER */
    .currency-pill {
        display: none !important;
    }
    
    .admin-login-link {
        font-size: 0.75rem !important;
        padding: 3px 8px !important;
        white-space: nowrap !important;
    }

    /* Clean Navbar Header */
    .main-header-navy {
        padding: 10px 0 !important;
    }
    .logo-box img {
        height: 38px !important;
        max-width: 175px !important;
    }

    /* Hero Typography */
    .hero-headline-serif, .tours-hero-title, .contact-hero-title, .about-hero-title {
        font-size: 1.85rem !important;
        line-height: 1.25 !important;
        margin-bottom: 12px !important;
    }
    .hero-subtitle-text, .tours-hero-subtitle, .contact-hero-subtitle {
        font-size: 0.925rem !important;
        line-height: 1.5 !important;
        padding: 0 10px !important;
    }
    .hero-pill-badge, .dest-pill-badge {
        font-size: 0.75rem !important;
        padding: 5px 14px !important;
        margin-bottom: 12px !important;
    }
    .hero-content-inner {
        padding: 50px 15px 70px !important;
    }

    /* Promo Section Round Logo Fix for Mobile */
    .promo-collage-left img.collage-main-img {
        max-width: 200px !important;
        width: 100% !important;
        height: auto !important;
        margin: 0 auto !important;
        display: block !important;
        object-fit: contain !important;
    }

    /* Search Widget */
    .search-widget-wrapper {
        margin-top: -30px !important;
        padding: 0 12px !important;
    }
    .search-widget-card {
        padding: 16px 18px !important;
        border-radius: 16px !important;
    }
    .search-widget-form {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    /* Tour Cards Grid (Single Column on Mobile < 650px) */
    .tours-grid-4col, 
    .tours-grid-3col, 
    .tours-grid-2col, 
    .tours-grid, 
    .tours-grid-container {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    /* Detail Page Gallery Collage */
    .gallery-grid-wrapper {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto !important;
        height: auto !important;
        gap: 10px !important;
        width: 100% !important;
    }
    .gallery-main-img {
        width: 100% !important;
        height: 280px !important;
        border-radius: 16px !important;
    }
    .gallery-main-img img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        border-radius: 16px !important;
    }
    .gallery-sub-grid {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 8px !important;
        margin-top: 8px !important;
    }
    .gallery-sub-item {
        height: 65px !important;
        border-radius: 10px !important;
        overflow: hidden !important;
        cursor: pointer !important;
    }
    .gallery-sub-item img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    /* Stats Grid */
    .quick-stats-grid {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }
    .quick-stat-card {
        padding: 14px 18px !important;
    }
    
    /* Floating WhatsApp Button on Mobile */
    .whatsapp-float {
        width: 48px !important;
        height: 48px !important;
        font-size: 1.5rem !important;
    }
}

@media (max-width: 480px) {
    .guest-counter-row {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    .booking-card-widget {
        padding: 20px 16px;
    }
    .price-display-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}

/* ==========================================================================
   ULTRA-MODERN CONTACT PAGE & SECURITY CAPTCHA CSS STYLES
   ========================================================================== */
.contact-hero-section {
    background: linear-gradient(180deg, rgba(15, 34, 61, 0.90) 0%, rgba(10, 23, 42, 0.96) 100%), url('https://globevistatravel.com.tr/wp-content/uploads/2025/09/anagorsel-min-scaled-1-1024x643.jpeg') center/cover no-repeat;
    padding: 75px 0 85px;
    text-align: center;
    color: #ffffff;
}
.contact-hero-badge {
    display: inline-block;
    background: rgba(48, 213, 200, 0.15);
    color: var(--turquoise);
    border: 1px solid rgba(48, 213, 200, 0.3);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}
.contact-hero-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}
.contact-hero-subtitle {
    max-width: 680px;
    margin: 0 auto;
    font-size: 1.075rem;
    color: #cbd5e1;
    line-height: 1.6;
}

/* ALERT NOTIFICATIONS */
.contact-alert-box {
    padding: 18px 24px;
    border-radius: 16px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.95rem;
}
.alert-success-style {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
}
.alert-success-style i {
    font-size: 1.6rem;
    color: #16a34a;
}
.alert-error-style {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}
.alert-error-style i {
    font-size: 1.6rem;
    color: #dc2626;
}

/* MAIN CONTACT GRID */
.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 35px;
}
.contact-info-card, .contact-form-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 15px 35px rgba(15, 34, 61, 0.05);
}
.contact-card-heading {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 8px;
}
.contact-card-desc {
    font-size: 0.925rem;
    color: #64748b;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* FEATURE ITEMS LIST */
.contact-feature-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 30px;
}
.contact-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.contact-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.icon-navy { background: #eff6ff; color: #2563eb; }
.icon-turquoise { background: rgba(48, 213, 200, 0.12); color: var(--turquoise); }
.icon-whatsapp { background: #f0fdf4; color: #16a34a; }
.icon-purple { background: #faf5ff; color: #9333ea; }

.contact-feature-content strong {
    display: block;
    font-size: 0.95rem;
    color: var(--primary-navy);
    margin-bottom: 3px;
}
.contact-feature-content span, .contact-link-hover {
    font-size: 0.9rem;
    color: #64748b;
}
.contact-link-hover:hover {
    color: var(--turquoise);
}
.contact-whatsapp-link {
    color: #16a34a;
    font-weight: 700;
    font-size: 0.95rem;
}

/* FORM STYLING */
.modern-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.contact-field-wrap label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 8px;
}
.contact-field-wrap label i {
    color: var(--turquoise);
    margin-right: 4px;
}
.modern-contact-input, .modern-contact-textarea {
    width: 100%;
    padding: 12px 18px;
    border: 1.5px solid #cbd5e1;
    border-radius: 12px;
    font-size: 0.95rem;
    color: var(--primary-navy);
    font-family: inherit;
    background: #ffffff;
    transition: var(--transition);
}
.modern-contact-input:focus, .modern-contact-textarea:focus {
    outline: none;
    border-color: var(--turquoise);
    box-shadow: 0 0 0 4px rgba(48, 213, 200, 0.15);
}

/* CAPTCHA BOX */
.captcha-security-box {
    background: #f8fafc;
    border: 1.5px dashed #cbd5e1;
    border-radius: 14px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}
.captcha-math-display {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--primary-navy);
}
.captcha-equation {
    background: #ffffff;
    padding: 6px 14px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    font-weight: 800;
    color: var(--primary-navy);
    letter-spacing: 1px;
}
.captcha-input-field {
    width: 110px !important;
    text-align: center;
    font-weight: 800;
}

/* SUBMIT BUTTON */
.btn-modern-submit {
    width: 100%;
    height: 52px;
    background: linear-gradient(135deg, #0f223d 0%, #1e40af 100%);
    color: #ffffff;
    border: none;
    border-radius: 14px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(15, 34, 61, 0.2);
}
.btn-modern-submit:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #1e40af 0%, #0f223d 100%);
    box-shadow: 0 12px 25px rgba(15, 34, 61, 0.3);
}

@media (max-width: 900px) {
    .contact-main-grid {
        grid-template-columns: 1fr;
    }
    .form-grid-2col {
        grid-template-columns: 1fr;
    }
    .captcha-security-box {
        flex-direction: column;
        align-items: flex-start;
    }
    .captcha-input-field {
        width: 100% !important;
    }
}

/* ==========================================================================
   FULL-SCREEN INTERACTIVE LIGHTBOX GALLERY MODAL STYLES
   ========================================================================== */
.gallery-lightbox-modal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    background: rgba(15, 23, 42, 0.97) !important;
    backdrop-filter: blur(12px) !important;
    z-index: 999999 !important;
    display: none;
    align-items: center !important;
    justify-content: center !important;
    padding: 20px !important;
}
.gallery-lightbox-modal.active,
.gallery-lightbox-modal.show {
    display: flex !important;
}
.lightbox-close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    color: #ffffff;
    font-size: 2.8rem;
    font-weight: 300;
    cursor: pointer;
    z-index: 1000000;
    line-height: 1;
    transition: color 0.2s;
}
.lightbox-close-btn:hover {
    color: var(--turquoise);
}
.lightbox-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 1000000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.lightbox-nav-btn:hover {
    background: var(--turquoise);
    color: var(--primary-navy);
}
.lightbox-nav-btn.prev { left: 20px; }
.lightbox-nav-btn.next { right: 20px; }

.lightbox-content-wrap {
    max-width: 90%;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.lightbox-content-wrap img#galleryModalImg {
    max-width: 100%;
    max-height: 65vh;
    object-fit: contain;
    border-radius: 14px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.6);
}
.lightbox-caption {
    color: #cbd5e1;
    font-size: 0.95rem;
    margin-top: 14px;
    font-weight: 700;
}
.lightbox-thumbs-strip {
    display: flex;
    gap: 8px;
    margin-top: 14px;
    overflow-x: auto;
    max-width: 100%;
    padding: 6px;
}
.lightbox-strip-thumb {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 8px;
    opacity: 0.5;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
}
.lightbox-strip-thumb.active, .lightbox-strip-thumb:hover {
    opacity: 1;
    border-color: var(--turquoise);
}

@media (max-width: 768px) {
    .lightbox-nav-btn.prev { left: 10px; }
    .lightbox-nav-btn.next { right: 10px; }
    .lightbox-nav-btn { width: 40px; height: 40px; font-size: 1.1rem; }
    .lightbox-content-wrap img#galleryModalImg { max-height: 55vh; }
}

/* ==========================================================================
   FLOATING ACTION BUTTONS (WHATSAPP & BACK TO TOP)
   ========================================================================== */
.floating-action-group {
    position: fixed !important;
    left: 20px !important;
    right: auto !important;
    bottom: 22px !important;
    z-index: 999999 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px !important;
    pointer-events: auto !important;
    max-width: 60px !important;
}

.whatsapp-float {
    width: 52px !important;
    height: 52px !important;
    background-color: #25d366 !important;
    color: #ffffff !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.8rem !important;
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.5) !important;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    cursor: pointer !important;
}
.whatsapp-float:hover {
    transform: scale(1.08) !important;
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.65) !important;
    color: #ffffff !important;
}

.back-to-top-btn {
    width: 42px !important;
    height: 42px !important;
    background-color: #0f172a !important;
    color: #ffffff !important;
    border: 2px solid #30d5c8 !important;
    border-radius: 50% !important;
    font-size: 1rem !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.4) !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.3s ease !important;
}
.back-to-top-btn.show {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}
.back-to-top-btn:hover {
    background-color: #30d5c8 !important;
    color: #0f172a !important;
    transform: translateY(-2px) !important;
}

@media (max-width: 768px) {
    .floating-action-group {
        left: 14px !important;
        right: auto !important;
        bottom: 16px !important;
        gap: 8px !important;
    }
    .whatsapp-float {
        width: 48px !important;
        height: 48px !important;
        font-size: 1.5rem !important;
    }
    .back-to-top-btn {
        width: 38px !important;
        height: 38px !important;
        font-size: 0.95rem !important;
    }
}




