:root{
    --ink:#23170d;
    --ink-soft:#5f4c3a;
    --coffee:#302216;
    --cream:#f6efe6;
    --paper:#fffaf3;
    --paper-strong:#fff4df;
    --gold:#d6a85c;
    --gold-dark:#b78332;
    --line:rgba(68,45,23,.14);
    --shadow:0 20px 55px rgba(55,35,17,.14);
    --shadow-soft:0 12px 30px rgba(55,35,17,.10);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:var(--cream);
    color:var(--ink);
}

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

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

.hero{
    min-height:82vh;
    background:
        linear-gradient(90deg, rgba(25,16,9,.86) 0%, rgba(25,16,9,.72) 38%, rgba(25,16,9,.18) 78%),
        url('https://marezu.space/accounts/cappadociaairportstransfer/subscriptions/maupad/hero-cappadocia-transfer.jpg');
    background-size:cover;
    background-position:center;
    color:#fff;
    display:flex;
    flex-direction:column;
}

.navbar{
    width:min(1180px, 88vw);
    margin:0 auto;
    padding:22px 0;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:24px;
}

.logo{
    font-size:25px;
    font-weight:900;
    letter-spacing:.2px;
    line-height:1.05;
}

.logo span{
    color:var(--gold);
}

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

.nav-links a{
    color:rgba(255,255,255,.88);
    font-size:14px;
    font-weight:700;
    padding:9px 12px;
    border-radius:999px;
    transition:.25s ease;
}

.nav-links a:hover{
    background:rgba(255,255,255,.10);
    color:var(--gold);
}

.hero-content{
    width:min(1180px, 88vw);
    margin:0 auto;
    flex:1;
    display:grid;
    grid-template-columns:minmax(0, 680px) minmax(280px, 380px);
    gap:38px;
    align-items:center;
    padding:34px 0 58px;
}

.eyebrow{
    color:var(--gold);
    font-size:13px;
    font-weight:900;
    letter-spacing:1.8px;
    text-transform:uppercase;
    margin-bottom:16px;
}

.hero-box h1{
    font-size:clamp(42px, 5.8vw, 76px);
    line-height:.98;
    max-width:760px;
    margin-bottom:22px;
}

.hero-box p{
    font-size:clamp(17px, 1.7vw, 21px);
    line-height:1.65;
    color:#f7ead7;
    max-width:660px;
    margin-bottom:28px;
}

.buttons{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    min-height:48px;
    padding:14px 24px;
    border-radius:999px;
    font-weight:900;
    font-size:15px;
    transition:.25s ease;
}

.btn svg{
    width:18px;
    height:18px;
    fill:currentColor;
    flex-shrink:0;
}

.btn-primary{
    background:var(--gold);
    color:#1e140b;
    box-shadow:0 14px 32px rgba(214,168,92,.28);
}

.btn-primary:hover{
    background:#efc873;
    transform:translateY(-2px);
}

.btn-outline{
    color:#fff;
    border:1px solid rgba(255,255,255,.62);
    background:rgba(255,255,255,.07);
}

.btn-outline:hover{
    background:#fff;
    color:#1e140b;
    transform:translateY(-2px);
}

.booking-strip{
    align-self:end;
    background:rgba(255,250,243,.94);
    color:var(--ink);
    border:1px solid rgba(255,255,255,.65);
    border-radius:18px;
    padding:20px;
    box-shadow:0 18px 45px rgba(0,0,0,.22);
    backdrop-filter:blur(10px);
}

.booking-strip h2{
    font-size:21px;
    margin-bottom:14px;
}

.route-row{
    display:grid;
    grid-template-columns:1fr auto;
    gap:12px;
    align-items:center;
    padding:13px 0;
    border-top:1px solid var(--line);
}

.route-row:first-of-type{
    border-top:none;
}

.route-row strong{
    display:block;
    font-size:15px;
    margin-bottom:4px;
}

.route-row span{
    color:var(--ink-soft);
    font-size:13px;
    line-height:1.35;
}

.mini-price{
    display:grid;
    place-items:center;
    min-width:70px;
    min-height:58px;
    border-radius:14px;
    background:var(--coffee);
    color:#fff;
    font-weight:900;
}

.mini-price small{
    display:block;
    color:var(--gold);
    font-size:10px;
    margin-top:2px;
    letter-spacing:.7px;
}

.section{
    padding:58px 0;
}

.section-inner{
    width:min(1180px, 88vw);
    margin:0 auto;
}

.section-head{
    display:flex;
    justify-content:space-between;
    align-items:end;
    gap:30px;
    margin-bottom:26px;
}

.section-head h2{
    font-size:clamp(30px, 3.6vw, 44px);
    line-height:1.05;
}

.section-head p{
    max-width:520px;
    color:var(--ink-soft);
    line-height:1.65;
    font-size:16px;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:24px;
}

.service-card{
    background:var(--paper);
    border:1px solid rgba(214,168,92,.28);
    border-radius:22px;
    overflow:hidden;
    box-shadow:var(--shadow-soft);
    display:grid;
    grid-template-columns:44% 1fr;
    min-height:270px;
    transition:.25s ease;
}

.service-card:hover{
    transform:translateY(-5px);
    box-shadow:var(--shadow);
}

.service-media{
    min-height:100%;
    position:relative;
    overflow:hidden;
}

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

.service-media:after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(180deg, transparent 42%, rgba(35,23,13,.42));
}

.service-content{
    padding:24px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    gap:18px;
}

.service-top{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:14px;
}

.service-card h3{
    font-size:22px;
    line-height:1.18;
    margin-bottom:10px;
}

.service-card p{
    color:var(--ink-soft);
    line-height:1.58;
    font-size:15px;
}

.price-badge{
    min-width:86px;
    padding:10px 12px;
    border-radius:16px;
    background:linear-gradient(145deg, #2d2014, #17100a);
    color:#fff;
    text-align:center;
    box-shadow:inset 0 0 0 1px rgba(214,168,92,.32), 0 12px 24px rgba(35,23,13,.18);
    flex-shrink:0;
}

.price-badge strong{
    display:block;
    color:var(--gold);
    font-size:26px;
    line-height:1;
}

.price-badge span{
    display:block;
    margin-top:5px;
    color:#f7ead7;
    font-size:10px;
    font-weight:900;
    letter-spacing:.9px;
}

.card-actions{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
}

.capacity{
    color:var(--gold-dark);
    font-size:13px;
    font-weight:900;
    letter-spacing:.8px;
    text-transform:uppercase;
}

.book-link{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:42px;
    padding:11px 17px;
    border-radius:999px;
    background:var(--gold);
    color:#1e140b;
    font-size:13px;
    font-weight:900;
    white-space:nowrap;
}

.book-link:hover{
    background:#efc873;
}

.destinations{
    background:#2b2118;
    color:#fff;
}

.destinations .section-head p{
    color:#eadfce;
}

.destination-grid{
    display:grid;
    grid-template-columns:repeat(5, minmax(0, 1fr));
    gap:16px;
}

.destination-card{
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.12);
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 18px 38px rgba(0,0,0,.18);
}

.destination-card img{
    width:100%;
    height:150px;
    object-fit:cover;
}

.destination-card div{
    padding:16px;
}

.destination-card h3{
    color:var(--gold);
    font-size:19px;
    margin-bottom:8px;
}

.destination-card p{
    color:#eadfce;
    line-height:1.48;
    font-size:13px;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4, minmax(0, 1fr));
    gap:16px;
}

.why-card{
    background:var(--paper);
    border:1px solid rgba(214,168,92,.25);
    border-radius:18px;
    padding:20px;
    box-shadow:var(--shadow-soft);
}

.why-icon{
    width:42px;
    height:42px;
    display:grid;
    place-items:center;
    border-radius:13px;
    background:var(--paper-strong);
    color:var(--gold-dark);
    margin-bottom:14px;
}

.why-icon svg{
    width:22px;
    height:22px;
    fill:currentColor;
}

.why-card h3{
    font-size:17px;
    margin-bottom:8px;
}

.why-card p{
    color:var(--ink-soft);
    font-size:14px;
    line-height:1.45;
}

.contact-panel{
    background:
        linear-gradient(135deg, rgba(43,33,24,.96), rgba(43,33,24,.86)),
        url('https://marezu.space/accounts/cappadociaairportstransfer/subscriptions/maupad/hero-cappadocia-transfer.jpg');
    background-size:cover;
    background-position:center;
    color:#fff;
    border-radius:28px;
    padding:34px;
    box-shadow:var(--shadow);
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:30px;
    align-items:center;
}

.contact-panel h2{
    font-size:clamp(30px, 3.4vw, 42px);
    line-height:1.08;
    margin-bottom:14px;
}

.contact-panel p{
    color:#f1e7d8;
    line-height:1.7;
    max-width:650px;
    margin-bottom:22px;
}

.contact-info{
    background:rgba(255,250,243,.96);
    color:var(--ink);
    border-radius:22px;
    padding:22px;
}

.info-box{
    display:flex;
    align-items:center;
    gap:12px;
    padding:13px 0;
    border-top:1px solid var(--line);
    font-size:16px;
    font-weight:800;
}

.info-box:first-child{
    border-top:none;
}

.info-box svg{
    width:20px;
    height:20px;
    fill:var(--gold-dark);
    flex-shrink:0;
}

.info-box a:hover{
    color:var(--gold-dark);
}

.whatsapp-float{
    position:fixed;
    right:25px;
    bottom:25px;
    width:65px;
    height:65px;
    border-radius:50%;
    background:#25D366;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 8px 25px rgba(0,0,0,.25);
    z-index:9999;
    transition:.25s;
}

.whatsapp-float:hover{
    transform:translateY(-4px) scale(1.05);
}

.whatsapp-float svg{
    width:38px;
    height:38px;
    fill:#fff;
}

.footer{
    background:#1d130a;
    color:#d9c7ad;
    text-align:center;
    padding:26px 18px;
}

.translate-box{
    position:fixed;
    left:-20px;
    top:500px;
    transform:translateY(-50%);
    z-index:9999;
}

.gtranslate_wrapper{
    position:relative !important;
}

.gt_float_switcher{
    box-shadow:0 8px 25px rgba(0,0,0,.18) !important;
    border-radius:0 12px 12px 0 !important;
    overflow:hidden !important;
}

.gt_float_switcher .gt-selected{
    background:#2b2118 !important;
    color:#fff !important;
    border:1px solid #d6a85c !important;
    border-left:none !important;
    border-radius:0 12px 12px 0 !important;
}

.gt_float_switcher .gt-selected .gt-current-lang{
    color:#fff !important;
}

.gt_float_switcher .gt_options{
    background:#2b2118 !important;
}

.gt_float_switcher .gt_options a{
    color:#fff !important;
}

.gt_float_switcher .gt_options a:hover{
    background:#d6a85c !important;
    color:#2b2118 !important;
}

.marezu-powered{
    position:fixed;
    left:20px;
    bottom:0;
    width:270px;
    height:44px;
    background:#d6a85c;
    color:#fff;
    z-index:9998;
    border-radius:6px 6px 0 0;
    overflow:hidden;
    text-decoration:none;
    box-shadow:0 5px 15px rgba(0,0,0,.22);
    transition:height .3s ease;
}

.marezu-powered:hover{
    height:285px;
}

.marezu-powered-top{
    height:44px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    font-weight:900;
}

.marezu-powered-top small{
    font-size:10px;
    letter-spacing:.5px;
    flex-shrink:0;
}

.marezu-logo{
    height:14px;
    width:auto;
    display:block;
    color:#fff;
    flex-shrink:0;
}

.marezu-powered-content{
    padding:10px 18px 18px;
    text-align:center;
}

.marezu-powered-preview{
    position:relative;
    width:100%;
    height:95px;
    background:rgba(255,255,255,.18);
    border-radius:2px;
    overflow:hidden;
    margin-bottom:12px;
}

.marezu-preview-badge{
    position:absolute;
    top:6px;
    right:6px;
    padding:3px 7px;
    border-radius:20px;
    background:rgba(255,255,255,.22);
    color:#fff;
    font-size:8px;
    font-weight:800;
    letter-spacing:.8px;
    z-index:2;
}

.marezu-preview-browser{
    height:14px;
    display:flex;
    align-items:center;
    gap:4px;
    padding:0 8px;
    background:rgba(255,255,255,.22);
}

.marezu-preview-browser span{
    width:5px;
    height:5px;
    border-radius:50%;
    background:#fff;
    opacity:.9;
}

.marezu-preview-hero{
    width:72%;
    height:18px;
    margin:10px auto 8px;
    border-radius:10px;
    background:#fff;
    opacity:.95;
}

.marezu-preview-line{
    width:48%;
    height:5px;
    margin:0 auto 6px;
    border-radius:10px;
    background:#fff;
    opacity:.75;
}

.marezu-preview-line-wide{
    width:64%;
}

.marezu-preview-boxes{
    display:flex;
    justify-content:center;
    gap:6px;
    margin-top:8px;
}

.marezu-preview-boxes i{
    width:35px;
    height:22px;
    border-radius:5px;
    background:#fff;
    opacity:.9;
    display:block;
}

.marezu-powered-content p{
    font-size:14px;
    line-height:1.35;
    font-weight:700;
    margin-bottom:14px;
}

.marezu-powered-btn{
    display:block;
    width:100%;
    background:#fff;
    color:#d6a85c;
    padding:12px;
    border-radius:4px;
    font-size:17px;
    font-weight:900;
    box-shadow:inset 0 -3px 0 rgba(0,0,0,.25);
}

@media(max-width:1050px){
    .hero-content{
        grid-template-columns:1fr;
        padding-top:18px;
    }

    .booking-strip{
        max-width:520px;
    }

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

    .destination-grid{
        grid-template-columns:repeat(3, minmax(0, 1fr));
    }

    .why-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }
}

@media(max-width:760px){
    .hero{
        min-height:auto;
        background-position:center right 36%;
    }

    .navbar{
        width:min(92vw, 1180px);
        align-items:flex-start;
        flex-direction:column;
        gap:14px;
    }

    .nav-links{
        width:100%;
        overflow-x:auto;
        padding-bottom:4px;
    }

    .hero-content,
    .section-inner{
        width:min(92vw, 1180px);
    }

    .hero-content{
        padding:38px 0 42px;
    }

    .section{
        padding:42px 0;
    }

    .section-head{
        display:block;
    }

    .section-head p{
        margin-top:12px;
    }

    .service-card{
        grid-template-columns:1fr;
        min-height:0;
    }

    .service-media{
        height:215px;
    }

    .service-top{
        gap:10px;
    }

    .service-card h3{
        font-size:20px;
    }

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

    .destination-card{
        display:grid;
        grid-template-columns:42% 1fr;
    }

    .destination-card img{
        height:100%;
        min-height:150px;
    }

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

    .contact-panel{
        grid-template-columns:1fr;
        padding:24px;
        border-radius:22px;
    }

    .translate-box{
        top:300px;
    }

    .whatsapp-float{
        width:58px;
        height:58px;
        right:15px;
        bottom:15px;
    }

    .whatsapp-float svg{
        width:34px;
        height:34px;
    }

    .marezu-powered{
        width:240px;
        height:40px;
        left:15px;
    }

    .marezu-powered.mobile-open,
    .marezu-powered:hover{
        height:250px;
    }

    .marezu-powered-top{
        height:40px;
    }

    .marezu-powered-top small{
        font-size:9px;
    }

    .marezu-logo{
        height:12px;
    }

    .marezu-powered-preview{
        height:80px;
    }

    .marezu-powered-content p{
        font-size:12px;
    }

    .marezu-powered-btn{
        font-size:14px;
        padding:10px;
    }
}

@media(max-width:520px){
    .buttons{
        display:grid;
        grid-template-columns:1fr 1fr;
    }

    .btn{
        padding:13px 14px;
    }

    .route-row{
        grid-template-columns:1fr;
    }

    .mini-price{
        width:84px;
    }

    .service-top{
        display:block;
    }

    .price-badge{
        margin-top:14px;
        width:98px;
    }

    .card-actions{
        align-items:flex-start;
        flex-direction:column;
    }

    .book-link{
        width:100%;
    }

    .destination-card{
        grid-template-columns:1fr;
    }
}

/* Accessibility */
a:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
