/* ================================================
   Get Holiday Travel Agency — main.css
   ================================================ */

/* === CSS Değişkenleri === */
:root {
    --color-navy:     #0d2e4e;
    --color-navy-dk:  #081a2e;
    --color-teal:     #0ea5c5;
    --color-teal-lt:  #17c1e0;
    --color-gold:     #c9a227;
    --color-gold-lt:  #e0b840;
    --color-light:    #f4f7fb;
    --color-white:    #ffffff;
    --color-text:     #2c3e50;
    --color-muted:    #6c757d;
    --shadow-sm:      0 2px 12px rgba(0, 0, 0, .08);
    --shadow-md:      0 8px 32px rgba(0, 0, 0, .14);
    --shadow-lg:      0 20px 60px rgba(0, 0, 0, .22);
    --radius-card:    18px;
    --radius-btn:     50px;
    --transition:     .28s ease;
}

/* === Temel === */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--color-text);
    background: var(--color-white);
    overflow-x: hidden;
    line-height: 1.65;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--color-teal); }
img { max-width: 100%; display: block; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--color-teal); border-radius: 3px; }

/* === Bootstrap Overrides === */
.btn { border-radius: var(--radius-btn); font-weight: 600; }
.btn-primary { background: var(--color-teal); border-color: var(--color-teal); }
.btn-primary:hover { background: var(--color-teal-lt); border-color: var(--color-teal-lt); }

/* ================================================
   HEADER / NAVBAR
   ================================================ */

.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.site-header .navbar {
    padding: 1rem 0;
    background: transparent;
    transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

/* Scroll sonrası */
.site-header.scrolled .navbar {
    background: rgba(8, 22, 40, .96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 24px rgba(0, 0, 0, .25);
    padding: .55rem 0;
}

/* Ana sayfa dışında her zaman koyu */
body:not(.is-homepage) .site-header .navbar {
    background: rgba(8, 22, 40, .97);
    box-shadow: 0 2px 20px rgba(0, 0, 0, .2);
}

/* Logo */
.header-logo {
    height: 46px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: height var(--transition);
}
.site-header.scrolled .header-logo { height: 38px; }

/* Nav linkleri */
.navbar-nav .nav-link {
    color: rgba(255, 255, 255, .85) !important;
    font-weight: 500;
    font-size: .93rem;
    padding: .35rem .8rem !important;
    border-radius: 6px;
    transition: color var(--transition), background var(--transition);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--color-gold) !important;
    background: rgba(255, 255, 255, .07);
}

/* Hamburger */
.navbar-toggler {
    border-color: rgba(255, 255, 255, .35);
    padding: .35rem .6rem;
}
.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.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Dropdown menü */
.nav-dropdown {
    background: rgba(8, 22, 40, .97);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    padding: .5rem;
    min-width: 220px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, .35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin-top: .5rem !important;
}
.nav-dropdown .dropdown-item {
    color: rgba(255, 255, 255, .75);
    font-size: .875rem;
    font-weight: 500;
    padding: .55rem .9rem;
    border-radius: 8px;
    transition: background var(--transition), color var(--transition);
    display: flex;
    align-items: center;
    gap: .4rem;
}
.nav-dropdown .dropdown-item:hover,
.nav-dropdown .dropdown-item:focus {
    background: rgba(14, 165, 197, .15);
    color: var(--color-gold);
}
.nav-dropdown .dropdown-item.active {
    background: rgba(14, 165, 197, .2);
    color: var(--color-gold);
}
.navbar-nav .nav-link.dropdown-toggle::after {
    border-color: rgba(255, 255, 255, .5) transparent transparent;
    margin-left: .3rem;
}

/* ── Hover ile dropdown açılması (masaüstü) ── */
@media (min-width: 992px) {
    /* Bootstrap'ın show sınıfından bağımsız, CSS hover ile kontrol */
    .navbar-nav .dropdown > .nav-dropdown {
        display: block;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(6px);
        transition: opacity .2s ease, transform .2s ease, visibility .2s;
        margin-top: 0 !important;
    }
    .navbar-nav .dropdown:hover > .nav-dropdown,
    .navbar-nav .dropdown.show > .nav-dropdown {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }
}

/* Telefon linki */
.header-phone {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: rgba(255, 255, 255, .88) !important;
    font-size: .875rem;
    font-weight: 500;
    transition: color var(--transition);
    white-space: nowrap;
}
.header-phone:hover { color: var(--color-gold) !important; }
.header-phone i { font-size: .8rem; }

/* Dil seçici */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 1px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    overflow: hidden;
    padding: 1px;
}
.lang-item {
    color: rgba(255, 255, 255, .55);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .05em;
    padding: 4px 8px;
    border-radius: 5px;
    transition: all var(--transition);
    line-height: 1;
}
.lang-item:hover {
    color: var(--color-white);
    background: rgba(255, 255, 255, .12);
}
.lang-item.active {
    color: var(--color-gold);
    background: rgba(201, 162, 39, .18);
}

/* Mobil collapse arka plan */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(8, 22, 40, .97);
        margin-top: .5rem;
        padding: 1rem 1.25rem 1.25rem;
        border-radius: 14px;
        border: 1px solid rgba(255, 255, 255, .07);
    }
    .header-right-group {
        flex-direction: column;
        align-items: flex-start !important;
        gap: .75rem !important;
        padding-top: .75rem;
        border-top: 1px solid rgba(255, 255, 255, .08);
        margin-top: .5rem;
    }
}

/* ================================================
   HERO
   ================================================ */

.hero-section {
    position: relative;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 130px 0 80px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(8, 22, 40, .88) 0%,
        rgba(13, 46, 78, .72) 50%,
        rgba(14, 165, 197, .30) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--color-white);
}

/* Rozet grubu */
.hero-badge-group {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    margin-bottom: 1.5rem;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(6px);
    color: rgba(255, 255, 255, .9);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .28rem .9rem;
    border-radius: 50px;
}
.hero-badge i { color: var(--color-gold); }

/* Hero başlık */
.hero-title {
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: 0 2px 16px rgba(0, 0, 0, .35);
}
.hero-title span { color: var(--color-gold); }

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, .82);
    max-width: 500px;
    margin-bottom: 2.25rem;
    line-height: 1.65;
}

/* Hero butonlar */
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: linear-gradient(135deg, var(--color-teal), #0880a0);
    color: #fff;
    font-weight: 700;
    font-size: .92rem;
    padding: .8rem 1.85rem;
    border-radius: var(--radius-btn);
    border: none;
    box-shadow: 0 6px 24px rgba(14, 165, 197, .45);
    transition: transform var(--transition), box-shadow var(--transition);
}
.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(14, 165, 197, .55);
    color: #fff;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255, 255, 255, .1);
    border: 1.5px solid rgba(255, 255, 255, .45);
    color: #fff;
    font-weight: 700;
    font-size: .92rem;
    padding: .8rem 1.85rem;
    border-radius: var(--radius-btn);
    backdrop-filter: blur(4px);
    transition: all var(--transition);
}
.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, .2);
    border-color: var(--color-white);
    color: #fff;
    transform: translateY(-3px);
}

/* Aşağı ok animasyonu */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255, 255, 255, .5);
    font-size: 1.3rem;
    animation: arrowBounce 2.2s ease-in-out infinite;
}
@keyframes arrowBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: .5; }
    50%       { transform: translateX(-50%) translateY(10px); opacity: 1; }
}

/* ================================================
   SECTION ORTAK
   ================================================ */

.section-header { text-align: center; margin-bottom: 3rem; }

.section-tag {
    display: inline-block;
    background: rgba(14, 165, 197, .1);
    color: var(--color-teal);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .3rem 1.1rem;
    border-radius: 50px;
    margin-bottom: .75rem;
    border: 1px solid rgba(14, 165, 197, .2);
}

.section-title {
    font-size: clamp(1.9rem, 3.5vw, 2.5rem);
    font-weight: 900;
    color: var(--color-navy);
    line-height: 1.2;
    margin-bottom: .5rem;
}

.section-desc {
    color: var(--color-muted);
    font-size: 1rem;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.65;
}

.section-pad { padding: 5rem 0; }

/* ================================================
   HİZMET KARTLARI
   ================================================ */

.services-section {
    padding: 5.5rem 0;
    background: var(--color-light);
}

.service-card {
    position: relative;
    display: block;
    border-radius: var(--radius-card);
    overflow: hidden;
    height: 250px;
    color: var(--color-white);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition), box-shadow var(--transition);
    cursor: pointer;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    color: var(--color-white);
}

.service-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .55s ease;
}
.service-card:hover .service-card-img { transform: scale(1.08); }

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(5, 15, 30, .92) 0%,
        rgba(5, 15, 30, .45) 55%,
        rgba(5, 15, 30, .08) 100%
    );
    transition: background var(--transition);
}
.service-card:hover .service-card-overlay {
    background: linear-gradient(
        to top,
        rgba(5, 15, 30, .96) 0%,
        rgba(14, 165, 197, .22) 100%
    );
}

.service-card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.75rem 1.6rem 1.6rem;
    z-index: 2;
    transform: translateY(0);
    transition: transform var(--transition);
}

.service-card-en {
    display: block;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: .3rem;
}

.service-card-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: .4rem;
    text-shadow: 0 1px 8px rgba(0, 0, 0, .3);
    line-height: 1.2;
}

.service-card-desc {
    font-size: .82rem;
    color: rgba(255, 255, 255, .72);
    margin-bottom: .9rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}

.service-card-btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .28);
    color: rgba(255, 255, 255, .9);
    font-size: .75rem;
    font-weight: 700;
    padding: .4rem 1rem;
    border-radius: 50px;
    backdrop-filter: blur(4px);
    transition: all var(--transition);
    letter-spacing: .03em;
}
.service-card:hover .service-card-btn {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-navy-dk);
}

/* ================================================
   NEDEN GET HOLIDAY
   ================================================ */

.why-section {
    padding: 5.5rem 0;
    background: var(--color-white);
}

.why-item {
    text-align: center;
    padding: 2rem 1.25rem;
    border-radius: 16px;
    border: 1px solid transparent;
    transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.why-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    border-color: rgba(14, 165, 197, .15);
}

.why-icon {
    width: 76px;
    height: 76px;
    background: linear-gradient(135deg, rgba(14, 165, 197, .1), rgba(13, 46, 78, .07));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.8rem;
    color: var(--color-teal);
    border: 1px solid rgba(14, 165, 197, .15);
    transition: all var(--transition);
}
.why-item:hover .why-icon {
    background: linear-gradient(135deg, var(--color-teal), var(--color-navy));
    color: var(--color-white);
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(14, 165, 197, .3);
}

.why-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--color-navy);
    margin-bottom: .45rem;
}
.why-desc {
    font-size: .875rem;
    color: var(--color-muted);
    line-height: 1.6;
}

/* ================================================
   CTA BANDI
   ================================================ */

.cta-section {
    padding: 5.5rem 0;
    background: linear-gradient(135deg, var(--color-navy-dk) 0%, #0a3d62 100%);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -8%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(14, 165, 197, .18), transparent 65%);
    pointer-events: none;
}
.cta-section::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 162, 39, .1), transparent 65%);
    pointer-events: none;
}

.cta-section .section-title { color: var(--color-white); }
.cta-section .section-desc  { color: rgba(255, 255, 255, .65); }
.cta-section .section-tag   {
    background: rgba(255, 255, 255, .08);
    color: var(--color-gold);
    border-color: rgba(201, 162, 39, .25);
}

.btn-cta-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    background: #25d366;
    color: #fff;
    font-weight: 700;
    font-size: .93rem;
    padding: .82rem 1.9rem;
    border-radius: var(--radius-btn);
    box-shadow: 0 6px 22px rgba(37, 211, 102, .35);
    transition: all var(--transition);
}
.btn-cta-whatsapp:hover {
    background: #1cb957;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, .45);
}

.btn-cta-phone {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    background: rgba(255, 255, 255, .08);
    border: 1.5px solid rgba(255, 255, 255, .35);
    color: var(--color-white);
    font-weight: 700;
    font-size: .93rem;
    padding: .82rem 1.9rem;
    border-radius: var(--radius-btn);
    transition: all var(--transition);
}
.btn-cta-phone:hover {
    background: rgba(255, 255, 255, .18);
    border-color: rgba(255, 255, 255, .6);
    color: var(--color-white);
    transform: translateY(-3px);
}

/* ================================================
   FOOTER
   ================================================ */

.site-footer {
    background: #050e1a;
    color: rgba(255, 255, 255, .7);
    padding: 4.5rem 0 0;
}

.footer-logo { height: 42px; width: auto; filter: brightness(0) invert(1); }
.footer-logo-link { display: inline-block; }

.footer-desc {
    font-size: .875rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1.7;
    max-width: 310px;
    margin-top: 1rem;
}

.footer-social {
    display: flex;
    gap: .55rem;
    margin-top: 1.5rem;
}
.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    color: rgba(255, 255, 255, .6);
    transition: all var(--transition);
}
.footer-social a:hover {
    background: var(--color-teal);
    border-color: var(--color-teal);
    color: #fff;
    transform: translateY(-2px);
}

.footer-title {
    color: var(--color-white);
    font-weight: 800;
    font-size: .95rem;
    margin-bottom: 1.35rem;
    padding-bottom: .65rem;
    position: relative;
}
.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--color-gold);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .55rem;
}
.footer-links a {
    color: rgba(255, 255, 255, .5);
    font-size: .875rem;
    transition: color var(--transition), padding-left var(--transition);
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}
.footer-links a::before {
    content: '›';
    color: var(--color-teal);
    font-size: 1rem;
    line-height: 1;
}
.footer-links a:hover {
    color: var(--color-gold);
    padding-left: 4px;
}

.footer-contact { display: flex; flex-direction: column; gap: 1rem; }
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: .8rem;
    font-size: .875rem;
}
.footer-contact-item i {
    color: var(--color-teal);
    font-size: .95rem;
    margin-top: .15rem;
    flex-shrink: 0;
    width: 16px;
}
.footer-contact-item span,
.footer-contact-item a {
    color: rgba(255, 255, 255, .5);
    transition: color var(--transition);
    line-height: 1.5;
}
.footer-contact-item a:hover { color: var(--color-gold); }

.footer-bottom {
    margin-top: 3.5rem;
    padding: 1.35rem 0;
    border-top: 1px solid rgba(255, 255, 255, .06);
    text-align: center;
}
.footer-bottom p {
    font-size: .78rem;
    color: rgba(255, 255, 255, .28);
    margin: 0;
}

/* ================================================
   FLOATING WHATSAPP
   ================================================ */

.floating-whatsapp {
    position: fixed;
    bottom: 1.8rem;
    right: 1.8rem;
    z-index: 999;
    width: 58px;
    height: 58px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
    box-shadow: 0 6px 24px rgba(37, 211, 102, .5);
    transition: transform var(--transition), box-shadow var(--transition);
}
.floating-whatsapp:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 10px 32px rgba(37, 211, 102, .6);
    color: #fff;
}

/* WhatsApp ping animasyonu */
.floating-whatsapp::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(37, 211, 102, .4);
    animation: waPing 2.5s ease-out infinite;
}
@keyframes waPing {
    0%   { transform: scale(1); opacity: .7; }
    70%  { transform: scale(1.6); opacity: 0; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* ================================================
   ALT SAYFA / INNER PAGE
   ================================================ */

.page-inner {
    min-height: 65vh;
    padding-top: 120px;
    padding-bottom: 4rem;
}
.page-inner h1 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 900;
    color: var(--color-navy);
    margin-bottom: .75rem;
}

/* ================================================
   404 SAYFASI
   ================================================ */

.page-404 {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 1rem 4rem;
}
.error-code {
    font-size: 14rem;
    font-weight: 900;
    line-height: 1;
    color: var(--color-navy);
    opacity: .05;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    user-select: none;
    pointer-events: none;
}
.error-content {
    position: relative;
    z-index: 1;
    text-align: center;
}
.error-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-navy);
    margin-bottom: .5rem;
}
.error-desc {
    color: var(--color-muted);
    margin-bottom: 2rem;
}
.btn-back-home {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: linear-gradient(135deg, var(--color-teal), #0880a0);
    color: #fff;
    font-weight: 700;
    padding: .8rem 1.85rem;
    border-radius: var(--radius-btn);
    transition: transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 6px 20px rgba(14, 165, 197, .35);
}
.btn-back-home:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(14, 165, 197, .45);
}

/* ================================================
   YARDIMCI
   ================================================ */

.text-gold  { color: var(--color-gold) !important; }
.text-teal  { color: var(--color-teal) !important; }
.text-navy  { color: var(--color-navy) !important; }
.bg-navy    { background: var(--color-navy) !important; }

/* ================================================
   RTL HAZIRLIĞI (ileride AR için)
   ================================================ */

[dir="rtl"] body { direction: rtl; text-align: right; }
[dir="rtl"] .footer-title::after { left: auto; right: 0; }
[dir="rtl"] .footer-links a::before { transform: scaleX(-1); }
[dir="rtl"] .floating-whatsapp { right: auto; left: 1.8rem; }

/* ================================================
   TURLAR SAYFASI
   ================================================ */

/* — Hero ——————————————————————————————————————— */
.tours-hero {
    position: relative;
    min-height: 480px;
    padding-top: 80px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}
.tours-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13,46,78,.82) 0%, rgba(14,165,197,.32) 100%);
}
.tours-hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: 3rem 0;
}
.tours-hero-content h1 {
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.18;
    margin-bottom: 1rem;
}
.tours-hero-content p {
    font-size: 1.08rem;
    color: rgba(255,255,255,.88);
    margin-bottom: 1.75rem;
    max-width: 560px;
}
.btn-tour-wa-hero {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: #25d366;
    color: #fff;
    font-weight: 700;
    font-size: .95rem;
    padding: .85rem 2rem;
    border-radius: var(--radius-btn);
    text-decoration: none;
    transition: background var(--transition), transform var(--transition);
    box-shadow: 0 6px 24px rgba(37,211,102,.35);
}
.btn-tour-wa-hero:hover {
    background: #1ebe5d;
    color: #fff;
    transform: translateY(-2px);
}

/* — Tanıtım Bölümü ————————————————————————————— */
.tours-intro-section { background: #f7f8fa; }
.tour-intro-feature {
    background: #fff;
    border-radius: 14px;
    padding: 1.2rem 1rem;
    display: flex;
    align-items: center;
    gap: .9rem;
    box-shadow: 0 2px 14px rgba(13,46,78,.07);
}
.tour-intro-feature i {
    width: 42px;
    height: 42px;
    background: rgba(14,165,197,.12);
    color: var(--color-teal);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.tour-intro-feature span {
    font-size: .875rem;
    font-weight: 600;
    color: var(--color-navy);
    line-height: 1.3;
}

/* — Tur Listesi ————————————————————————————————— */
.tours-list-section { background: #fff; }

.tour-card {
    border: 0;
    border-radius: var(--radius-card);
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 22px rgba(13,46,78,.09);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.tour-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 50px rgba(13,46,78,.16);
}

/* Görsel wrapper — overflow:hidden zoom için */
.tour-card-visual {
    position: relative;
    overflow: hidden;
    height: 240px;
    flex-shrink: 0;
}
.tour-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .45s ease;
}
.tour-card:hover .tour-card-img {
    transform: scale(1.07);
}

/* Kategori badge */
.tour-cat {
    position: absolute;
    top: .7rem;
    left: .7rem;
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: .25rem .65rem;
    border-radius: 50px;
    z-index: 1;
    backdrop-filter: blur(4px);
}
.tour-cat--macera  { background: rgba(245,158,11,.92);  color: #fff; }
.tour-cat--deniz   { background: rgba(14,165,197,.92);   color: #fff; }
.tour-cat--kultur  { background: rgba(13,46,78,.90);     color: #fff; }
.tour-cat--eglence { background: rgba(139,92,246,.90);   color: #fff; }
.tour-cat--spa     { background: rgba(236,72,153,.90);   color: #fff; }

/* Kart gövdesi */
.tour-card-body {
    padding: 1.35rem 1.2rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.tour-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: .45rem;
    line-height: 1.3;
}
.tour-card-desc {
    font-size: .845rem;
    color: #5a6171;
    line-height: 1.65;
    margin-bottom: .9rem;
    flex-grow: 0;
}

/* Özellik listesi */
.tour-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.2rem;
}
.tour-features li {
    font-size: .8rem;
    color: #444;
    padding: .2rem 0;
    display: flex;
    align-items: flex-start;
    gap: .45rem;
    line-height: 1.4;
}
.tour-features li i {
    color: var(--color-teal);
    font-size: .72rem;
    margin-top: .18rem;
    flex-shrink: 0;
}

/* Kart WhatsApp butonu */
.btn-tour-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    background: #25d366;
    color: #fff;
    border: 0;
    border-radius: var(--radius-btn);
    padding: .62rem 1rem;
    font-size: .86rem;
    font-weight: 700;
    text-decoration: none;
    margin-top: auto;
    transition: background var(--transition), transform var(--transition);
}
.btn-tour-wa:hover {
    background: #1ebe5d;
    color: #fff;
    transform: translateY(-1px);
}

/* — Neden Biz ——————————————————————————————————— */
.tours-why-section { background: #f7f8fa; }
.tours-why-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 3px 18px rgba(13,46,78,.07);
    height: 100%;
    transition: transform var(--transition);
}
.tours-why-card:hover { transform: translateY(-4px); }
.tours-why-icon {
    width: 60px;
    height: 60px;
    background: rgba(14,165,197,.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--color-teal);
    margin: 0 auto 1rem;
}
.tours-why-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: .45rem;
}
.tours-why-card p {
    font-size: .85rem;
    color: #666;
    margin: 0;
}

/* — Alt CTA ——————————————————————————————————————— */
.tours-cta-band {
    background: linear-gradient(135deg, var(--color-navy) 0%, #083050 100%);
    padding: 5rem 0;
    text-align: center;
}
.tours-cta-band h2 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}
.tours-cta-band > .container > p {
    font-size: 1rem;
    color: rgba(255,255,255,.8);
    max-width: 560px;
    margin: 0 auto 2.25rem;
}
.btn-wa-cta {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: #25d366;
    color: #fff;
    border: 0;
    border-radius: var(--radius-btn);
    padding: .9rem 2.1rem;
    font-size: .95rem;
    font-weight: 700;
    text-decoration: none;
    transition: background var(--transition), transform var(--transition);
}
.btn-wa-cta:hover { background: #1ebe5d; color: #fff; transform: translateY(-2px); }
.btn-phone-cta {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,.5);
    border-radius: var(--radius-btn);
    padding: .9rem 2.1rem;
    font-size: .95rem;
    font-weight: 700;
    text-decoration: none;
    transition: border-color var(--transition), background var(--transition);
}
.btn-phone-cta:hover {
    border-color: #fff;
    background: rgba(255,255,255,.1);
    color: #fff;
}

/* — Responsive ——————————————————————————————————— */
@media (max-width: 991px) {
    .tours-hero { min-height: 400px; }
    .section-pad { padding: 3.5rem 0; }
}
@media (max-width: 767px) {
    .tours-hero { min-height: 340px; padding-top: 70px; }
    .tour-card-visual { height: 210px; }
    .btn-wa-cta,
    .btn-phone-cta { width: 100%; justify-content: center; }
    .section-pad { padding: 2.5rem 0; }
}

/* ================================================
   OTEL KONAKLAMA SAYFASI
   ================================================ */

/* — Hero ——————————————————————————————————————————— */
.hotel-hero {
    position: relative;
    min-height: 520px;
    padding-top: 80px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}
.hotel-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(8,22,40,.88) 0%, rgba(13,46,78,.65) 60%, rgba(14,165,197,.18) 100%);
}
.hotel-hero-content {
    position: relative;
    z-index: 2;
    max-width: 740px;
    padding: 3rem 0;
}
.hotel-hero-content h1 {
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.18;
    margin-bottom: 1rem;
}
.hotel-hero-content > p {
    font-size: 1.08rem;
    color: rgba(255,255,255,.88);
    margin-bottom: 1.75rem;
    max-width: 620px;
    line-height: 1.6;
}
.hotel-hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.75rem;
}
.btn-hotel-wa {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: #25d366;
    color: #fff;
    font-weight: 700;
    font-size: .95rem;
    padding: .85rem 2rem;
    border-radius: var(--radius-btn);
    text-decoration: none;
    transition: background var(--transition), transform var(--transition);
    box-shadow: 0 6px 24px rgba(37,211,102,.35);
}
.btn-hotel-wa:hover { background: #1ebe5d; color: #fff; transform: translateY(-2px); }
.btn-hotel-phone {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255,255,255,.15);
    color: #fff;
    font-weight: 700;
    font-size: .95rem;
    padding: .85rem 2rem;
    border-radius: var(--radius-btn);
    text-decoration: none;
    border: 1.5px solid rgba(255,255,255,.4);
    transition: background var(--transition), transform var(--transition);
    backdrop-filter: blur(6px);
}
.btn-hotel-phone:hover { background: rgba(255,255,255,.25); color: #fff; transform: translateY(-2px); }
.hotel-hero-badges { display: flex; flex-wrap: wrap; gap: .6rem; }
.hotel-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: rgba(255,255,255,.12);
    color: rgba(255,255,255,.92);
    font-size: .78rem;
    font-weight: 600;
    padding: .3rem .9rem;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,.2);
    backdrop-filter: blur(4px);
}
.hotel-hero-badge i { font-size: .75rem; color: var(--color-teal-lt); }

/* — Tanıtım ———————————————————————————————————————— */
.hotel-intro-section { background: #f7f9fc; }
.hotel-intro-desc {
    color: var(--color-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-top: .75rem;
}
.hotel-intro-img-wrap {
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.hotel-intro-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}
.hotel-intro-img-wrap:hover .hotel-intro-img { transform: scale(1.04); }

/* — Otel Tipleri ——————————————————————————————————— */
.hotel-types-section { background: #fff; }
.hotel-type-card {
    background: #fff;
    border-radius: var(--radius-card);
    padding: 2rem 1.5rem;
    box-shadow: 0 4px 22px rgba(13,46,78,.08);
    border-top: 3px solid var(--color-teal);
    transition: transform var(--transition), box-shadow var(--transition);
    height: 100%;
}
.hotel-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 44px rgba(13,46,78,.14);
}
.hotel-type-icon {
    width: 3.25rem;
    height: 3.25rem;
    background: linear-gradient(135deg, var(--color-teal), var(--color-navy));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
    color: #fff;
    font-size: 1.25rem;
}
.hotel-type-card h3 { font-size: 1rem; font-weight: 700; color: var(--color-navy); margin-bottom: .5rem; }
.hotel-type-card p  { font-size: .875rem; color: var(--color-muted); margin-bottom: 0; line-height: 1.55; }

/* — Süreç ——————————————————————————————————————————— */
.hotel-process-section { background: var(--color-light); }
.hotel-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}
.hotel-process-grid::before {
    content: '';
    position: absolute;
    top: 2.4rem;
    left: calc(12.5% + .5rem);
    right: calc(12.5% + .5rem);
    height: 2px;
    background: linear-gradient(90deg, var(--color-teal) 0%, var(--color-navy) 100%);
    opacity: .25;
}
.hotel-process-step { text-align: center; position: relative; z-index: 1; }
.hotel-step-num {
    width: 4.75rem;
    height: 4.75rem;
    background: var(--color-navy);
    color: #fff;
    font-size: 1.35rem;
    font-weight: 900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    border: 3px solid var(--color-teal);
    box-shadow: 0 6px 20px rgba(13,46,78,.18);
    transition: transform var(--transition);
}
.hotel-process-step:hover .hotel-step-num { transform: scale(1.08); }
.hotel-process-step h3 { font-size: .95rem; font-weight: 700; color: var(--color-navy); margin-bottom: .5rem; }
.hotel-process-step p  { font-size: .82rem; color: var(--color-muted); line-height: 1.55; margin-bottom: 0; }

/* — Bölgeler ———————————————————————————————————————— */
.hotel-regions-section { background: #fff; }
.hotel-chips-wrap { margin-top: .75rem; }
.hotel-region-chip {
    display: inline-block;
    background: #fff;
    border: 1.5px solid rgba(14,165,197,.35);
    color: var(--color-navy);
    font-size: .82rem;
    font-weight: 600;
    padding: .4rem 1.1rem;
    border-radius: 50px;
    margin: .3rem;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.hotel-region-chip:hover { background: var(--color-teal); color: #fff; border-color: var(--color-teal); }

/* — Neden Get Holiday ——————————————————————————————— */
.hotel-reasons-section { background: var(--color-light); }
.hotel-reasons-card {
    background: #fff;
    border-radius: var(--radius-card);
    padding: 1.75rem;
    box-shadow: 0 2px 14px rgba(13,46,78,.07);
    height: 100%;
    transition: transform var(--transition), box-shadow var(--transition);
}
.hotel-reasons-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(13,46,78,.12); }
.hotel-reasons-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(14,165,197,.12);
    color: var(--color-teal);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    margin-bottom: 1rem;
}
.hotel-reasons-card h3 { font-size: .95rem; font-weight: 700; color: var(--color-navy); margin-bottom: .4rem; }
.hotel-reasons-card p  { font-size: .85rem; color: var(--color-muted); margin-bottom: 0; line-height: 1.55; }

/* — CTA ————————————————————————————————————————————— */
.hotel-cta {
    background: linear-gradient(135deg, var(--color-navy-dk) 0%, var(--color-navy) 65%, rgba(14,165,197,.22) 100%);
    padding: 5.5rem 0;
    text-align: center;
    color: #fff;
}
.hotel-cta .section-tag {
    background: rgba(255,255,255,.12);
    color: rgba(255,255,255,.85);
    border-color: rgba(255,255,255,.2);
}
.hotel-cta-title {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 900;
    color: #fff;
    margin: .75rem 0 1rem;
}
.hotel-cta-desc {
    color: rgba(255,255,255,.8);
    font-size: 1.05rem;
    max-width: 620px;
    margin: 0 auto 2.25rem;
    line-height: 1.65;
}
.hotel-cta-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* — Responsive ————————————————————————————————————— */
@media (max-width: 991px) {
    .hotel-hero { min-height: 460px; }
    .hotel-process-grid { grid-template-columns: repeat(2, 1fr); }
    .hotel-process-grid::before { display: none; }
    .hotel-intro-img { height: 320px; }
}
@media (max-width: 767px) {
    .hotel-hero { min-height: 380px; padding-top: 70px; }
    .hotel-hero-btns { flex-direction: column; }
    .btn-hotel-wa,
    .btn-hotel-phone { width: 100%; justify-content: center; }
    .hotel-process-grid { grid-template-columns: 1fr; }
    .hotel-intro-img { height: 260px; }
    .hotel-cta { padding: 3.5rem 0; }
    .hotel-cta-btns { flex-direction: column; align-items: center; }
}

/* ================================================
   ARAÇ KİRALAMA SAYFASI
   ================================================ */

/* — Hero ——————————————————————————————————————————— */
.car-hero {
    position: relative;
    min-height: 520px;
    padding-top: 80px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}
.car-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(8,22,40,.88) 0%, rgba(13,46,78,.62) 55%, rgba(14,165,197,.2) 100%);
}
.car-hero-content {
    position: relative;
    z-index: 2;
    max-width: 740px;
    padding: 3rem 0;
}
.car-hero-content h1 {
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.18;
    margin-bottom: 1rem;
}
.car-hero-content > p {
    font-size: 1.08rem;
    color: rgba(255,255,255,.88);
    margin-bottom: 1.75rem;
    max-width: 620px;
    line-height: 1.6;
}
.car-hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.75rem; }
.btn-car-wa {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: #25d366;
    color: #fff;
    font-weight: 700;
    font-size: .95rem;
    padding: .85rem 2rem;
    border-radius: var(--radius-btn);
    text-decoration: none;
    transition: background var(--transition), transform var(--transition);
    box-shadow: 0 6px 24px rgba(37,211,102,.35);
}
.btn-car-wa:hover { background: #1ebe5d; color: #fff; transform: translateY(-2px); }
.btn-car-phone {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255,255,255,.15);
    color: #fff;
    font-weight: 700;
    font-size: .95rem;
    padding: .85rem 2rem;
    border-radius: var(--radius-btn);
    text-decoration: none;
    border: 1.5px solid rgba(255,255,255,.4);
    transition: background var(--transition), transform var(--transition);
    backdrop-filter: blur(6px);
}
.btn-car-phone:hover { background: rgba(255,255,255,.25); color: #fff; transform: translateY(-2px); }
.car-hero-badges { display: flex; flex-wrap: wrap; gap: .6rem; }
.car-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: rgba(255,255,255,.12);
    color: rgba(255,255,255,.92);
    font-size: .78rem;
    font-weight: 600;
    padding: .3rem .9rem;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,.2);
    backdrop-filter: blur(4px);
}
.car-hero-badge i { font-size: .75rem; color: var(--color-teal-lt); }

/* — Tanıtım ———————————————————————————————————————— */
.car-intro-section { background: #fff; }
.car-intro-desc { color: var(--color-muted); font-size: 1rem; line-height: 1.7; margin-top: .75rem; }
.car-intro-img-wrap {
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.car-intro-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}
.car-intro-img-wrap:hover .car-intro-img { transform: scale(1.04); }

/* — Araç Tipleri ——————————————————————————————————— */
.car-types-section { background: #f7f9fc; }
.car-type-card {
    background: #fff;
    border-radius: var(--radius-card);
    padding: 2rem 1.5rem;
    box-shadow: 0 4px 22px rgba(13,46,78,.08);
    border-top: 3px solid var(--color-teal);
    transition: transform var(--transition), box-shadow var(--transition);
    height: 100%;
}
.car-type-card:hover { transform: translateY(-5px); box-shadow: 0 16px 44px rgba(13,46,78,.14); }
.car-type-icon {
    width: 3.25rem;
    height: 3.25rem;
    background: linear-gradient(135deg, var(--color-teal), var(--color-navy));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
    color: #fff;
    font-size: 1.25rem;
}
.car-type-card h3 { font-size: 1rem; font-weight: 700; color: var(--color-navy); margin-bottom: .5rem; }
.car-type-card p  { font-size: .875rem; color: var(--color-muted); margin-bottom: 0; line-height: 1.55; }

/* — Teslim Seçenekleri ————————————————————————————— */
.car-delivery-section { background: #fff; }
.car-delivery-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: #fff;
    border-radius: var(--radius-card);
    padding: 1.75rem;
    box-shadow: 0 4px 22px rgba(13,46,78,.08);
    border-left: 4px solid var(--color-teal);
    transition: transform var(--transition), box-shadow var(--transition);
    height: 100%;
}
.car-delivery-card:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(13,46,78,.13); }
.car-delivery-icon {
    width: 3rem;
    height: 3rem;
    flex-shrink: 0;
    background: rgba(14,165,197,.12);
    color: var(--color-teal);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-top: .1rem;
}
.car-delivery-card h3 { font-size: 1rem; font-weight: 700; color: var(--color-navy); margin-bottom: .4rem; }
.car-delivery-card p  { font-size: .875rem; color: var(--color-muted); margin-bottom: 0; line-height: 1.55; }

/* — Süreç ——————————————————————————————————————————— */
.car-process-section { background: var(--color-light); }
.car-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}
.car-process-grid::before {
    content: '';
    position: absolute;
    top: 2.4rem;
    left: calc(12.5% + .5rem);
    right: calc(12.5% + .5rem);
    height: 2px;
    background: linear-gradient(90deg, var(--color-teal) 0%, var(--color-navy) 100%);
    opacity: .25;
}
.car-process-step { text-align: center; position: relative; z-index: 1; }
.car-step-num {
    width: 4.75rem;
    height: 4.75rem;
    background: var(--color-navy);
    color: #fff;
    font-size: 1.35rem;
    font-weight: 900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    border: 3px solid var(--color-teal);
    box-shadow: 0 6px 20px rgba(13,46,78,.18);
    transition: transform var(--transition);
}
.car-process-step:hover .car-step-num { transform: scale(1.08); }
.car-process-step h3 { font-size: .95rem; font-weight: 700; color: var(--color-navy); margin-bottom: .5rem; }
.car-process-step p  { font-size: .82rem; color: var(--color-muted); line-height: 1.55; margin-bottom: 0; }

/* — Kullanım Alanları ——————————————————————————————— */
.car-usecases-section { background: #fff; }
.car-chips-wrap { margin-top: .75rem; }
.car-use-chip {
    display: inline-block;
    background: #fff;
    border: 1.5px solid rgba(14,165,197,.35);
    color: var(--color-navy);
    font-size: .82rem;
    font-weight: 600;
    padding: .4rem 1.1rem;
    border-radius: 50px;
    margin: .3rem;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.car-use-chip:hover { background: var(--color-teal); color: #fff; border-color: var(--color-teal); }

/* — Neden Get Holiday ——————————————————————————————— */
.car-reasons-section { background: var(--color-light); }
.car-reasons-card {
    background: #fff;
    border-radius: var(--radius-card);
    padding: 1.75rem;
    box-shadow: 0 2px 14px rgba(13,46,78,.07);
    height: 100%;
    transition: transform var(--transition), box-shadow var(--transition);
}
.car-reasons-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(13,46,78,.12); }
.car-reasons-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(14,165,197,.12);
    color: var(--color-teal);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    margin-bottom: 1rem;
}
.car-reasons-card h3 { font-size: .95rem; font-weight: 700; color: var(--color-navy); margin-bottom: .4rem; }
.car-reasons-card p  { font-size: .85rem; color: var(--color-muted); margin-bottom: 0; line-height: 1.55; }

/* — CTA ————————————————————————————————————————————— */
.car-cta {
    background: linear-gradient(135deg, var(--color-navy-dk) 0%, var(--color-navy) 65%, rgba(14,165,197,.22) 100%);
    padding: 5.5rem 0;
    text-align: center;
    color: #fff;
}
.car-cta .section-tag {
    background: rgba(255,255,255,.12);
    color: rgba(255,255,255,.85);
    border-color: rgba(255,255,255,.2);
}
.car-cta-title { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 900; color: #fff; margin: .75rem 0 1rem; }
.car-cta-desc  { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 620px; margin: 0 auto 2.25rem; line-height: 1.65; }
.car-cta-btns  { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* — Responsive ————————————————————————————————————— */
@media (max-width: 991px) {
    .car-hero { min-height: 460px; }
    .car-process-grid { grid-template-columns: repeat(2, 1fr); }
    .car-process-grid::before { display: none; }
    .car-intro-img { height: 320px; }
}
@media (max-width: 767px) {
    .car-hero { min-height: 380px; padding-top: 70px; }
    .car-hero-btns { flex-direction: column; }
    .btn-car-wa,
    .btn-car-phone { width: 100%; justify-content: center; }
    .car-process-grid { grid-template-columns: 1fr; }
    .car-intro-img { height: 260px; }
    .car-cta { padding: 3.5rem 0; }
    .car-cta-btns { flex-direction: column; align-items: center; }
}

/* ================================================
   BEAUTY SALOON SAYFASI
   ================================================ */

/* — Hero —————————————————————————————————————————————————————————————— */
.beauty-hero {
    position: relative;
    min-height: 540px;
    padding-top: 80px;
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}
.beauty-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(20, 8, 25, .86) 0%,
        rgba(60, 20, 50, .70) 50%,
        rgba(180, 100, 130, .22) 100%
    );
}
.beauty-hero-content {
    position: relative;
    z-index: 2;
    max-width: 740px;
    padding: 3rem 0;
}
.beauty-hero-content h1 {
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.18;
    margin-bottom: 1rem;
}
.beauty-hero-content > p {
    font-size: 1.08rem;
    color: rgba(255,255,255,.88);
    margin-bottom: 1.75rem;
    max-width: 620px;
    line-height: 1.6;
}
.beauty-hero-btns   { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.75rem; }

/* Instagram butonu — gradient */
.btn-beauty-ig {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    color: #fff;
    font-weight: 700;
    font-size: .95rem;
    padding: .85rem 2rem;
    border-radius: var(--radius-btn);
    text-decoration: none;
    transition: opacity var(--transition), transform var(--transition);
    box-shadow: 0 6px 24px rgba(180, 60, 120, .35);
    border: none;
}
.btn-beauty-ig:hover { opacity: .88; color: #fff; transform: translateY(-2px); }

/* WhatsApp butonu */
.btn-beauty-wa {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: #25d366;
    color: #fff;
    font-weight: 700;
    font-size: .95rem;
    padding: .85rem 2rem;
    border-radius: var(--radius-btn);
    text-decoration: none;
    transition: background var(--transition), transform var(--transition);
    box-shadow: 0 6px 24px rgba(37,211,102,.35);
    border: none;
}
.btn-beauty-wa:hover { background: #1ebe5d; color: #fff; transform: translateY(-2px); }

.beauty-hero-badges { display: flex; flex-wrap: wrap; gap: .6rem; }
.beauty-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: rgba(255,255,255,.12);
    color: rgba(255,255,255,.92);
    font-size: .78rem;
    font-weight: 600;
    padding: .3rem .9rem;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,.2);
    backdrop-filter: blur(4px);
}
.beauty-hero-badge i { font-size: .75rem; color: #fcb045; }

/* — Tanıtım —————————————————————————————————————————————————————————— */
.beauty-intro-section { background: #fff; }
.beauty-intro-desc    { color: var(--color-muted); font-size: 1rem; line-height: 1.7; margin-top: .75rem; }
.beauty-intro-img-wrap {
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.beauty-intro-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}
.beauty-intro-img-wrap:hover .beauty-intro-img { transform: scale(1.04); }

/* — Hizmetler ———————————————————————————————————————————————————————— */
.beauty-services-section { background: #fdf8f5; }
.beauty-service-card {
    background: #fff;
    border-radius: var(--radius-card);
    padding: 2rem 1.6rem;
    box-shadow: 0 4px 22px rgba(80, 20, 50, .07);
    border-top: 3px solid #d4698a;
    transition: transform var(--transition), box-shadow var(--transition);
    height: 100%;
}
.beauty-service-card:hover { transform: translateY(-6px); box-shadow: 0 18px 48px rgba(80,20,50,.14); }
.beauty-service-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, #833ab4 0%, #d4698a 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
    color: #fff;
    font-size: 1.3rem;
}
.beauty-service-card h3 { font-size: 1.02rem; font-weight: 700; color: var(--color-navy); margin-bottom: .5rem; }
.beauty-service-card p  { font-size: .875rem; color: var(--color-muted); margin-bottom: 0; line-height: 1.6; }

/* — Neden Get Shine Beauty ————————————————————————————————————————— */
.beauty-reasons-section { background: var(--color-light); }
.beauty-reasons-card {
    background: #fff;
    border-radius: var(--radius-card);
    padding: 1.85rem;
    box-shadow: 0 2px 14px rgba(80,20,50,.07);
    height: 100%;
    transition: transform var(--transition), box-shadow var(--transition);
}
.beauty-reasons-card:hover { transform: translateY(-5px); box-shadow: 0 14px 38px rgba(80,20,50,.12); }
.beauty-reasons-icon {
    width: 3.1rem;
    height: 3.1rem;
    background: linear-gradient(135deg, rgba(131,58,180,.14) 0%, rgba(212,105,138,.14) 100%);
    color: #d4698a;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}
.beauty-reasons-card h3 { font-size: .98rem; font-weight: 700; color: var(--color-navy); margin-bottom: .4rem; }
.beauty-reasons-card p  { font-size: .86rem; color: var(--color-muted); margin-bottom: 0; line-height: 1.55; }

/* — Instagram Vurgusu ——————————————————————————————————————————————— */
.beauty-instagram-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2d1035 0%, #5a1a3a 50%, #833ab4 100%);
}
.beauty-instagram-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: calc(var(--radius-card) + 4px);
    padding: 3rem 2.5rem;
    backdrop-filter: blur(10px);
}
.beauty-ig-tag {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,.15);
    color: rgba(255,255,255,.9);
    font-size: .78rem;
    font-weight: 700;
    padding: .3rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,.2);
    margin-bottom: 1rem;
}
.beauty-ig-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.25;
}
.beauty-ig-desc {
    color: rgba(255,255,255,.78);
    font-size: .98rem;
    line-height: 1.65;
    margin-bottom: 1.75rem;
}
.btn-beauty-ig-main {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    background: #fff;
    color: #833ab4;
    font-weight: 700;
    font-size: 1rem;
    padding: .9rem 2.2rem;
    border-radius: var(--radius-btn);
    text-decoration: none;
    transition: background var(--transition), transform var(--transition);
    box-shadow: 0 8px 28px rgba(0,0,0,.25);
}
.btn-beauty-ig-main:hover { background: #f3e6ff; color: #833ab4; transform: translateY(-2px); }
.btn-beauty-ig-main i { font-size: 1.15rem; color: #d4698a; }

/* Handle card */
.beauty-ig-handle-card {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: var(--radius-card);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .9rem;
    backdrop-filter: blur(8px);
}
.beauty-ig-avatar {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #fff;
    box-shadow: 0 6px 24px rgba(0,0,0,.25);
}
.beauty-ig-handle-text {
    display: flex;
    flex-direction: column;
    gap: .2rem;
    text-align: center;
}
.beauty-ig-handle-text strong {
    color: #fff;
    font-size: 1.08rem;
    font-weight: 800;
}
.beauty-ig-handle-text span {
    color: rgba(255,255,255,.65);
    font-size: .82rem;
}
.beauty-ig-follow-btn {
    display: inline-flex;
    align-items: center;
    background: #fff;
    color: #833ab4;
    font-weight: 700;
    font-size: .88rem;
    padding: .5rem 1.6rem;
    border-radius: var(--radius-btn);
    text-decoration: none;
    transition: background var(--transition), transform var(--transition);
}
.beauty-ig-follow-btn:hover { background: #f3e6ff; color: #833ab4; transform: translateY(-1px); }

/* — İletişim / Konum ———————————————————————————————————————————————— */
.beauty-contact-section { background: #fff; }
.beauty-contact-card {
    background: #fdf8f5;
    border-radius: var(--radius-card);
    padding: 2.5rem;
    box-shadow: 0 4px 24px rgba(80,20,50,.08);
    border: 1px solid rgba(212,105,138,.15);
}
.beauty-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(212,105,138,.12);
}
.beauty-contact-row:last-of-type { border-bottom: none; }
.beauty-contact-icon {
    width: 2.8rem;
    height: 2.8rem;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(131,58,180,.12) 0%, rgba(212,105,138,.12) 100%);
    color: #d4698a;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    margin-top: .15rem;
}
.beauty-contact-label { font-size: .75rem; font-weight: 600; color: var(--color-muted); text-transform: uppercase; letter-spacing: .05em; margin-bottom: .2rem; }
.beauty-contact-value { font-size: .95rem; color: var(--color-text); line-height: 1.5; }
.beauty-contact-link  { color: #833ab4; font-weight: 600; text-decoration: none; transition: color var(--transition); }
.beauty-contact-link:hover { color: #d4698a; }
.beauty-contact-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(212,105,138,.15);
}

/* — Alt CTA ————————————————————————————————————————————————————————— */
.beauty-cta {
    background: linear-gradient(135deg, var(--color-navy-dk) 0%, #2d1035 65%, rgba(131,58,180,.25) 100%);
    padding: 5.5rem 0;
    text-align: center;
    color: #fff;
}
.beauty-cta .section-tag {
    background: rgba(255,255,255,.12);
    color: rgba(255,255,255,.85);
    border-color: rgba(255,255,255,.2);
}
.beauty-cta-title { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 900; color: #fff; margin: .75rem 0 1rem; }
.beauty-cta-desc  { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 640px; margin: 0 auto 2.25rem; line-height: 1.65; }
.beauty-cta-btns  { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* — Responsive ————————————————————————————————————————————————————— */
@media (max-width: 991px) {
    .beauty-hero { min-height: 460px; }
    .beauty-intro-img { height: 320px; }
    .beauty-instagram-card { padding: 2.5rem 1.75rem; }
}
@media (max-width: 767px) {
    .beauty-hero { min-height: 380px; padding-top: 70px; }
    .beauty-hero-btns { flex-direction: column; }
    .btn-beauty-ig,
    .btn-beauty-wa { width: 100%; justify-content: center; }
    .beauty-intro-img { height: 260px; }
    .beauty-instagram-card { padding: 1.75rem 1.25rem; }
    .beauty-cta { padding: 3.5rem 0; }
    .beauty-cta-btns { flex-direction: column; align-items: center; }
    .beauty-contact-btns { flex-direction: column; }
}

/* ================================================
   MOTORSİKLET KİRALAMA SAYFASI
   ================================================ */

/* — Hero —————————————————————————————————————————————————————————————— */
.motor-hero {
    position: relative;
    min-height: 540px;
    padding-top: 80px;
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}
.motor-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(8, 22, 40, .88) 0%,
        rgba(13, 46, 78, .65) 55%,
        rgba(201, 162, 39, .18) 100%
    );
}
.motor-hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding: 3rem 0;
}
.motor-hero-content h1 {
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.18;
    margin-bottom: 1rem;
}
.motor-hero-content > p {
    font-size: 1.08rem;
    color: rgba(255,255,255,.88);
    margin-bottom: 1.75rem;
    max-width: 640px;
    line-height: 1.6;
}
.motor-hero-btns  { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.75rem; }

.btn-motor-wa {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: #25d366;
    color: #fff;
    font-weight: 700;
    font-size: .95rem;
    padding: .85rem 2rem;
    border-radius: var(--radius-btn);
    text-decoration: none;
    transition: background var(--transition), transform var(--transition);
    box-shadow: 0 6px 24px rgba(37,211,102,.35);
}
.btn-motor-wa:hover { background: #1ebe5d; color: #fff; transform: translateY(-2px); }

.btn-motor-phone {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255,255,255,.15);
    color: #fff;
    font-weight: 700;
    font-size: .95rem;
    padding: .85rem 2rem;
    border-radius: var(--radius-btn);
    text-decoration: none;
    border: 1.5px solid rgba(255,255,255,.4);
    transition: background var(--transition), transform var(--transition);
    backdrop-filter: blur(6px);
}
.btn-motor-phone:hover { background: rgba(255,255,255,.25); color: #fff; transform: translateY(-2px); }

.motor-hero-badges { display: flex; flex-wrap: wrap; gap: .6rem; }
.motor-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: rgba(255,255,255,.12);
    color: rgba(255,255,255,.92);
    font-size: .78rem;
    font-weight: 600;
    padding: .3rem .9rem;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,.2);
    backdrop-filter: blur(4px);
}
.motor-hero-badge i { font-size: .75rem; color: var(--color-gold-lt); }

/* — Tanıtım —————————————————————————————————————————————————————————— */
.motor-intro-section { background: #fff; }
.motor-intro-desc    { color: var(--color-muted); font-size: 1rem; line-height: 1.7; margin-top: .75rem; }
.motor-intro-img-wrap {
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.motor-intro-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}
.motor-intro-img-wrap:hover .motor-intro-img { transform: scale(1.04); }

/* — Kullanım Alanları ———————————————————————————————————————————————— */
.motor-use-section { background: #f7f9fc; }
.motor-use-card {
    background: #fff;
    border-radius: var(--radius-card);
    padding: 2rem 1.6rem;
    box-shadow: 0 4px 22px rgba(13,46,78,.08);
    border-top: 3px solid var(--color-teal);
    transition: transform var(--transition), box-shadow var(--transition);
    height: 100%;
}
.motor-use-card:hover { transform: translateY(-6px); box-shadow: 0 18px 48px rgba(13,46,78,.14); }
.motor-use-icon {
    width: 3.25rem;
    height: 3.25rem;
    background: linear-gradient(135deg, var(--color-teal), var(--color-navy));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
    color: #fff;
    font-size: 1.2rem;
}
.motor-use-card h3 { font-size: 1rem; font-weight: 700; color: var(--color-navy); margin-bottom: .5rem; }
.motor-use-card p  { font-size: .875rem; color: var(--color-muted); margin-bottom: 0; line-height: 1.6; }

/* — Teslim Seçenekleri —————————————————————————————————————————————— */
.motor-delivery-section { background: #fff; }
.motor-delivery-card {
    background: #fff;
    border-radius: var(--radius-card);
    padding: 1.85rem 1.5rem;
    box-shadow: 0 4px 20px rgba(13,46,78,.08);
    border-left: 4px solid var(--color-gold);
    transition: transform var(--transition), box-shadow var(--transition);
    height: 100%;
}
.motor-delivery-card:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(13,46,78,.13); }
.motor-delivery-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(201,162,39,.12);
    color: var(--color-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}
.motor-delivery-card h3 { font-size: .98rem; font-weight: 700; color: var(--color-navy); margin-bottom: .45rem; }
.motor-delivery-card p  { font-size: .875rem; color: var(--color-muted); margin-bottom: 0; line-height: 1.55; }

/* — Süreç ———————————————————————————————————————————————————————————— */
.motor-process-section { background: var(--color-light); }
.motor-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}
.motor-process-grid::before {
    content: '';
    position: absolute;
    top: 2.4rem;
    left: calc(12.5% + .5rem);
    right: calc(12.5% + .5rem);
    height: 2px;
    background: linear-gradient(90deg, var(--color-teal) 0%, var(--color-navy) 100%);
    opacity: .25;
}
.motor-process-step { text-align: center; position: relative; z-index: 1; }
.motor-step-num {
    width: 4.75rem;
    height: 4.75rem;
    background: var(--color-navy);
    color: #fff;
    font-size: 1.35rem;
    font-weight: 900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    border: 3px solid var(--color-teal);
    box-shadow: 0 6px 20px rgba(13,46,78,.18);
    transition: transform var(--transition);
}
.motor-process-step:hover .motor-step-num { transform: scale(1.08); }
.motor-process-step h3 { font-size: .95rem; font-weight: 700; color: var(--color-navy); margin-bottom: .5rem; }
.motor-process-step p  { font-size: .82rem; color: var(--color-muted); line-height: 1.55; margin-bottom: 0; }

/* — Popüler Rotalar ——————————————————————————————————————————————————— */
.motor-routes-section { background: #fff; }
.motor-chips-wrap     { margin-top: .5rem; }
.motor-route-chip {
    display: inline-block;
    background: #fff;
    border: 1.5px solid rgba(14,165,197,.3);
    color: var(--color-navy);
    font-size: .82rem;
    font-weight: 600;
    padding: .4rem 1.1rem;
    border-radius: 50px;
    margin: .3rem;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.motor-route-chip i   { color: var(--color-teal); }
.motor-route-chip:hover { background: var(--color-teal); color: #fff; border-color: var(--color-teal); }
.motor-route-chip:hover i { color: #fff; }

/* — Neden Get Holiday ————————————————————————————————————————————————— */
.motor-reasons-section { background: var(--color-light); }
.motor-reasons-card {
    background: #fff;
    border-radius: var(--radius-card);
    padding: 1.85rem;
    box-shadow: 0 2px 14px rgba(13,46,78,.07);
    height: 100%;
    transition: transform var(--transition), box-shadow var(--transition);
}
.motor-reasons-card:hover { transform: translateY(-5px); box-shadow: 0 14px 38px rgba(13,46,78,.12); }
.motor-reasons-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(14,165,197,.12);
    color: var(--color-teal);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    margin-bottom: 1rem;
}
.motor-reasons-card h3 { font-size: .97rem; font-weight: 700; color: var(--color-navy); margin-bottom: .4rem; }
.motor-reasons-card p  { font-size: .86rem; color: var(--color-muted); margin-bottom: 0; line-height: 1.55; }

/* — Güvenli Kullanım ————————————————————————————————————————————————— */
.motor-safety-section { background: #fff; }
.motor-safety-box {
    display: flex;
    align-items: flex-start;
    gap: 1.75rem;
    background: linear-gradient(135deg, #f0f8ff 0%, #e8f5e9 100%);
    border-radius: var(--radius-card);
    padding: 2.25rem 2.5rem;
    border-left: 5px solid var(--color-teal);
    box-shadow: 0 4px 20px rgba(13,46,78,.07);
}
.motor-safety-icon {
    width: 4rem;
    height: 4rem;
    flex-shrink: 0;
    background: var(--color-teal);
    color: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-top: .15rem;
}
.motor-safety-box h3 { font-size: 1.1rem; font-weight: 700; color: var(--color-navy); margin-bottom: .6rem; }
.motor-safety-box p  { font-size: .92rem; color: var(--color-muted); margin-bottom: 0; line-height: 1.65; }

/* — CTA —————————————————————————————————————————————————————————————— */
.motor-cta {
    background: linear-gradient(135deg, var(--color-navy-dk) 0%, var(--color-navy) 65%, rgba(14,165,197,.22) 100%);
    padding: 5.5rem 0;
    text-align: center;
    color: #fff;
}
.motor-cta .section-tag {
    background: rgba(255,255,255,.12);
    color: rgba(255,255,255,.85);
    border-color: rgba(255,255,255,.2);
}
.motor-cta-title { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 900; color: #fff; margin: .75rem 0 1rem; }
.motor-cta-desc  { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 640px; margin: 0 auto 2.25rem; line-height: 1.65; }
.motor-cta-btns  { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* — Responsive ————————————————————————————————————————————————————— */
@media (max-width: 991px) {
    .motor-hero { min-height: 460px; }
    .motor-process-grid { grid-template-columns: repeat(2, 1fr); }
    .motor-process-grid::before { display: none; }
    .motor-intro-img { height: 320px; }
}
@media (max-width: 767px) {
    .motor-hero { min-height: 380px; padding-top: 70px; }
    .motor-hero-btns { flex-direction: column; }
    .btn-motor-wa,
    .btn-motor-phone { width: 100%; justify-content: center; }
    .motor-process-grid { grid-template-columns: 1fr; }
    .motor-intro-img { height: 260px; }
    .motor-safety-box { flex-direction: column; padding: 1.75rem; }
    .motor-cta { padding: 3.5rem 0; }
    .motor-cta-btns { flex-direction: column; align-items: center; }
}

/* ================================================
   SPA & HAMAM SAYFASI
   ================================================ */

/* — Hero —————————————————————————————————————————————————————————————— */
.spa-hero {
    position: relative;
    min-height: 540px;
    padding-top: 80px;
    background-size: cover;
    background-position: center 35%;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}
.spa-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(8, 22, 40, .86) 0%,
        rgba(13, 46, 78, .62) 55%,
        rgba(14, 165, 197, .18) 100%
    );
}
.spa-hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    padding: 3rem 0;
}
.spa-hero-content h1 {
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.18;
    margin-bottom: 1rem;
}
.spa-hero-content > p {
    font-size: 1.08rem;
    color: rgba(255,255,255,.88);
    margin-bottom: 1.75rem;
    max-width: 640px;
    line-height: 1.6;
}
.spa-hero-btns  { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.75rem; }

.btn-spa-wa {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: #25d366;
    color: #fff;
    font-weight: 700;
    font-size: .95rem;
    padding: .85rem 2rem;
    border-radius: var(--radius-btn);
    text-decoration: none;
    transition: background var(--transition), transform var(--transition);
    box-shadow: 0 6px 24px rgba(37,211,102,.35);
}
.btn-spa-wa:hover { background: #1ebe5d; color: #fff; transform: translateY(-2px); }

.btn-spa-phone {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255,255,255,.15);
    color: #fff;
    font-weight: 700;
    font-size: .95rem;
    padding: .85rem 2rem;
    border-radius: var(--radius-btn);
    text-decoration: none;
    border: 1.5px solid rgba(255,255,255,.4);
    transition: background var(--transition), transform var(--transition);
    backdrop-filter: blur(6px);
}
.btn-spa-phone:hover { background: rgba(255,255,255,.25); color: #fff; transform: translateY(-2px); }

.spa-hero-badges { display: flex; flex-wrap: wrap; gap: .6rem; }
.spa-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: rgba(255,255,255,.12);
    color: rgba(255,255,255,.92);
    font-size: .78rem;
    font-weight: 600;
    padding: .3rem .9rem;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,.2);
    backdrop-filter: blur(4px);
}
.spa-hero-badge i { font-size: .75rem; color: var(--color-teal-lt); }

/* — Tanıtım —————————————————————————————————————————————————————————— */
.spa-intro-section { background: #fff; }
.spa-intro-desc    { color: var(--color-muted); font-size: 1rem; line-height: 1.7; margin-top: .75rem; }
.spa-intro-img-wrap {
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.spa-intro-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}
.spa-intro-img-wrap:hover .spa-intro-img { transform: scale(1.04); }

/* — Deneyimler (Experience Cards) ———————————————————————————————————— */
.spa-experiences-section { background: #f6faf8; }
.spa-experience-card {
    background: #fff;
    border-radius: var(--radius-card);
    padding: 2rem 1.6rem;
    box-shadow: 0 4px 22px rgba(13,46,78,.07);
    border-top: 3px solid var(--color-teal);
    transition: transform var(--transition), box-shadow var(--transition);
    height: 100%;
}
.spa-experience-card:hover { transform: translateY(-6px); box-shadow: 0 18px 48px rgba(13,46,78,.13); }
.spa-experience-icon {
    width: 3.25rem;
    height: 3.25rem;
    background: linear-gradient(135deg, var(--color-teal), #0d7a8a);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
    color: #fff;
    font-size: 1.2rem;
}
.spa-experience-card h3 { font-size: 1rem; font-weight: 700; color: var(--color-navy); margin-bottom: .5rem; }
.spa-experience-card p  { font-size: .875rem; color: var(--color-muted); margin-bottom: 0; line-height: 1.6; }

/* — Kimler İçin Uygun ———————————————————————————————————————————————— */
.spa-fit-section { background: #fff; }
.spa-fit-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .85rem 2rem;
}
.spa-fit-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: .95rem;
    color: var(--color-text);
    line-height: 1.5;
}
.spa-fit-item::before {
    content: '';
    flex-shrink: 0;
    width: .55rem;
    height: .55rem;
    border-radius: 50%;
    background: var(--color-teal);
}

/* — Süreç ———————————————————————————————————————————————————————————— */
.spa-process-section { background: var(--color-light); }
.spa-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}
.spa-process-grid::before {
    content: '';
    position: absolute;
    top: 2.4rem;
    left: calc(12.5% + .5rem);
    right: calc(12.5% + .5rem);
    height: 2px;
    background: linear-gradient(90deg, var(--color-teal) 0%, var(--color-navy) 100%);
    opacity: .22;
}
.spa-process-step { text-align: center; position: relative; z-index: 1; }
.spa-step-num {
    width: 4.75rem;
    height: 4.75rem;
    background: var(--color-navy);
    color: #fff;
    font-size: 1.35rem;
    font-weight: 900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    border: 3px solid var(--color-teal);
    box-shadow: 0 6px 20px rgba(13,46,78,.18);
    transition: transform var(--transition);
}
.spa-process-step:hover .spa-step-num { transform: scale(1.08); }
.spa-process-step h3 { font-size: .95rem; font-weight: 700; color: var(--color-navy); margin-bottom: .5rem; }
.spa-process-step p  { font-size: .82rem; color: var(--color-muted); line-height: 1.55; margin-bottom: 0; }

/* — Neden Get Holiday ————————————————————————————————————————————————— */
.spa-reasons-section { background: #f6faf8; }
.spa-reasons-card {
    background: #fff;
    border-radius: var(--radius-card);
    padding: 1.85rem;
    box-shadow: 0 2px 14px rgba(13,46,78,.07);
    height: 100%;
    transition: transform var(--transition), box-shadow var(--transition);
}
.spa-reasons-card:hover { transform: translateY(-5px); box-shadow: 0 14px 38px rgba(13,46,78,.11); }
.spa-reasons-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(14,165,197,.12);
    color: var(--color-teal);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    margin-bottom: 1rem;
}
.spa-reasons-card h3 { font-size: .97rem; font-weight: 700; color: var(--color-navy); margin-bottom: .4rem; }
.spa-reasons-card p  { font-size: .86rem; color: var(--color-muted); margin-bottom: 0; line-height: 1.55; }

/* — Bilgilendirme Kutusu ————————————————————————————————————————————— */
.spa-info-section { background: #fff; }
.spa-info-box {
    display: flex;
    align-items: flex-start;
    gap: 1.75rem;
    background: linear-gradient(135deg, #f0fbfc 0%, #e8f5f0 100%);
    border-radius: var(--radius-card);
    padding: 2.25rem 2.5rem;
    border-left: 5px solid var(--color-teal);
    box-shadow: 0 4px 20px rgba(13,46,78,.07);
}
.spa-info-icon {
    width: 4rem;
    height: 4rem;
    flex-shrink: 0;
    background: var(--color-teal);
    color: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-top: .1rem;
}
.spa-info-box h3 { font-size: 1.1rem; font-weight: 700; color: var(--color-navy); margin-bottom: .6rem; }
.spa-info-box p  { font-size: .92rem; color: var(--color-muted); margin-bottom: 0; line-height: 1.65; }

/* — CTA —————————————————————————————————————————————————————————————— */
.spa-cta {
    background: linear-gradient(135deg, var(--color-navy-dk) 0%, var(--color-navy) 65%, rgba(14,165,197,.22) 100%);
    padding: 5.5rem 0;
    text-align: center;
    color: #fff;
}
.spa-cta .section-tag {
    background: rgba(255,255,255,.12);
    color: rgba(255,255,255,.85);
    border-color: rgba(255,255,255,.2);
}
.spa-cta-title { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 900; color: #fff; margin: .75rem 0 1rem; }
.spa-cta-desc  { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 640px; margin: 0 auto 2.25rem; line-height: 1.65; }
.spa-cta-btns  { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* — Responsive ————————————————————————————————————————————————————— */
@media (max-width: 991px) {
    .spa-hero { min-height: 460px; }
    .spa-process-grid { grid-template-columns: repeat(2, 1fr); }
    .spa-process-grid::before { display: none; }
    .spa-intro-img { height: 320px; }
    .spa-fit-list  { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
    .spa-hero { min-height: 380px; padding-top: 70px; }
    .spa-hero-btns { flex-direction: column; }
    .btn-spa-wa,
    .btn-spa-phone { width: 100%; justify-content: center; }
    .spa-process-grid { grid-template-columns: 1fr; }
    .spa-intro-img { height: 260px; }
    .spa-info-box  { flex-direction: column; padding: 1.75rem; }
    .spa-cta { padding: 3.5rem 0; }
    .spa-cta-btns { flex-direction: column; align-items: center; }
}

/* ═══════════════════════════════════════════════════════════════
   VIP Transfer Sayfası
   ═══════════════════════════════════════════════════════════════ */

/* — Hero —————————————————————————————————————————————————————— */
.vip-transfer-hero {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: center;
    background: url('https://images.unsplash.com/photo-1544620347-c4fd4a3d5957?auto=format&fit=crop&w=1600&q=75') center/cover no-repeat;
    overflow: hidden;
}
.vip-transfer-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(8,26,46,.92) 45%, rgba(13,46,78,.75) 100%);
    z-index: 1;
}
.vip-transfer-hero .vip-hero-content {
    position: relative;
    z-index: 2;
    padding: 5rem 0 4rem;
    max-width: 720px;
}
.vip-transfer-hero .section-tag {
    background: rgba(201,162,39,.18);
    color: var(--color-gold-lt);
    border-color: rgba(201,162,39,.35);
}
.vip-hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin: .75rem 0 1.1rem;
}
.vip-hero-title span { color: var(--color-gold-lt); }
.vip-hero-desc {
    color: rgba(255,255,255,.82);
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 2rem;
    line-height: 1.7;
}
.vip-hero-btns { display: flex; gap: .9rem; flex-wrap: wrap; }
.btn-vip-wa {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    background: #25d366;
    color: #fff;
    border: none;
    border-radius: var(--radius-btn);
    padding: .75rem 1.75rem;
    font-weight: 700;
    font-size: .95rem;
    transition: var(--transition);
}
.btn-vip-wa:hover {
    background: #1ebe5d;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,211,102,.35);
}
.btn-vip-phone {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(201,162,39,.7);
    border-radius: var(--radius-btn);
    padding: .73rem 1.6rem;
    font-weight: 700;
    font-size: .95rem;
    transition: var(--transition);
}
.btn-vip-phone:hover {
    background: rgba(201,162,39,.15);
    border-color: var(--color-gold-lt);
    color: var(--color-gold-lt);
    transform: translateY(-2px);
}
.vip-hero-badges { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 2rem; }
.vip-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    color: rgba(255,255,255,.9);
    border-radius: 50px;
    padding: .35rem .95rem;
    font-size: .8rem;
    font-weight: 600;
    backdrop-filter: blur(6px);
}

/* — Tanıtım ——————————————————————————————————————————————————— */
.vip-intro-section { padding: 5rem 0; background: var(--color-white); }
.vip-intro-img-wrap { border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-md); }
.vip-intro-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}
.vip-intro-img-wrap:hover .vip-intro-img { transform: scale(1.03); }

/* — Hizmet Alanları ——————————————————————————————————————————— */
.vip-service-section { padding: 5rem 0; background: var(--color-light); }
.vip-service-card {
    background: var(--color-white);
    border-radius: var(--radius-card);
    padding: 2rem 1.75rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border-top: 3px solid var(--color-gold);
}
.vip-service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-top-color: var(--color-teal);
}
.vip-service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--color-navy), var(--color-teal));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.35rem;
    margin-bottom: 1.1rem;
    flex-shrink: 0;
}

/* — Araç Konforu ————————————————————————————————————————————— */
.vip-vehicle-section {
    padding: 5rem 0;
    background: var(--color-navy-dk);
    position: relative;
    overflow: hidden;
}
.vip-vehicle-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(14,165,197,.12) 0%, transparent 65%);
    pointer-events: none;
}
.vip-vehicle-section .section-tag {
    background: rgba(201,162,39,.15);
    color: var(--color-gold-lt);
    border-color: rgba(201,162,39,.3);
}
.vip-vehicle-section .section-title { color: #fff; }
.vip-vehicle-section .section-desc  { color: rgba(255,255,255,.75); }
.vip-vehicle-img-wrap { border-radius: var(--radius-card); overflow: hidden; box-shadow: 0 24px 64px rgba(0,0,0,.4); }
.vip-vehicle-img { width: 100%; height: 400px; object-fit: cover; display: block; }
.vip-vehicle-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem 1.5rem;
}
.vip-vehicle-features li { display: flex; align-items: center; gap: .55rem; color: rgba(255,255,255,.85); font-size: .95rem; }
.vip-vehicle-features li i { color: var(--color-gold-lt); font-size: .9rem; flex-shrink: 0; }

/* — Popüler Rotalar ——————————————————————————————————————————— */
.vip-routes-section { padding: 5rem 0; background: var(--color-white); }
.vip-chips-wrap { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.5rem; }
.vip-route-chip {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: #fff;
    border: 1.5px solid #e0e6ef;
    color: var(--color-navy);
    border-radius: 50px;
    padding: .45rem 1.1rem;
    font-size: .875rem;
    font-weight: 600;
    transition: var(--transition);
}
.vip-route-chip:hover { border-color: var(--color-gold); background: rgba(201,162,39,.07); color: var(--color-navy); }
.vip-route-chip i { color: var(--color-gold); font-size: .75rem; }

/* — Nasıl Çalışıyoruz ————————————————————————————————————————— */
.vip-process-section { padding: 5rem 0; background: var(--color-light); }
.vip-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
}
.vip-process-grid::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-teal));
    z-index: 0;
}
.vip-process-card {
    background: var(--color-white);
    border-radius: var(--radius-card);
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.vip-process-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.vip-step-num {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-navy), var(--color-teal));
    color: #fff;
    font-size: 1.2rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.1rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 16px rgba(14,165,197,.3);
}

/* — Kimler İçin ——————————————————————————————————————————————— */
.vip-fit-section { padding: 5rem 0; background: var(--color-white); }
.vip-fit-list { display: grid; grid-template-columns: 1fr 1fr; gap: .65rem 2rem; margin-top: 1.5rem; }
.vip-fit-item {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .97rem;
    color: var(--color-text);
    padding: .5rem 0;
}
.vip-fit-item::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-gold);
    flex-shrink: 0;
}

/* — Neden Get Holiday ————————————————————————————————————————— */
.vip-reasons-section { padding: 5rem 0; background: var(--color-light); }
.vip-reasons-card {
    background: var(--color-white);
    border-radius: var(--radius-card);
    padding: 2rem 1.75rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}
.vip-reasons-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.vip-reasons-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(201,162,39,.15), rgba(201,162,39,.3));
    border: 1.5px solid rgba(201,162,39,.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* — Bilgilendirme —————————————————————————————————————————————— */
.vip-info-section { padding: 4rem 0; background: var(--color-white); }
.vip-info-box {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: linear-gradient(135deg, #f0f7ff, #e8f4fd);
    border-left: 4px solid var(--color-teal);
    border-radius: var(--radius-card);
    padding: 2.25rem 2rem;
    box-shadow: var(--shadow-sm);
}
.vip-info-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--color-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    flex-shrink: 0;
}
.vip-info-box h4 { color: var(--color-navy); font-weight: 800; font-size: 1.1rem; margin: 0 0 .5rem; }
.vip-info-box p  { color: var(--color-text); margin: 0; line-height: 1.7; font-size: .97rem; }

/* — CTA ——————————————————————————————————————————————————————— */
.vip-transfer-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-navy-dk) 0%, #0a2240 40%, #0d3060 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.vip-transfer-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(201,162,39,.1) 0%, transparent 65%);
    pointer-events: none;
}
.vip-transfer-cta .section-tag {
    background: rgba(201,162,39,.15);
    color: var(--color-gold-lt);
    border-color: rgba(201,162,39,.3);
}
.vip-cta-title { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 900; color: #fff; margin: .75rem 0 1rem; }
.vip-cta-desc  { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 640px; margin: 0 auto 2.25rem; line-height: 1.65; }
.vip-cta-btns  { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* — Responsive ————————————————————————————————————————————————————— */
@media (max-width: 991px) {
    .vip-transfer-hero { min-height: 460px; }
    .vip-process-grid  { grid-template-columns: repeat(2, 1fr); }
    .vip-process-grid::before { display: none; }
    .vip-vehicle-img   { height: 300px; }
    .vip-intro-img     { height: 300px; }
}
@media (max-width: 767px) {
    .vip-transfer-hero { min-height: 380px; padding-top: 70px; }
    .vip-hero-btns     { flex-direction: column; }
    .btn-vip-wa,
    .btn-vip-phone     { width: 100%; justify-content: center; }
    .vip-process-grid  { grid-template-columns: 1fr; }
    .vip-vehicle-features { grid-template-columns: 1fr; }
    .vip-fit-list      { grid-template-columns: 1fr; }
    .vip-intro-img     { height: 240px; }
    .vip-vehicle-img   { height: 240px; }
    .vip-info-box      { flex-direction: column; padding: 1.75rem; }
    .vip-transfer-cta  { padding: 3.5rem 0; }
    .vip-cta-btns      { flex-direction: column; align-items: center; }
}

/* ═══════════════════════════════════════════════════════════════
   VIP Tekne / Yat Sayfası
   ═══════════════════════════════════════════════════════════════ */

/* — Hero —————————————————————————————————————————————————————— */
.yacht-hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    background: url('https://images.unsplash.com/photo-1567899378494-47b22a2ae96a?auto=format&fit=crop&w=1600&q=75') center/cover no-repeat;
    overflow: hidden;
}
.yacht-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(130deg, rgba(8,26,46,.85) 40%, rgba(5,60,80,.65) 100%);
    z-index: 1;
}
.yacht-hero .yacht-hero-content {
    position: relative;
    z-index: 2;
    padding: 5rem 0 4rem;
    max-width: 720px;
}
.yacht-hero .section-tag {
    background: rgba(14,165,197,.2);
    color: #7de8f7;
    border-color: rgba(14,165,197,.4);
}
.yacht-hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin: .75rem 0 1.1rem;
}
.yacht-hero-title span { color: #7de8f7; }
.yacht-hero-desc {
    color: rgba(255,255,255,.82);
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 2rem;
    line-height: 1.7;
}
.yacht-hero-btns { display: flex; gap: .9rem; flex-wrap: wrap; }
.btn-yacht-wa {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    background: #25d366;
    color: #fff;
    border: none;
    border-radius: var(--radius-btn);
    padding: .75rem 1.75rem;
    font-weight: 700;
    font-size: .95rem;
    transition: var(--transition);
}
.btn-yacht-wa:hover {
    background: #1ebe5d;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,211,102,.35);
}
.btn-yacht-phone {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(125,232,247,.55);
    border-radius: var(--radius-btn);
    padding: .73rem 1.6rem;
    font-weight: 700;
    font-size: .95rem;
    transition: var(--transition);
}
.btn-yacht-phone:hover {
    background: rgba(14,165,197,.18);
    border-color: #7de8f7;
    color: #7de8f7;
    transform: translateY(-2px);
}
.yacht-hero-badges { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 2rem; }
.yacht-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.22);
    color: rgba(255,255,255,.92);
    border-radius: 50px;
    padding: .35rem .95rem;
    font-size: .8rem;
    font-weight: 600;
    backdrop-filter: blur(6px);
}

/* — Tanıtım ——————————————————————————————————————————————————— */
.yacht-intro-section { padding: 5rem 0; background: var(--color-white); }
.yacht-intro-img-wrap { border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-md); }
.yacht-intro-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}
.yacht-intro-img-wrap:hover .yacht-intro-img { transform: scale(1.03); }

/* — Deneyimler ———————————————————————————————————————————————— */
.yacht-experiences-section { padding: 5rem 0; background: var(--color-light); }
.yacht-experience-card {
    background: var(--color-white);
    border-radius: var(--radius-card);
    padding: 2rem 1.75rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border-top: 3px solid var(--color-teal);
}
.yacht-experience-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-top-color: var(--color-gold);
}
.yacht-experience-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--color-teal), #0891b2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.35rem;
    margin-bottom: 1.1rem;
    flex-shrink: 0;
}

/* — Popüler Rotalar ——————————————————————————————————————————— */
.yacht-routes-section { padding: 5rem 0; background: var(--color-navy-dk); position: relative; overflow: hidden; }
.yacht-routes-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 60%, rgba(14,165,197,.15) 0%, transparent 65%);
    pointer-events: none;
}
.yacht-routes-section .section-tag {
    background: rgba(14,165,197,.18);
    color: #7de8f7;
    border-color: rgba(14,165,197,.35);
}
.yacht-routes-section .section-title { color: #fff; }
.yacht-chips-wrap { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.5rem; }
.yacht-route-chip {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(255,255,255,.08);
    border: 1.5px solid rgba(255,255,255,.18);
    color: rgba(255,255,255,.9);
    border-radius: 50px;
    padding: .5rem 1.15rem;
    font-size: .875rem;
    font-weight: 600;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}
.yacht-route-chip:hover {
    background: rgba(14,165,197,.25);
    border-color: var(--color-teal-lt);
    color: #fff;
}
.yacht-route-chip i { color: var(--color-teal-lt); font-size: .75rem; }

/* — Nasıl Çalışıyoruz ————————————————————————————————————————— */
.yacht-process-section { padding: 5rem 0; background: var(--color-white); }
.yacht-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
}
.yacht-process-grid::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-teal), var(--color-gold));
    z-index: 0;
}
.yacht-process-card {
    background: var(--color-light);
    border-radius: var(--radius-card);
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.yacht-process-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.yacht-step-num {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-teal), #0891b2);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.1rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 16px rgba(14,165,197,.35);
}

/* — Kimler İçin ——————————————————————————————————————————————— */
.yacht-fit-section { padding: 5rem 0; background: var(--color-light); }
.yacht-fit-list { display: grid; grid-template-columns: 1fr 1fr; gap: .65rem 2rem; margin-top: 1.5rem; }
.yacht-fit-item {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .97rem;
    color: var(--color-text);
    padding: .5rem 0;
}
.yacht-fit-item::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-teal);
    flex-shrink: 0;
}

/* — Neden Get Holiday ————————————————————————————————————————— */
.yacht-reasons-section { padding: 5rem 0; background: var(--color-white); }
.yacht-reasons-card {
    background: var(--color-white);
    border-radius: var(--radius-card);
    padding: 2rem 1.75rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid #e8f0f8;
    transition: var(--transition);
    height: 100%;
}
.yacht-reasons-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--color-teal); }
.yacht-reasons-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(14,165,197,.12), rgba(14,165,197,.25));
    border: 1.5px solid rgba(14,165,197,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-teal);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* — Bilgilendirme —————————————————————————————————————————————— */
.yacht-info-section { padding: 4rem 0; background: var(--color-light); }
.yacht-info-box {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: linear-gradient(135deg, #e8f7fc, #d8f0f8);
    border-left: 4px solid var(--color-teal);
    border-radius: var(--radius-card);
    padding: 2.25rem 2rem;
    box-shadow: var(--shadow-sm);
}
.yacht-info-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--color-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    flex-shrink: 0;
}
.yacht-info-box h4 { color: var(--color-navy); font-weight: 800; font-size: 1.1rem; margin: 0 0 .5rem; }
.yacht-info-box p  { color: var(--color-text); margin: 0; line-height: 1.7; font-size: .97rem; }

/* — CTA ——————————————————————————————————————————————————————— */
.yacht-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-navy-dk) 0%, #053c50 50%, #062e44 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.yacht-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(14,165,197,.18) 0%, transparent 65%);
    pointer-events: none;
}
.yacht-cta .section-tag {
    background: rgba(14,165,197,.18);
    color: #7de8f7;
    border-color: rgba(14,165,197,.35);
}
.yacht-cta-title { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 900; color: #fff; margin: .75rem 0 1rem; }
.yacht-cta-desc  { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 640px; margin: 0 auto 2.25rem; line-height: 1.65; }
.yacht-cta-btns  { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* — Responsive ————————————————————————————————————————————————————— */
@media (max-width: 991px) {
    .yacht-hero { min-height: 460px; }
    .yacht-process-grid { grid-template-columns: repeat(2, 1fr); }
    .yacht-process-grid::before { display: none; }
    .yacht-intro-img { height: 320px; }
}
@media (max-width: 767px) {
    .yacht-hero { min-height: 380px; padding-top: 70px; }
    .yacht-hero-btns { flex-direction: column; }
    .btn-yacht-wa,
    .btn-yacht-phone { width: 100%; justify-content: center; }
    .yacht-process-grid { grid-template-columns: 1fr; }
    .yacht-fit-list { grid-template-columns: 1fr; }
    .yacht-intro-img { height: 260px; }
    .yacht-info-box { flex-direction: column; padding: 1.75rem; }
    .yacht-cta { padding: 3.5rem 0; }
    .yacht-cta-btns { flex-direction: column; align-items: center; }
}

/* ═══════════════════════════════════════════════════════════════
   Hakkımızda Sayfası
   ═══════════════════════════════════════════════════════════════ */

/* — Hero —————————————————————————————————————————————————————— */
.about-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1600&q=75') center/cover no-repeat;
    overflow: hidden;
}
.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(8,26,46,.9) 40%, rgba(13,46,78,.72) 100%);
    z-index: 1;
}
.about-hero .about-hero-content {
    position: relative;
    z-index: 2;
    padding: 5rem 0 4rem;
    max-width: 720px;
}
.about-hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin: .75rem 0 1.1rem;
}
.about-hero-desc {
    color: rgba(255,255,255,.82);
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 2rem;
    line-height: 1.7;
}
.about-hero-btns { display: flex; gap: .9rem; flex-wrap: wrap; }
.btn-about-wa {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    background: #25d366;
    color: #fff;
    border: none;
    border-radius: var(--radius-btn);
    padding: .75rem 1.75rem;
    font-weight: 700;
    font-size: .95rem;
    transition: var(--transition);
}
.btn-about-wa:hover {
    background: #1ebe5d;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,211,102,.35);
}
.btn-about-services {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,.45);
    border-radius: var(--radius-btn);
    padding: .73rem 1.6rem;
    font-weight: 700;
    font-size: .95rem;
    transition: var(--transition);
}
.btn-about-services:hover {
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.75);
    color: #fff;
    transform: translateY(-2px);
}
.about-hero-badges { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 2rem; }
.about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    color: rgba(255,255,255,.9);
    border-radius: 50px;
    padding: .35rem .95rem;
    font-size: .8rem;
    font-weight: 600;
    backdrop-filter: blur(6px);
}

/* — Tanıtım ——————————————————————————————————————————————————— */
.about-intro-section { padding: 5rem 0; background: var(--color-white); }
.about-intro-img-wrap { border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-md); }
.about-intro-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}
.about-intro-img-wrap:hover .about-intro-img { transform: scale(1.03); }

/* — Ne Yapıyoruz ————————————————————————————————————————————— */
.about-what-section { padding: 5rem 0; background: var(--color-light); }
.about-what-card {
    background: var(--color-white);
    border-radius: var(--radius-card);
    padding: 2rem 1.75rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border-bottom: 3px solid transparent;
}
.about-what-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-bottom-color: var(--color-teal);
}
.about-what-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--color-navy), var(--color-teal));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1.1rem;
}

/* — Hizmet Anlayışı (dark) ——————————————————————————————————— */
.about-approach-section {
    padding: 5rem 0;
    background: var(--color-navy-dk);
    position: relative;
    overflow: hidden;
}
.about-approach-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(14,165,197,.12) 0%, transparent 60%);
    pointer-events: none;
}
.about-approach-section .section-tag {
    background: rgba(14,165,197,.18);
    color: #7de8f7;
    border-color: rgba(14,165,197,.35);
}
.about-approach-section .section-title { color: #fff; }
.about-approach-section .section-desc  { color: rgba(255,255,255,.75); }
.about-approach-list {
    list-style: none;
    padding: 0;
    margin: 1.75rem 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .8rem 2rem;
}
.about-approach-list li {
    display: flex;
    align-items: center;
    gap: .6rem;
    color: rgba(255,255,255,.85);
    font-size: .96rem;
}
.about-approach-list li i { color: #7de8f7; font-size: .85rem; flex-shrink: 0; }

/* — Neden Get Holiday ————————————————————————————————————————— */
.about-reasons-section { padding: 5rem 0; background: var(--color-light); }
.about-reasons-card {
    background: var(--color-white);
    border-radius: var(--radius-card);
    padding: 2rem 1.75rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}
.about-reasons-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.about-reasons-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(14,165,197,.1), rgba(14,165,197,.22));
    border: 1.5px solid rgba(14,165,197,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-teal);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* — Değerler ————————————————————————————————————————————————— */
.about-values-section { padding: 5rem 0; background: var(--color-white); }
.about-value-card {
    background: var(--color-light);
    border-radius: var(--radius-card);
    padding: 1.75rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border: 1px solid transparent;
}
.about-value-card:hover {
    background: var(--color-white);
    border-color: var(--color-teal);
    box-shadow: var(--shadow-sm);
    transform: translateY(-3px);
}
.about-value-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-teal), #0891b2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
}

/* — Bölgeler ————————————————————————————————————————————————— */
.about-regions-section { padding: 5rem 0; background: var(--color-light); }
.about-chips-wrap { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.5rem; }
.about-region-chip {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: var(--color-white);
    border: 1.5px solid #dde5ef;
    color: var(--color-navy);
    border-radius: 50px;
    padding: .45rem 1.1rem;
    font-size: .875rem;
    font-weight: 600;
    transition: var(--transition);
}
.about-region-chip:hover { border-color: var(--color-teal); background: rgba(14,165,197,.06); }
.about-region-chip i { color: var(--color-teal); font-size: .75rem; }

/* — İletişim Kartı ——————————————————————————————————————————— */
.about-contact-section { padding: 4rem 0; background: var(--color-white); }
.about-contact-card {
    background: linear-gradient(135deg, var(--color-navy), var(--color-navy-dk));
    border-radius: var(--radius-card);
    padding: 2.5rem;
    color: #fff;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}
.about-contact-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 85% 40%, rgba(14,165,197,.18) 0%, transparent 55%);
    pointer-events: none;
}
.about-contact-title {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}
.about-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}
.about-contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7de8f7;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.about-contact-label { font-size: .78rem; color: rgba(255,255,255,.55); margin: 0 0 2px; }
.about-contact-value { color: #fff; font-weight: 600; font-size: .97rem; margin: 0; }
.about-contact-link  { color: rgba(255,255,255,.85); }
.about-contact-link:hover { color: #7de8f7; }
.about-contact-btns {
    display: flex;
    gap: .8rem;
    flex-wrap: wrap;
    margin-top: 1.75rem;
    position: relative;
    z-index: 1;
}

/* — CTA ——————————————————————————————————————————————————————— */
.about-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-navy-dk) 0%, #0a2240 50%, #0d3060 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.about-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(14,165,197,.12) 0%, transparent 65%);
    pointer-events: none;
}
.about-cta .section-tag {
    background: rgba(14,165,197,.18);
    color: #7de8f7;
    border-color: rgba(14,165,197,.35);
}
.about-cta-title { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 900; color: #fff; margin: .75rem 0 1rem; }
.about-cta-desc  { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 640px; margin: 0 auto 2.25rem; line-height: 1.65; }
.about-cta-btns  { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* — Responsive ————————————————————————————————————————————————————— */
@media (max-width: 991px) {
    .about-hero { min-height: 460px; }
    .about-approach-list { grid-template-columns: 1fr; }
    .about-intro-img { height: 340px; }
}
@media (max-width: 767px) {
    .about-hero { min-height: 380px; padding-top: 70px; }
    .about-hero-btns { flex-direction: column; }
    .btn-about-wa,
    .btn-about-services { width: 100%; justify-content: center; }
    .about-intro-img { height: 260px; }
    .about-approach-list { grid-template-columns: 1fr; }
    .about-contact-btns { flex-direction: column; }
    .about-cta { padding: 3.5rem 0; }
    .about-cta-btns { flex-direction: column; align-items: center; }
}

/* ═══════════════════════════════════════════════════════════════
   İletişim Sayfası
   ═══════════════════════════════════════════════════════════════ */

/* — Hero —————————————————————————————————————————————————————— */
.contact-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    background: url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?auto=format&fit=crop&w=1600&q=75') center/cover no-repeat;
    overflow: hidden;
}
.contact-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(130deg, rgba(8,26,46,.92) 35%, rgba(13,46,78,.75) 100%);
    z-index: 1;
}
.contact-hero .contact-hero-content {
    position: relative;
    z-index: 2;
    padding: 5rem 0 4rem;
    max-width: 720px;
}
.contact-hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin: .75rem 0 1.1rem;
}
.contact-hero-desc {
    color: rgba(255,255,255,.82);
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 2rem;
    line-height: 1.7;
}
.contact-hero-btns { display: flex; gap: .9rem; flex-wrap: wrap; }
.btn-contact-wa {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    background: #25d366;
    color: #fff;
    border: none;
    border-radius: var(--radius-btn);
    padding: .75rem 1.75rem;
    font-weight: 700;
    font-size: .95rem;
    transition: var(--transition);
    text-decoration: none;
}
.btn-contact-wa:hover {
    background: #1ebe5d;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,211,102,.35);
}
.btn-contact-tel {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,.45);
    border-radius: var(--radius-btn);
    padding: .73rem 1.6rem;
    font-weight: 700;
    font-size: .95rem;
    transition: var(--transition);
    text-decoration: none;
}
.btn-contact-tel:hover {
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.75);
    color: #fff;
    transform: translateY(-2px);
}
.contact-hero-badges { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 2rem; }
.contact-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    color: rgba(255,255,255,.9);
    border-radius: 50px;
    padding: .35rem .95rem;
    font-size: .8rem;
    font-weight: 600;
    backdrop-filter: blur(6px);
}

/* — Hızlı İletişim Kartları ————————————————————————————————— */
.contact-quick-section { padding: 4.5rem 0; background: var(--color-light); }
.contact-quick-card {
    background: var(--color-white);
    border-radius: var(--radius-card);
    padding: 2.25rem 2rem;
    box-shadow: var(--shadow-sm);
    text-align: center;
    height: 100%;
    transition: var(--transition);
    border-top: 3px solid transparent;
}
.contact-quick-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-top-color: var(--color-teal);
}
.contact-quick-icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.1rem;
}
.contact-quick-icon.wa    { background: rgba(37,211,102,.12); color: #1db954; border: 1.5px solid rgba(37,211,102,.25); }
.contact-quick-icon.tel   { background: rgba(14,165,197,.12); color: var(--color-teal); border: 1.5px solid rgba(14,165,197,.25); }
.contact-quick-icon.loc   { background: rgba(201,162,39,.12); color: var(--color-gold); border: 1.5px solid rgba(201,162,39,.25); }

/* — İletişim Bilgileri + Danışmanlık ——————————————————————— */
.contact-info-section { padding: 5rem 0; background: var(--color-white); }
.contact-info-card {
    background: linear-gradient(135deg, var(--color-navy), var(--color-navy-dk));
    border-radius: var(--radius-card);
    padding: 2.5rem;
    color: #fff;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    height: 100%;
}
.contact-info-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 85% 30%, rgba(14,165,197,.18) 0%, transparent 55%);
    pointer-events: none;
}
.contact-info-title {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}
.contact-info-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}
.contact-info-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7de8f7;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.contact-info-label { font-size: .76rem; color: rgba(255,255,255,.5); margin: 0 0 2px; }
.contact-info-value { color: #fff; font-weight: 600; font-size: .97rem; margin: 0; }
.contact-info-link  { color: rgba(255,255,255,.85); text-decoration: none; }
.contact-info-link:hover { color: #7de8f7; }
.contact-info-btns {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    margin-top: 1.75rem;
    position: relative;
    z-index: 1;
}
.contact-consult-card {
    background: var(--color-light);
    border-radius: var(--radius-card);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--color-teal);
    height: 100%;
}
.contact-consult-list {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0;
}
.contact-consult-list li {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .55rem 0;
    border-bottom: 1px solid #edf0f5;
    font-size: .93rem;
    color: #444;
}
.contact-consult-list li:last-child { border-bottom: none; }
.contact-consult-list li i { color: var(--color-teal); font-size: .8rem; flex-shrink: 0; }

/* — Harita Alanı ———————————————————————————————————————————— */
.contact-map-section { padding: 5rem 0; background: var(--color-light); }
.contact-map-section .section-title { color: var(--color-navy); }
.contact-map-wrap {
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: #e4e9ef;
}
.contact-map-wrap iframe {
    width: 100%;
    min-height: 430px;
    border: 0;
    display: block;
}
.contact-map-card {
    background: var(--color-white);
    border-radius: var(--radius-card);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    margin-top: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.contact-map-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--color-navy), var(--color-teal));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
}

/* — Konu Kartları ———————————————————————————————————————————— */
.contact-topics-section { padding: 5rem 0; background: var(--color-white); }
.contact-topic-card {
    background: var(--color-light);
    border-radius: var(--radius-card);
    padding: 1.75rem 1.5rem;
    transition: var(--transition);
    height: 100%;
    border-bottom: 3px solid transparent;
}
.contact-topic-card:hover {
    background: var(--color-white);
    box-shadow: var(--shadow-md);
    border-bottom-color: var(--color-teal);
    transform: translateY(-4px);
}
.contact-topic-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(13,46,78,.08), rgba(14,165,197,.15));
    border: 1.5px solid rgba(14,165,197,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-teal);
    font-size: 1.15rem;
    margin-bottom: 1rem;
}

/* — SSS Accordion ————————————————————————————————————————————— */
.contact-faq-section { padding: 5rem 0; background: var(--color-light); }
.contact-faq .accordion-item {
    border: 1px solid #dde5ef;
    border-radius: var(--radius-card) !important;
    margin-bottom: .85rem;
    overflow: hidden;
}
.contact-faq .accordion-button {
    font-weight: 700;
    color: var(--color-navy);
    background: var(--color-white);
    font-size: .97rem;
    border-radius: var(--radius-card) !important;
}
.contact-faq .accordion-button:not(.collapsed) {
    color: var(--color-teal);
    background: rgba(14,165,197,.05);
    box-shadow: none;
}
.contact-faq .accordion-button::after { filter: none; }
.contact-faq .accordion-button:not(.collapsed)::after { filter: hue-rotate(160deg) saturate(2); }
.contact-faq .accordion-body {
    font-size: .93rem;
    color: #555;
    line-height: 1.7;
    background: var(--color-white);
}

/* — CTA ——————————————————————————————————————————————————————— */
.contact-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-navy-dk) 0%, #0a2240 50%, #0d3060 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.contact-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(14,165,197,.13) 0%, transparent 65%);
    pointer-events: none;
}
.contact-cta .section-tag {
    background: rgba(14,165,197,.18);
    color: #7de8f7;
    border-color: rgba(14,165,197,.35);
}
.contact-cta-title { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 900; color: #fff; margin: .75rem 0 1rem; }
.contact-cta-desc  { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 640px; margin: 0 auto 2.25rem; line-height: 1.65; }
.contact-cta-btns  { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* — Responsive ——————————————————————————————————————————————— */
@media (max-width: 991px) {
    .contact-hero { min-height: 440px; }
    .contact-map-wrap iframe { min-height: 380px; }
    .contact-info-card,
    .contact-consult-card { margin-bottom: 1.5rem; }
}
@media (max-width: 767px) {
    .contact-hero { min-height: 360px; padding-top: 70px; }
    .contact-hero-btns { flex-direction: column; }
    .btn-contact-wa,
    .btn-contact-tel { width: 100%; justify-content: center; }
    .contact-map-wrap iframe { min-height: 320px; }
    .contact-info-btns { flex-direction: column; }
    .contact-cta { padding: 3.5rem 0; }
    .contact-cta-btns { flex-direction: column; align-items: center; }
}
