/* Ridek Theme - Premium Taxi Visual Identity */
:root {
    --primary: #FDB714;
    /* Specific Ridek Yellow */
    --primary-hover: #e5a410;
    --dark: #121519;
    /* Ridek Deep Dark */
    --darker: #0d0f12;
    --light-bg: #F8F9FA;
    --text-gray: #666;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    /* Sadece logo kutusu; genişlik tavanı .logo içindeki min(..., calc(100% - …)) */
    --header-logo-h: clamp(72px, 9vw, 120px);
    --header-logo-max-h: min(120px, 26vh);
    --header-logo-w: 3000px;
    --header-pad-y: clamp(6px, 0.5vw, 14px);
}

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

html {
    scroll-behavior: auto;
    overflow-x: hidden;
    max-width: 100%;
}

*,
*::before,
*::after {
    scroll-behavior: auto !important;
}

body {
    background-color: #fff;
    color: var(--text-gray);
    line-height: 1.7;
    overflow-x: hidden;
    max-width: 100%;
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

/* Typography */
h1,
h2,
h3,
h4 {
    color: var(--dark);
    font-weight: 800;
    line-height: 1.2;
}

.subtitle {
    color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: inline-block;
    font-size: 0.95rem;
}

.subtitle::before {
    content: '/// ';
}

/* Buttons */
.btn-main {
    background: var(--primary);
    color: var(--dark);
    padding: 16px 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.95rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-main:hover {
    background: var(--dark);
    color: #fff;
    transform: translateY(-3px);
}

/* Topbar */
.topbar {
    background: #fff;
    padding: 8px 0;
    border-bottom: 1px solid #eaeaea;
    display: none;
}

@media(min-width: 992px) {
    .topbar {
        display: block;
    }
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info {
    display: flex;
    gap: 40px;
}

.top-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: var(--dark);
    font-size: 1rem;
}

.top-info-item i {
    color: var(--primary);
    font-size: 28px;
}

.top-info-item span {
    color: var(--text-gray);
    font-size: 0.75rem;
    display: block;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: -2px;
}

/* Header & Nav */
header {
    background: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: clamp(8px, 1.4vw, 16px);
    min-height: 0;
    height: auto;
    padding: var(--header-pad-y) 0;
}

.logo {
    font-size: 30px;
    font-weight: 900;
    color: var(--dark);
    display: flex;
    align-items: center;
    align-self: center;
    gap: 10px;
    letter-spacing: -1px;
    line-height: 0;
    padding: 0;
    margin-top: 0;
    flex: 1 1 auto;
    min-width: 0;
    max-width: min(var(--header-logo-w), calc(100% - 420px));
}

.logo i {
    color: var(--primary);
    font-size: 32px;

}

.logo-container {

    display: block;
    width: 100%;
    max-width: min(var(--header-logo-w), 100%);
    height: var(--header-logo-h);
    max-height: var(--header-logo-max-h);
    overflow: visible;
    line-height: 0;
}

.logo img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    display: block;
    object-fit: contain;
    object-position: left center;
    transform: scale(2.6);
    transform-origin: left center;
    margin-top: 18px;

}

.footer-logo img {
    height: 160px;
    width: auto;
    max-width: 100%;
}

.nav-links {
    display: flex;
    height: auto;
    align-items: center;
}

.nav-links li {
    display: flex;
    align-items: center;
}

.nav-links a {
    display: flex;
    align-items: center;
    padding: 0 16px;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    font-size: 0.85rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
}

.nav-right {
    display: flex;
    align-items: center;
    flex: 0 1 auto;
    min-width: 0;
}

.nav-right .btn-main {
    height: auto;
    padding: 11px 22px;
    margin: 0;
    background: var(--dark);
    color: #fff;
    font-size: 0.82rem;
    align-self: center;
}

.nav-right .btn-main:hover {
    background: var(--primary);
    color: var(--dark);
    transform: none;
}

.mobile-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--dark);
    align-items: center;
}

@media (max-width: 1100px) and (min-width: 993px) {
    :root {
        --header-logo-h: clamp(66px, 8.5vw, 110px);
        --header-logo-max-h: 110px;
        --header-logo-w: 3000px;
    }

    .nav-wrapper {
        min-height: 0;
        padding: 5px 0;
    }

    .logo {
        max-width: min(var(--header-logo-w), calc(100% - 360px));
    }

    .nav-links a {
        padding: 0 12px;
        font-size: 0.78rem;
    }

    .nav-right .btn-main {
        padding: 9px 17px;
        font-size: 0.76rem;
    }
}

@media (min-width: 1200px) {
    :root {
        --header-logo-h: clamp(84px, 10vw, 140px);
        --header-logo-max-h: min(140px, 30vh);
        --header-logo-w: 3000px;
    }

    .logo {
        max-width: min(var(--header-logo-w), calc(100% - 400px));
    }
}

/* Hero Ridek Section */
.hero-ridek {
    position: relative;
    background-color: var(--dark);
    overflow: hidden;
    height: auto;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-ridek::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background-color: var(--primary);
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 0;
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    opacity: 0.15;
    z-index: 0;
    background-image: url('https://images.unsplash.com/photo-1549315488-70068bad62d9?q=80&w=2000');
    background-size: cover;
    background-position: center;
    mix-blend-mode: luminosity;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 80px 0;
}

.hero-ridek h1 {
    font-size: 5.6rem;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.0;
    letter-spacing: -1.8px;
}

.hero-ridek p {
    font-size: 1.15rem;
    color: #e0e0e0;
    margin-bottom: 45px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    position: relative;
    z-index: 5;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #1ebc59;
    color: white;
}

.hero-image {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 55%;
    max-width: 900px;
}

.hero-image img {
    width: 100%;
    filter: drop-shadow(-20px 30px 40px rgba(0, 0, 0, 0.6));
}

/* Diagonal Service Marquee */
.service-marquee {
    position: relative;
    margin-top: -18px;
    z-index: 6;
    background: linear-gradient(90deg, #0d0f12 0%, #141922 100%);
    border-top: 2px solid rgba(253, 183, 20, 0.55);
    border-bottom: 2px solid rgba(253, 183, 20, 0.55);
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    transform: rotate(-2.6deg);
    transform-origin: center center;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

.service-marquee-track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    width: max-content;
    padding: 16px 0;
    animation: taxi-marquee 30s linear infinite;
    animation-play-state: paused;
    will-change: transform;
}

.service-marquee-set {
    display: flex;
    align-items: center;
    gap: 26px;
    white-space: nowrap;
}

.service-marquee-track span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(253, 183, 20, 0.12);
    border: 1px solid rgba(253, 183, 20, 0.45);
    color: #fff;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.service-marquee-track i {
    color: var(--primary);
    font-size: 0.95rem;
}

@keyframes taxi-marquee {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(calc(-1 * var(--marquee-shift, 0px)), 0, 0);
    }
}

/* Inner Page Hero Setup */
.inner-hero {
    position: relative;
    background-color: var(--dark);
    background-image: url('assets/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 140px 0 100px !important;
    overflow: hidden;
    text-align: center;
    border-bottom: 4px solid var(--primary);
}

.inner-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(18, 21, 25, 0.95), rgba(18, 21, 25, 0.8), rgba(18, 21, 25, 0.95));
    z-index: 1;
}

.inner-hero .hero-content {
    margin: 0 auto;
    max-width: 800px;
    position: relative;
    z-index: 3;
}

.inner-hero h1 {
    font-size: 3.8rem;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.inner-hero h1 span {
    color: var(--primary);
}

/* About Ridek Section */
.section-padding {
    padding: 120px 0;
}

.about-ridek {
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-img-wrap {
    position: relative;
    z-index: 1;
}

.about-img-wrap::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    width: 65%;
    height: 85%;
    background-color: var(--primary);
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
    z-index: -1;
}

.about-img-wrap img {
    width: 100%;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
}

.experience-circle {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border: 3px dashed #f0f0f0;
    z-index: 2;
}

.experience-circle .inner {
    text-align: center;
}

.experience-circle i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 5px;
}

.experience-circle span {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
}

.about-text h2 {
    font-size: 3.5rem;
    margin-bottom: 30px;
    display: block;
    width: 100%;
}

.about-text p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.founder-box {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.founder-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.founder-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.founder-info .details h4 {
    font-size: 0.8rem;
    color: var(--text-gray);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.founder-info .name {
    font-size: 1.4rem;
    color: var(--dark);
    font-weight: 800;
}

.call-box {
    border-left: 2px solid var(--primary);
    padding-left: 30px;
}

.call-box h4 {
    font-size: 0.85rem;
    color: var(--text-gray);
    text-transform: uppercase;
    margin-bottom: 5px;
    font-weight: 700;
}

.call-box a {
    font-size: 1.8rem;
    color: var(--primary);
    font-weight: 900;
}

/* Dark Sections & Regions layout */
.dark-section {
    background-color: var(--dark);
    color: #fff;
    padding: 130px 0;
}

.dark-section .section-title h2 {
    color: #fff;
    font-size: 3.2rem;
}

.dark-section .section-title p {
    color: #aaa;
    font-size: 1.1rem;
}

.section-title.center {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 70px;
}

/* The Ridek Offer/Region Cards */
.ridek-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.ridek-card {
    background: #1a1d24;
    transition: var(--transition);
    border-radius: 12px;
    border: 1px solid #2a2d35;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.ridek-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.ridek-card-img {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: var(--darker);
}

.ridek-card-img .bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    transition: transform 0.8s ease;
}

.ridek-card:hover .ridek-card-img .bg {
    transform: scale(1.15);
    opacity: 0.7;
}

.ridek-card-img::after {
    display: none;
}

.ridek-card-img .taxi-overlay {
    position: absolute;
    bottom: 15px;
    right: -30px;
    width: 85%;
    z-index: 2;
    transition: transform 0.5s ease;
    filter: drop-shadow(-10px 10px 15px rgba(0, 0, 0, 0.4));
}

.ridek-card:hover .taxi-overlay {
    transform: translateX(-20px);
}

.ridek-card-content {
    padding: 40px 35px;
    background: #1a1d24;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.ridek-card-content h3 {
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.ridek-card-content p {
    color: #aaa;
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.7;
    flex-grow: 1;
}

.btn-readmore {
    align-self: flex-start;
    background: #2a2d35;
    color: #fff;
    font-weight: 800;
    padding: 12px 28px;
    border-radius: 6px;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

/* Accordion Section */
.area-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #2a2d35;
    background: #1a1d24;
}

.accordion-btn {
    width: 100%;
    text-align: left;
    padding: 22px 30px;
    background: #1a1d24;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.accordion-btn:hover {
    background: #21252d;
    color: var(--primary);
}

.accordion-btn.active {
    background: #21252d;
    color: var(--primary);
    border-bottom: 1px solid #2a2d35;
}

.accordion-btn i {
    transition: transform 0.3s ease;
}

.accordion-btn.active i {
    transform: rotate(180deg);
}

.accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: #121519;
    padding: 0 30px;
}

.accordion-panel p {
    color: #aaa;
    font-size: 1.05rem;
    margin-bottom: 25px;
    line-height: 1.7;
}

.accordion-panel.show {
    max-height: 400px;
    padding: 30px;
}

/* Booking Section */
.booking-section {
    display: grid;
    grid-template-columns: 35% 65%;
    background: var(--darker);
    overflow: hidden;
}

.booking-left {
    background: var(--primary);
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.booking-left img {
    position: absolute;
    right: -180px;
    width: 160%;
    max-width: 800px;
    z-index: 2;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.4));
}

.booking-right {
    padding: 120px 80px 120px 150px;
    position: relative;
}

.booking-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: -80px;
    width: 160px;
    height: 100%;
    background: var(--darker);
    clip-path: polygon(80px 0, 100% 0, 100% 100%, 0 100%);
    z-index: 1;
}

.booking-right .subtitle {
    position: relative;
    z-index: 2;
}

.booking-right h2 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 45px;
    position: relative;
    z-index: 2;
}

.booking-form {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.booking-form input,
.booking-form select {
    width: 100%;
    padding: 18px 25px;
    background: #1a1d24;
    border: 1px solid #282c35;
    color: #fff;
    font-size: 1rem;
    transition: var(--transition);
}

.booking-form input:focus {
    outline: none;
    border-color: var(--primary);
}

.booking-form .btn-main {
    grid-column: span 2;
    justify-self: start;
    padding: 18px 45px;
    margin-top: 15px;
}

/* Footer */
footer {
    background: #08090b;
    color: #aaa;
    padding: 90px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    margin-bottom: 80px;
}

.footer-col h4 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
}

.footer-col p {
    margin-bottom: 25px;
    line-height: 1.8;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    display: inline-block;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary);
    transform: translateX(8px);
}

.footer-contact li {
    display: flex;
    align-items: stretch;
    gap: 20px;
    margin-bottom: 25px;
}

.footer-contact i {
    font-size: 24px;
    color: var(--primary);
    line-height: 1.2;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #1a1c22;
    font-size: 0.95rem;
}

/* Floating WA */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
}

.floating-wa:hover {
    transform: scale(1.1);
}

/* Responsive Options */
@media(max-width: 1200px) {
    .hero-ridek h1 {
        font-size: 4.4rem;
    }

    .hero-image {
        right: -5%;
        width: 65%;
    }
}

@media(max-width: 992px) {
    :root {
        --header-logo-h: clamp(66px, 16vw, 108px);
        --header-logo-max-h: min(108px, 34vw);
        --header-logo-w: calc(100vw - 88px);
    }

    .hero-ridek {
        padding: 120px 0;
        min-height: auto;
        text-align: center;
    }

    .hero-ridek::before {
        width: 100%;
        height: 60%;
        clip-path: polygon(0 50%, 100% 0, 100% 100%, 0% 100%);
        bottom: 0;
        top: auto;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-buttons {
        justify-content: center;
        width: 100%;
    }

    .hero-buttons .btn-main {
        width: 100%;
        margin: 0;
    }

    .hero-image {
        display: none;
    }

    .inner-hero {
        padding: 110px 0 80px !important;
    }

    .inner-hero .hero-content {
        max-width: 100%;
        padding: 0 10px;
    }

    .inner-hero h1 {
        font-size: clamp(2.3rem, 9vw, 3rem);
        line-height: 1.05;
        letter-spacing: -0.5px;
        word-break: break-word;
    }

    .inner-hero p {
        font-size: 1.02rem !important;
    }

    .service-marquee {
        margin-top: -8px;
        transform: none;
    }

    .service-marquee-track {
        gap: 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .experience-circle {
        right: 20px;
        width: 140px;
        height: 140px;
    }

    .experience-circle h3 {
        font-size: 2rem;
    }

    .booking-section {
        grid-template-columns: 1fr;
    }

    .booking-left {
        height: 350px;
        justify-content: center;
    }

    .booking-left img {
        position: relative;
        right: 0;
        width: 90%;
        max-width: 500px;
        transform: scale(1.2) translateY(20px);
    }

    .booking-right {
        padding: 80px 30px;
    }

    .booking-right::before {
        display: none;
    }

    .booking-form {
        grid-template-columns: 1fr;
    }

    .booking-form .btn-main {
        max-width: none;
    }

    .logo-container {
        max-width: 100%;
        overflow: visible;
    }

    .nav-links {
        position: fixed;
        top: calc((var(--header-pad-y) * 2) + var(--header-logo-max-h) + 22px);
        right: 0;
        transform: translateX(100%);
        width: 300px;
        height: calc(100vh - ((var(--header-pad-y) * 2) + var(--header-logo-max-h) + 22px));
        max-height: calc(100vh - ((var(--header-pad-y) * 2) + var(--header-logo-max-h) + 22px));
        background: #fff;
        flex-direction: column;
        padding: 40px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease-in-out !important;
        z-index: 9999;
        visibility: hidden;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }

    .nav-links.active {
        transform: translateX(0);
        visibility: visible;
    }

    .nav-links li {
        margin-bottom: 20px;
        height: auto;
    }

    /* Mobilde logo ortada, menü sağda */
    .nav-wrapper {
        display: grid;
        grid-template-columns: minmax(44px, 1fr) minmax(0, 1fr) minmax(44px, 1fr);
        align-items: center;
        justify-items: stretch;
        height: auto;
        min-height: 0;
        padding: 10px 0 8px;
        gap: 6px;
    }

    .nav-right {
        grid-column: 1;
        grid-row: 1;
        width: 0;
        height: 0;
        overflow: visible;
        justify-self: start;
        align-self: center;
    }

    .logo {
        grid-column: 1;
        grid-row: 1;
        justify-self: center;
        max-width: var(--header-logo-w);
        width: 100%;

    }

    .logo img {
        object-position: center center;
        transform: scale(2.7);
        transform-origin: center center;
        margin-top: 7px;
    }

    .mobile-toggle {
        display: flex;
        grid-column: 3;
        grid-row: 1;
        justify-self: end;
        align-self: center;
        position: relative;
        z-index: 9999;
        width: 48px;
        height: 48px;
        padding: 0;
        justify-content: center;
        align-items: center;
        font-size: 24px;
    }

    .nav-right>.btn-main {
        display: none;
    }
}

@media(max-width: 576px) {
    :root {
        --header-logo-h: clamp(60px, 15vw, 100px);
        --header-logo-max-h: min(100px, 32vw);
        --header-logo-w: calc(100vw - 72px);
    }

    .container {
        padding-left: max(16px, env(safe-area-inset-left));
        padding-right: max(16px, env(safe-area-inset-right));
    }

    .hero-ridek .subtitle {
        font-size: 1.05rem;
        letter-spacing: 1.5px;
        margin-bottom: 18px;
    }

    .hero-ridek h1 {
        font-size: clamp(2.95rem, 8.5vw, 3.6rem);
        margin-bottom: 22px;
        letter-spacing: -1px;
        line-height: 1.08;
    }

    .hero-ridek p {
        font-size: 1.18rem;
        line-height: 1.65;
        margin-bottom: 34px;
    }

    .hero-ridek {
        padding: 60px 0 80px;
        text-align: left;
    }

    .inner-hero {
        padding: 95px 0 65px !important;
    }

    .inner-hero h1 {
        font-size: clamp(2rem, 11vw, 2.4rem);
        letter-spacing: -0.3px;
    }

    .inner-hero p {
        font-size: 0.95rem !important;
    }

    .service-marquee {
        margin-top: -6px;
        transform: none;
    }

    .service-marquee-track {
        padding: 12px 0;
    }

    .service-marquee-track span {
        font-size: 0.75rem;
        padding: 8px 14px;
        letter-spacing: 0.35px;
    }

    .nav-wrapper {
        height: auto;
        min-height: 0;
        padding: 2px 0;
        column-gap: 6px;
    }

    .logo {
        font-size: 24px;
        margin-top: 0;
        align-self: center;
        justify-self: center;
        position: static;
        max-width: var(--header-logo-w);
        width: 100%;
    }

    .logo-container {
        margin: 0 auto;
        overflow: visible;
    }

    .logo i {
        font-size: 24px;
    }

    .footer-logo img {
        height: 130px;
    }

    .section-title h2,
    .about-text h2,
    .booking-right h2,
    .dark-section .section-title h2 {
        font-size: 2.2rem !important;
        line-height: 1.2;
    }

    .section-padding,
    .dark-section {
        padding: 60px 0;
    }

    .founder-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding-top: 25px;
        margin-top: 30px;
    }

    .call-box {
        padding-left: 0;
        border-left: none;
        border-top: 2px solid var(--primary);
        padding-top: 15px;
        width: 100%;
    }

    .booking-right {
        padding: 40px 20px;
    }

    .booking-form .btn-main {
        padding: 16px 20px;
        font-size: 1rem;
    }

    .experience-circle {
        position: relative;
        left: 0;
        right: auto;
        top: 0;
        bottom: 0;
        transform: none;
        margin: -50px auto 30px;
        width: 130px;
        height: 130px;
        z-index: 5;
    }

    .about-img-wrap {
        margin-bottom: 20px;
    }

    .about-img-wrap::before {
        top: -15px;
        left: -15px;
        width: 80%;
    }

    .footer-col {
        text-align: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-contact li {
        justify-content: center;
        text-align: left;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .footer-contact i {
        margin-bottom: 5px;
    }

    .footer-grid {
        gap: 40px;
    }

    .floating-wa {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 30px;
    }

    .ridek-card-content {
        padding: 30px 25px;
    }

    .hero-buttons {
        gap: 15px;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        margin-top: 20px;
    }

    .hero-buttons .btn-main {
        width: 100%;
        display: flex;
        text-align: center;
        justify-content: center;
        padding: 20px 0;
        font-size: 1.22rem;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
        border-radius: 6px;
        border: 2px solid transparent;
        margin: 0;
    }

    .hero-buttons .btn-main:first-child {
        background: var(--darker);
        color: var(--primary);
        border-color: var(--primary);
    }

    .hero-buttons .btn-whatsapp {
        border-color: #fff;
    }

    .nav-links {
        top: calc((var(--header-pad-y) * 2) + var(--header-logo-max-h) + 22px);
        height: calc(100vh - ((var(--header-pad-y) * 2) + var(--header-logo-max-h) + 22px));
        max-height: calc(100vh - ((var(--header-pad-y) * 2) + var(--header-logo-max-h) + 22px));
        padding: 28px 22px;
        transition: transform 0.3s ease-in-out !important;
    }

    .mobile-toggle {
        width: 44px;
        height: 44px;
        font-size: 22px;
    }

    .top-info {
        flex-direction: column;
        gap: 15px;
    }

    /* Global & Specific Mobile Overrides */
    .premium-contact-section {
        padding: 50px 0 !important;
    }

    .premium-contact-section h2 {
        font-size: 2rem !important;
        margin-bottom: 30px !important;
        word-break: break-word;
    }

    .contact-left {
        padding: 35px 20px !important;
        min-width: 100% !important;
        text-align: center;
    }

    .contact-list {
        gap: 20px !important;
    }

    .contact-item {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 15px !important;
        background: #1e222a !important;
        padding: 25px 20px !important;
        border-radius: 15px !important;
        border: 1px solid #2a2d35 !important;
    }

    .contact-right {
        min-width: 100% !important;
        display: block;
    }

    .contact-right iframe {
        min-height: 300px !important;
        display: block;
    }

    .cta-floating-box {
        position: relative !important;
        bottom: auto !important;
        right: auto !important;
        margin: 0 !important;
        width: 100% !important;
        max-width: none !important;
        padding: 30px 20px !important;
        text-align: center;
        border-radius: 0 !important;
        box-shadow: none !important;
    }

    .accordion-btn {
        padding: 16px 20px;
        font-size: 1.15rem;
    }

    .accordion-panel {
        padding: 0 20px;
    }

    .accordion-panel.show {
        padding: 25px 20px;
    }

    .ridek-card-img {
        height: 220px;
    }
}