:root {
    --primary: #d9a556;
    --primary-dark: #b77f2d;
    --accent: #5c6f92;
    --accent-soft: rgba(217, 165, 86, 0.15);
    --dark: #0c1524;
    --light: #f4efe8;
    --muted: #6b6f78;
    /* Sunset-on-the-sea gradient to give the CTA buttons a travel vibe */
    --gradient: linear-gradient(135deg, #00b4d8 0%, #4ac8b8 45%, #ff9a62 100%);
}

* {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: "Poppins", sans-serif;
    color: #1d2330;
    background-color: var(--light);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body.modal-open {
    padding-right: 0 !important; /* avoid Bootstrap compensating padding that nudges layout on modal open */
}

.object-fit-cover {
    object-fit: cover;
}

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

a:hover {
    color: var(--primary);
}

.text-white-70 {
    color: rgba(255, 255, 255, 0.7) !important;
}

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

.navbar {
    background: rgb(255, 255, 255);
    backdrop-filter: blur(90px);
    transition: background 0.3s ease;
    box-shadow: 0 4px 18px rgba(4, 9, 20, 0.12);
    height: 100px;
}

.navbar.scrolled {
    background: rgb(255, 255, 255);
}

.navbar .nav-link {
    font-weight: 500;
    color: rgba(12, 21, 36, 0.8);
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--primary);
}


.navbar-brand {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding-left: 0;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.navbar-brand .brand-logo {
    position: relative;
    top: 0;
    left: 0;
    height: 110px;
    max-width: 180px;
    width: auto;
    object-fit: contain;
}

.navbar-brand .brand-text {
    color: inherit;
}

.navbar.navbar-dark .navbar-brand {
    color: rgba(15, 23, 42, 0.92);
}

.navbar.navbar-dark .navbar-brand:hover {
    color: var(--primary);
}

.navbar.navbar-dark.scrolled .navbar-brand {
    color: #fff;
}

.navbar.navbar-dark.scrolled .navbar-brand:hover {
    color: rgba(255, 255, 255, 0.8);
}

.navbar-dark .navbar-toggler {
    border-color: transparent;
}

.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.95)' stroke-width='2.5' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h22M4 15h22M4 22h22'/%3e%3c/svg%3e");
}

.navbar.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(12,21,36,0.9)' stroke-width='2.5' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h22M4 15h22M4 22h22'/%3e%3c/svg%3e");
    filter: none;
}



.btn-gradient {
    background-image: var(--gradient);
    color: #fff;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-gradient:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(12, 18, 33, 0.35);
}

.btn-outline-primary {
    border-radius: 999px;
    border-width: 2px;
    border-color: var(--accent);
    color: var(--accent);
    font-weight: 600;
}

.btn-outline-primary:hover {
    background-color: var(--accent);
    color: #fff;
}

.hero {
    min-height: 100vh;
    padding: 160px 0 120px;
    background: url("../img/turkiye_background.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(6, 10, 20, 0.92), rgba(20, 33, 54, 0.7), rgba(11, 17, 31, 0.85));
}

.underline {
    position: relative;
    z-index: 1;
}

.underline::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 6px;
    width: 100%;
    height: 14px;
    background: rgba(246, 79, 82, 0.3);
    z-index: -1;
    transform: skewX(-10deg);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 16px;
}

.badge-logo {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    padding: 10px;
    object-fit: contain;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.hero-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 20px;
    padding: 18px 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.hero-card h5 {
    margin: 0 0 6px;
    color: #fff;
    font-size: 1rem;
}

.hero-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.92rem;
}

.hero-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(217, 165, 86, 0.2);
    display: grid;
    place-items: center;
    font-size: 1.4rem;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(0);
    opacity: 0.55;
    z-index: 1;
    mix-blend-mode: screen;
    animation: float 12s ease-in-out infinite;
    pointer-events: none;
}

.shape-1 {
    width: 220px;
    height: 220px;
    top: -60px;
    left: 8%;
    background: rgba(255, 151, 112, 0.5);
}

.shape-2 {
    width: 320px;
    height: 320px;
    top: 40%;
    left: -120px;
    background: rgba(58, 111, 240, 0.45);
    animation-delay: 4s;
}

.shape-3 {
    width: 260px;
    height: 260px;
    bottom: -120px;
    right: 10%;
    background: rgba(255, 255, 255, 0.25);
    animation-delay: 8s;
}

.shape-soft {
    background: rgba(255, 253, 237, 0.8);
}

.shape-4 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: -120px;
}

.shape-5 {
    width: 550px;
    height: 550px;
    bottom: -180px;
    left: -120px;
    background: rgba(255, 255, 255, 0.15);
    animation-duration: 16s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(4deg);
    }
}


.hero-arc {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 24px;
    padding-top: 30px;
    flex-wrap: nowrap;
}

.hero-arc::before {
    content: "";
    position: absolute;
    inset: -60px -120px -140px -120px;
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.35), transparent 60%);
    filter: blur(26px);
    z-index: 0;
}

.arc-frame {
    position: relative;
    flex: 0 1 30%;
    width: clamp(260px, 30vw, 380px);
    height: clamp(260px, 30vw, 380px);
    border-radius: 900px;
    background: #050b1a;
    padding: 0;
    overflow: hidden;
    z-index: 1;
}

.arc-frame::before {
    content: none;
}

.arc-frame-left,
.arc-frame-center,
.arc-frame-right {
    transform: none;
}

.arc-frame-center {
    z-index: 2;
}



.arc-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    overflow: hidden;
}

.arc-slide {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: translateX(110%);
    transition: transform 1.1s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.9s ease;
    will-change: transform, opacity;
}

.arc-slide.is-active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
}

.arc-slide.is-exiting {
    opacity: 0;
    transform: translateX(-110%);
    z-index: 1;
}

.arc-caption {
    position: absolute;
    bottom: -190px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    width: min(360px, 100%);
    text-align: center;
}

.hero-arc .caption-label {
    display: block;
    letter-spacing: 3px;
    font-weight: 600;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 6px;
    text-transform: uppercase;
}

.hero-arc .caption-text {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    background: rgba(15, 23, 42, 0.65);
    padding: 18px 26px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 0.95rem;
    line-height: 1.6;
    box-shadow: 0 20px 50px rgba(8, 15, 40, 0.3);
}

.section-padding {
    padding: 120px 0;
}

.subtitle {
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
}

.feature-tile {
    position: relative;
    background: #fff;
    border-radius: 28px;
    padding: 36px 30px;
    box-shadow: 0 25px 45px rgba(15, 23, 42, 0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    height: 100%;
    border: 1px solid rgba(12, 21, 36, 0.05);
}

.feature-tile .icon-lg {
    font-size: 2.2rem;
    margin-bottom: 18px;
    color: var(--primary);
}

.feature-tile a {
    font-weight: 600;
    color: var(--accent);
}

.feature-tile:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 70px rgba(15, 23, 42, 0.12);
}

.travel-tabs .btn {
    border-color: rgba(58, 111, 240, 0.3);
    color: var(--accent);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
}

.travel-tabs .btn-check:checked + .btn {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.filter-pills {
    background: #fff;
    padding: 8px;
    border-radius: 999px;
    box-shadow: 0 18px 32px rgba(12, 21, 36, 0.1);
    gap: 2px;
}

.filter-pills .btn {
    border-color: rgba(92, 111, 146, 0.3);
    color: var(--muted);
    font-weight: 700;
}

.filter-pills .btn:hover {
    color: var(--accent);
}

.filter-pills .btn-check:checked + .btn {
    background: #5c6f92;
    color: #fff;
    border-color: #5c6f92;
}

.tour-card {
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 25px 45px rgba(15, 23, 42, 0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    height: 95%;
}

.tour-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 45px 70px rgba(15, 23, 42, 0.18);
}

.tour-image {
    position: relative;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tour-card:hover .tour-image img {
    transform: scale(1.08);
}

.price-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    font-weight: 600;
    box-shadow: 0 15px 25px rgba(255, 179, 0, 0.3);
}

.tour-body {
    padding: 28px 30px 32px;
}

.tour-category {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
}

.avatars-sm img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -10px;
}

.destination-card {
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    height: 100%;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 60px rgba(15, 23, 42, 0.14);
}

.destination-thumb {
    position: relative;
    overflow: hidden;
}

.destination-thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.45s ease;
}

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

.destination-thumb .badge {
    position: absolute;
    top: 20px;
    left: 20px;
    font-weight: 600;
}

.destination-body {
    padding: 26px 28px 30px;
}

#why-us {
    background: #0b1424;
}

#why-us .background-image {
    position: absolute;
    inset: 0;
    background: url("https://images.unsplash.com/photo-1518684079-3c830dcef090?auto=format&fit=crop&w=1920&q=80") center/cover no-repeat;
    opacity: 0.15;
    mix-blend-mode: lighten;
}

#why-us .overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(217, 165, 86, 0.2), transparent 40%) , linear-gradient(120deg, rgba(6, 10, 20, 0.96), rgba(16, 27, 45, 0.85));
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 22px;
    padding: 24px;
    text-align: center;
    backdrop-filter: blur(6px);
}

.stat-card h3 {
    margin: 0;
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
}

.stat-card p {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
}

.video-card {
    background: rgba(12, 21, 36, 0.75);
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.story-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 28px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 24px;
}

.checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.checklist li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
}

.checklist li::before {
    content: "•";
    position: absolute;
    left: 6px;
    top: 0;
    color: var(--primary);
}

.founder-card {
    background: #fff;
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 18px 45px rgba(12, 21, 36, 0.12);
    border: 1px solid rgba(12, 21, 36, 0.06);
}

.founder-photo-wrap {
    display: inline-flex;
    padding: 10px;
    background: linear-gradient(135deg, rgba(217, 165, 86, 0.15), rgba(92, 111, 146, 0.08));
    border-radius: 24px;
    box-shadow: 0 16px 40px rgba(12, 21, 36, 0.12);
}

.founder-photo {
    width: 100%;
    max-width: 220px;
    border-radius: 20px;
    object-fit: cover;
    display: block;
}

.founder-signature h6 {
    font-weight: 700;
}

.testimonial-card {
    background: #fff;
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.1);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 65px rgba(15, 23, 42, 0.18);
}

.testimonial-card img {
    width: 64px;
    height: 64px;
    object-fit: cover;
}

.newsletter {
    background: linear-gradient(120deg, rgba(12, 21, 36, 0.97), rgba(13, 29, 52, 0.9), rgba(23, 31, 44, 0.95));
}

.contact-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    width: fit-content;
    backdrop-filter: blur(6px);
}

.contact-showcase {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.4);
    max-width: 420px;
    aspect-ratio: 4 / 3;
    margin: 0 auto;
}

.contact-showcase img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-showcase__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 21, 36, 0) 0%, rgba(12, 21, 36, 0.6) 100%);
}

.contact-showcase__label {
    position: absolute;
    left: 18px;
    bottom: 18px;
    background: rgba(255, 255, 255, 0.9);
    color: #0c1524;
    padding: 10px 16px;
    border-radius: 12px;
    font-weight: 600;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.newsletter-form {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.newsletter-form .form-control,
.newsletter-form .form-select {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.65);
}

.newsletter-form .form-control:focus,
.newsletter-form .form-select:focus {
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: none;
}

.reference-section {
    position: relative;
}

.reference-marquee {
    position: relative;
    display: flex;
    gap: 0;
    overflow: hidden;
    padding: 12px 0;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 100%;
    flex-shrink: 0;
    animation: reference-scroll 60s linear infinite;
}

.reference-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 14px;
    background: linear-gradient(145deg, #f8f9fb, #eceff4);
    border: 1px solid rgba(12, 21, 36, 0.08);
    box-shadow: 0 10px 22px rgba(12, 21, 36, 0.07);
    font-weight: 600;
    color: #1f2d3d;
    white-space: nowrap;
    letter-spacing: 0.15px;
}

.reference-badge::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.8;
}

.brand-index { color: #c91018; background: linear-gradient(135deg, #fff1f1, #ffe3e3); }
.brand-tvasahi { color: #6b6bb2; background: linear-gradient(135deg, #f3f1ff, #e6e3ff); }
.brand-doosan { color: #0277bd; background: linear-gradient(135deg, #e7f5ff, #d9f0ff); }
.brand-dws { color: #4f5d75; background: linear-gradient(135deg, #eef2f8, #e2e7f1); }
.brand-tetrapak { color: #008fcc; background: linear-gradient(135deg, #e5f6ff, #d8f0ff); }
.brand-douglas { color: #3aafa9; background: linear-gradient(135deg, #e8fbf8, #d9f5ef); }
.brand-danone { color: #005baa; background: linear-gradient(135deg, #eaf3ff, #d9e9ff); }
.brand-philips { color: #0070d2; background: linear-gradient(135deg, #e5f1ff, #d8eaff); }
.brand-ey { color: #c48a00; background: linear-gradient(135deg, #fff6de, #ffefc3); }
.brand-bridgestone { color: #c8102e; background: linear-gradient(135deg, #fff0f3, #ffe0e6); }
.brand-consulting { color: #1c3f75; background: linear-gradient(135deg, #e8f0ff, #dbe6fb); }
.brand-investors { color: #1f4d83; background: linear-gradient(135deg, #e7f1ff, #d6e6fb); }
.brand-kfw { color: #0066a3; background: linear-gradient(135deg, #e5f4ff, #d7ecff); }
.brand-ulker { color: #d50032; background: linear-gradient(135deg, #ffe7ed, #ffd5df); }
.brand-samsung { color: #1428a0; background: linear-gradient(135deg, #e6ecff, #d7e1ff); }
.brand-movenpick { color: #8c5a2f; background: linear-gradient(135deg, #fbf1e7, #f1e2d5); }
.brand-pfizer { color: #0073b7; background: linear-gradient(135deg, #e7f4ff, #d7ecff); }
.brand-henkel { color: #d6001c; background: linear-gradient(135deg, #ffe8eb, #ffd8de); }
.brand-cocacola { color: #d6001c; background: linear-gradient(135deg, #ffe6ea, #ffd5dc); }
.brand-sharp { color: #cf000f; background: linear-gradient(135deg, #ffe7ec, #ffd6de); }
.brand-roche { color: #007cb0; background: linear-gradient(135deg, #e6f5ff, #d8eefe); }
.brand-walls { color: #e3222a; background: linear-gradient(135deg, #ffe9eb, #ffd8db); }
.brand-lions { color: #0b4fa3; background: linear-gradient(135deg, #e6f0ff, #d7e6ff); }
.brand-lufthansa { color: #f5a300; background: linear-gradient(135deg, #fff5df, #ffe8bc); color: #a35b00; }
.brand-calik { color: #0067b1; background: linear-gradient(135deg, #e5f2ff, #d6e9ff); }
.brand-mitsubishi { color: #c8102e; background: linear-gradient(135deg, #ffe8ec, #ffd6df); }
.brand-ici { color: #005b9f; background: linear-gradient(135deg, #e4f1ff, #d5e7ff); }
.brand-newsoutdoor { color: #2f3d63; background: linear-gradient(135deg, #edf1fa, #e1e6f5); }
.brand-hp { color: #0096d6; background: linear-gradient(135deg, #e6f6ff, #d6eeff); }
.brand-nexans { color: #e85c41; background: linear-gradient(135deg, #ffeae5, #ffd8d2); }
.brand-unilever { color: #1c3f94; background: linear-gradient(135deg, #e6edff, #d7e2ff); }
.brand-gsk { color: #f36f21; background: linear-gradient(135deg, #ffefe6, #ffe2d3); }
.brand-arcelik { color: #e1001a; background: linear-gradient(135deg, #ffe7ea, #ffd5dc); }
.brand-actionade { color: #1a6bb0; background: linear-gradient(135deg, #e7f2ff, #d9e9ff); }
.brand-nerolac { color: #b11253; background: linear-gradient(135deg, #ffeaf2, #ffd7e5); }
.brand-iaup { color: #2e7dd7; background: linear-gradient(135deg, #e6f2ff, #d6eaff); }
.brand-nato { color: #153b7a; background: linear-gradient(135deg, #e6edfb, #d7e2f7); }
.brand-britishcouncil { color: #0097d7; background: linear-gradient(135deg, #e6f6ff, #d6eeff); }
.brand-toyota { color: #c3002f; background: linear-gradient(135deg, #ffe8ed, #ffd6df); }
.brand-khas { color: #0f3e8d; background: linear-gradient(135deg, #e7efff, #d9e5ff); }
.brand-movendi { color: #007a9b; background: linear-gradient(135deg, #e5f7fb, #d4eff5); }
.brand-driveearth { color: #2f2f2f; background: linear-gradient(135deg, #f5f5f5, #ececec); }

.reference-badge[class*="brand-"] {
    color: #1f2d3d;
    background: linear-gradient(145deg, #f8f9fb, #eceff4);
}

@keyframes reference-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Trip detail */
.detail-page .hero {
    display: none;
}

.detail-hero {
    min-height: 70vh;
    padding: 160px 0 120px;
    background: url("../img/turkey1.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
}

.detail-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6, 10, 20, 0.92), rgba(12, 21, 36, 0.78), rgba(92, 111, 146, 0.72));
}

.info-pill {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    display: inline-block;
}

.itinerary-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
    padding-left: 34px;
}

.itinerary-item {
    background: #fff;
    border-radius: 16px;
    padding: 16px 18px;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
    display: grid;
    grid-template-columns: 90px 1fr;
    align-items: start;
    gap: 12px;
    position: relative;
    border: 1px solid rgba(12, 21, 36, 0.06);
}

.itinerary-day {
    font-weight: 700;
    color: #0c1f33;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    background: linear-gradient(120deg, rgba(217, 165, 86, 0.24), rgba(217, 165, 86, 0.12));
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(217, 165, 86, 0.45);
    box-shadow: 0 6px 12px rgba(217, 165, 86, 0.18);
}

.itinerary-list::before {
    content: "";
    position: absolute;
    top: 12px;
    bottom: 12px;
    left: 12px;
    width: 2px;
    background: linear-gradient(180deg, rgba(12, 21, 36, 0.08), rgba(92, 111, 146, 0.35), rgba(12, 21, 36, 0.08));
    border-radius: 999px;
}

.itinerary-item::before {
    content: "";
    position: absolute;
    left: -1px;
    top: 18px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid rgba(92, 111, 146, 0.65);
    box-shadow: 0 8px 16px rgba(12, 21, 36, 0.16);
}

.itinerary-item::after {
    content: "";
    position: absolute;
    left: 3px;
    top: 22px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0c1f33, #5c6f92);
    box-shadow: 0 0 0 6px rgba(217, 165, 86, 0.16);
}

.detail-gallery .gallery-tile {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
    height: 150px;
}

.detail-highlights p {
    margin-bottom: 0.85rem;
    color: #4c5160;
}

.detail-highlights strong {
    color: var(--dark);
}

footer a {
    color: rgba(255, 255, 255, 0.65);
}

footer a:hover {
    color: #fff;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
}

.contact-list li {
    margin-bottom: 0.35rem;
}

.contact-list i {
    color: var(--primary);
}

.btn-outline-light {
    border-width: 1.8px;
}

.btn-outline-light:hover {
    background: #fff;
    color: var(--dark);
}

.animate {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate.fade-in-up.visible {
    animation: fadeInUp 0.8s forwards;
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(6, 10, 20, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 9999;
    backdrop-filter: blur(2px);
}

.lightbox.show {
    display: flex;
}

.lightbox img {
    max-width: min(90vw, 1200px);
    max-height: 80vh;
    border-radius: 18px;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.45);
    background: #000;
}

.lightbox-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    cursor: pointer;
    backdrop-filter: blur(6px);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-nav i {
    font-size: 1.1rem;
}

.no-scroll {
    overflow: hidden;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, rgba(12, 21, 36, 0.85), rgba(92, 111, 146, 0.9));
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    cursor: pointer;
    backdrop-filter: blur(6px);
    box-shadow: 0 15px 28px rgba(0, 0, 0, 0.35);
    opacity: 0.96;
}

.lightbox-nav:hover {
    background: linear-gradient(135deg, rgba(92, 111, 146, 0.95), rgba(12, 21, 36, 0.92));
}

.lightbox-prev {
    left: 18px;
}

.lightbox-next {
    right: 18px;
}

.animate.fade-in-left.visible {
    animation: fadeInLeft 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 991.98px) {
    .navbar {
        background: rgba(15, 23, 42, 0.95);
        min-height: 100px;
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .navbar-brand {
        padding-left: 0;
        min-height: 82px;
    }

    .navbar-brand .brand-logo {
        position: relative;
        height: 90px;
        max-width: 150px;
        top: 0;
        left: 0;
        filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.35));
    }

    .navbar-toggler {
        border: none;
        padding: 10px 12px;
    }

    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 12px;
        right: 12px;
        background: #fff;
        border-radius: 16px;
        padding: 10px 14px;
        margin-top: 10px;
        z-index: 1050;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    }

    .navbar-nav .nav-link {
        padding: 9px 0;
        font-size: 1.02rem;
        color: #0c1524;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link:focus {
        color: var(--primary);
    }

    .navbar .navbar-toggler-icon {
        filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
    }

    .navbar.navbar-dark .navbar-brand {
        color: #fff;
    }

    .navbar.navbar-dark .navbar-brand:hover {
        color: rgba(255, 255, 255, 0.8);
    }

    .hero {
        padding-top: 140px;
        padding-bottom: 80px;
    }

    .section-padding {
        padding: 80px 0;
    }

    .newsletter-form {
        padding: 24px;
    }

    .hero-arc {
        margin-top: 32px;
    }

    .marquee-track {
        animation-duration: 46s;
    }
}

@media (max-width: 767.98px) {
    .hero {
        text-align: center;
    }

    .hero .trust-badge {
        justify-content: center;
    }

    .hero-arc {
        display: none;
    }

    .feature-tile,
    .tour-card,
    .testimonial-card,
    .destination-card {
        border-radius: 24px;
    }

    .reference-badge {
        padding: 10px 14px;
        font-size: 0.95rem;
    }

    .marquee-track {
        animation-duration: 36s;
        gap: 10px;
    }
}
