:root {
    /* Updated Gold Color per user request */
    --gold-main: #cba978;
    --gold-light: #e0cca8;
    /* Lighter tint of #cba978 */
    --gold-dark: #a68b5e;
    /* Darker shade of #cba978 */
    --wa-green: #25d366;
    /* Light Theme Overrides */
    --bg-white: #ffffff;
    --bg-black: #ffffff;
    /* Overriding to white per user request "tum web sitesinde koyu arka planlari kaldir" */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Montserrat', sans-serif;

    /* Gradients */
    --gold-gradient: linear-gradient(135deg, #AA8625 0%, #D4AF37 50%, #F1D592 100%);
    --wa-btn-gradient: linear-gradient(90deg, var(--gold-dark) 0%, var(--wa-green) 100%);
    --insta-gradient: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);

    /* Neon Glows - Modified for Light Theme suitability or removed if too stark */
    --neon-gold: 0 5px 15px rgba(212, 175, 55, 0.2);
    --neon-gold-strong: 0 10px 25px rgba(212, 175, 55, 0.4);
    --neon-insta: 0 5px 20px rgba(220, 39, 67, 0.3);

    /* Romantic Additions */
    --color-passion: #e91e63;
    /* Sensual Pink/Red */
    --passion-gradient: linear-gradient(135deg, #e91e63 0%, #ff4081 100%);
    --soft-glow: 0 0 25px rgba(233, 30, 99, 0.3);
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }

    15% {
        transform: scale(1.15);
    }

    30% {
        transform: scale(1);
    }

    45% {
        transform: scale(1.15);
    }

    60% {
        transform: scale(1);
    }

    100% {
        transform: scale(1);
    }
}

.romantic-pulse {
    animation: heartbeat 3s infinite;
    color: var(--color-passion) !important;
    text-shadow: 0 0 10px rgba(233, 30, 99, 0.4);
}

.romantic-glow {
    box-shadow: var(--soft-glow) !important;
    border-color: var(--color-passion) !important;
}

.desktop-hide {
    display: none !important;
}

@media (max-width: 900px) {
    .desktop-hide {
        display: block !important;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    border-radius: 20px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-white);
    color: #111;
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.heading-spacing {
    margin-bottom: 100px !important;
}

/* HEADER */
header {
    position: fixed !important;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #eee;
    padding: 20px 0;
    transition: transform 0.3s ease-in-out;
}

.header-hidden {
    transform: translateY(-100%);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee-content:hover {
    animation-play-state: paused;
}

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

.logo-img {
    height: 75px;
    width: auto;
    transition: 0.3s;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    font-weight: 800;
    color: #000;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

.nav-links a:hover {
    color: var(--gold-main);
}

.header-cta {
    background: var(--gold-main);
    color: #000;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(203, 169, 120, 0.3);
    transition: 0.3s;
}

.header-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(203, 169, 120, 0.5);
    background: var(--gold-light);
}

/* HERO */
.hero-slider {
    height: 900px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

/* EXPLOSIVE TYPOGRAPHY */
.explosive-text {
    font-size: clamp(2rem, 6vw, 4rem);
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px;
}

h2 {
    font-size: clamp(1.8rem, 5vw, 3.5rem) !important;
    /* Responsive Heading */
}

.explosive-sub {
    font-size: 0.9rem;
    background: var(--gold-main);
    color: #000;
    padding: 6px 15px;
    font-weight: 800;
    border-radius: 4px;
}

/* BUTTONS */
.btn-brand {
    background: var(--gold-main);
    color: #000;
    padding: 16px 35px;
    font-weight: 900;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-brand:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: var(--neon-gold-strong);
}

/* HOOK CARDS - LIGHT THEME REDESIGN */
.hook-card {
    background: #fff;
    color: #333;
    /* Dark text */
    padding: 50px 30px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
    /* Subtle dark border */
    transition: 0.4s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 550px;
    height: 100%;
    /* Black Light Neon Effect */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.hook-card h3 {
    color: #000 !important;
    /* Force black for visibility */
}

.hook-card:hover {
    transform: translateY(-5px);
    /* Stronger Black Neon on Hover */
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.4);
    border-color: #000;
}

/* New Ribbon Design: Vertical Banner hanging from top */
.hook-card::before {
    content: 'FIRSAT';
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 10px;
    position: absolute;
    top: 0;
    right: 30px;
    background: var(--gold-main);
    color: #000;
    width: 40px;
    height: 60px;
    font-weight: 900;
    font-size: 0.7rem;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
    border-radius: 0 0 5px 5px;
    z-index: 10;
}

/* ATMOSPHERE CARDS REDESIGN (V3 - LUXURY OVERLAY) */
/* ATMOSPHERE GRID REDESIGN */
.atmosphere-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.atmosphere-card-v3 {
    height: 400px;
    /* Enforced consistent height */
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
}

.atmosphere-card-v3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Crucial for uniformity */
    transition: 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.atmosphere-card-v3::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0.6) 40%, transparent 100%);
    opacity: 0.9;
    transition: 0.5s;
}

.atmosphere-card-v3 .content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 30px;
    z-index: 5;
    color: #fff;
    transform: translateY(20px);
    transition: 0.5s;
}

.atmosphere-card-v3 h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    color: var(--gold-main);
}

.atmosphere-card-v3 p {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 20px;
    line-height: 1.5;
}

.atmosphere-card-v3 .arrow-btn {
    font-size: 2rem;
    color: var(--gold-main);
    opacity: 0;
    transform: translateX(-20px);
    transition: 0.5s;
}

/* Hover Effects V3 */
.atmosphere-card-v3:hover img {
    transform: scale(1.1);
}

.atmosphere-card-v3:hover .content-overlay {
    transform: translateY(0);
}

.atmosphere-card-v3:hover .arrow-btn {
    opacity: 1;
    transform: translateX(0);
}

.atmosphere-card-v3:hover::after {
    opacity: 1;
    background: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0.8) 60%, transparent 100%);
}


/* DIAMOND REVIEWS (FULL SPREAD SLIDER) */
.review-slider-window {
    overflow: hidden;
    padding: 50px 0;
    width: 100%;
    max-width: 100%;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

/* Review Scrolling Animation */
@keyframes scrollReviews {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-300px * 5 - 25px * 5));
    }

    /* adjust based on content width */
}

.review-track {
    display: flex;
    gap: 25px;
    animation: scrollReviews 40s linear infinite;
    width: max-content;
}

.review-track:hover {
    animation-play-state: paused;
}

/* Increased gap and duration for 'spread' feel */
.diamond-review {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #eee;
    position: relative;
    width: 300px;
    /* Fixed width to ensure 4 fit in ~1200px container */
    flex-shrink: 0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: 0.4s;

}

.diamond-review:hover {
    border-color: #ffbf00;
    /* Requested Neon Color */
    box-shadow: 0 0 20px rgba(255, 191, 0, 0.4);
    transform: translateY(-5px);
}

/* FOOTER (V4) */
.footer-v4 {
    background: #000;
    color: #fff;
    padding: 80px 0 0;
    border-top: 2px solid var(--gold-main);
}

.f-box-v4 {
    background: rgba(255, 255, 255, 0.03);
    padding: 35px;
    border-radius: 15px;
    border: 1px solid #222;
    transition: 0.3s;
    height: 100%;
    box-shadow: var(--neon-gold);
}

.f-box-v4:hover {
    border-color: var(--gold-main);
    box-shadow: var(--neon-gold-strong);
}

.f-box-v4 h4 {
    color: var(--gold-main);
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.insta-neon-btn {
    background: var(--insta-gradient);
    color: #fff;
    text-decoration: none;
    padding: 15px;
    display: block;
    border-radius: 10px;
    font-weight: 900;
    text-align: center;
    transition: 0.4s;
    box-shadow: var(--neon-insta);
}

.insta-neon-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(220, 39, 67, 0.8);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .atmosphere-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .atmosphere-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .hero-slider {
        height: 60vh;
    }

    .diamond-review {
        width: 300px;
    }
}

/* UTILITIES */
.text-center {
    text-align: center;
}

/* 3D POP OUT EFFECT */
.pop-out-3d {
    transform: scale(1.08) translateY(-10px) !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 175, 55, 0.3) !important;
    z-index: 20 !important;
    border: 2px solid var(--gold-main) !important;
    background: #050505;
}

/* NIRVANA PACKAGE CARDS */
.nirvana-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.nirvana-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    /* Deep premium shadow */
    display: flex;
    flex-direction: column;
    min-height: 600px;
    border: none;
    /* Removed border */
}

.nirvana-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15), 0 0 30px rgba(203, 169, 120, 0.2);
    /* Gold glow */
}

.nirvana-content {
    padding: 35px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
    margin-top: 0;
    z-index: 5;
    border-top: none;
}

.nirvana-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: #000;
    /* Dark text */
    margin-bottom: 10px;
    line-height: 1.1;
}

.nirvana-desc {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.nirvana-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    /* Light border */
    padding-top: 20px;
    margin-top: auto;
}

.nirvana-btn {
    background: transparent;
    border: 1px solid #ccc;
    color: #333;
    /* Dark text */
    padding: 10px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    transition: 0.4s;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    text-align: center;
    width: auto;
    min-width: 100px;
    display: inline-block;
}

.nirvana-card:hover .nirvana-btn {
    background: var(--gold-main);
    color: #fff;
    border-color: var(--gold-main);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

/* EXPLOSIVE SERVICES PAGE REDESIGN (MAGAZINE STYLE) */
.explosive-service-section {
    background: #000;
    color: #fff;
    padding: 100px 0;
    overflow: hidden;
}

.service-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 120px;
    position: relative;
    gap: 60px;
}

/* Alternate Direction */
.service-row:nth-child(even) {
    flex-direction: row-reverse;
}

.service-img-box {
    flex: 1;
    height: 500px;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(255, 191, 0, 0.15);
    transform: perspective(1000px) rotateY(5deg);
    transition: 0.5s;
}

.service-row:nth-child(even) .service-img-box {
    transform: perspective(1000px) rotateY(-5deg);
}

.service-row:hover .service-img-box {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
    box-shadow: 0 0 60px rgba(255, 191, 0, 0.4);
}

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

.service-content {
    flex: 0.9;
    position: relative;
    z-index: 10;
}

.service-number {
    font-size: 8rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    top: -80px;
    left: -20px;
    line-height: 1;
    pointer-events: none;
    font-family: var(--font-heading);
}

.service-title {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    line-height: 1;
}

.service-title span {
    color: #ffbf00;
    /* Neon Gold */
    display: block;
    font-size: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 5px;
    margin-bottom: 10px;
}

.service-desc {
    color: #aaa;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

.neon-price-tag {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffbf00;
    text-shadow: 0 0 15px rgba(255, 191, 0, 0.5);
    margin-bottom: 30px;
    display: inline-block;
    border-bottom: 2px solid #ffbf00;
    padding-bottom: 5px;
}

.explosive-btn {
    padding: 18px 40px;
    background: linear-gradient(45deg, #ffbf00, #ff8c00);
    color: #000;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    display: inline-block;
    box-shadow: 0 0 30px rgba(255, 191, 0, 0.4);
    transition: 0.3s;
    letter-spacing: 1px;
}

.explosive-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 50px rgba(255, 191, 0, 0.8);
    background: #fff;
}

/* Mobile Responsive for Explosive Layout */
@media (max-width: 992px) {
    .service-row {
        flex-direction: column !important;
        gap: 30px;
        margin-bottom: 80px;
        text-align: center;
    }

    .service-img-box {
        width: 100%;
        height: 350px;
        transform: none !important;
    }

    .service-number {
        display: none;
    }

    .service-title {
        font-size: 2.5rem;
    }
}

.no-ribbon::before {
    display: none !important;
}

/* REDESIGNED BRAND PROMISE SECTION */
.brand-promise-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    /* Connected look */
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid #333;
    border-radius: 20px;
    overflow: hidden;
    background: #0a0a0a;
}

.promise-item {
    flex: 1;
    padding: 40px 20px;
    text-align: center;
    border-right: 1px solid #333;
    transition: 0.3s;
    position: relative;
}

.promise-item:last-child {
    border-right: none;
}

.promise-item:hover {
    background: #111;
}

.promise-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: inline-block;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.4));
}

.promise-title {
    font-family: var(--font-heading);
    color: var(--gold-main);
    font-size: 1.2rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.promise-desc {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 250px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .brand-promise-wrapper {
        flex-direction: column;
        border: none;
        background: transparent;
        border-radius: 0;
    }

    .promise-item {
        border-right: none;
        border-bottom: 1px solid #222;
        background: #0a0a0a;
        margin-bottom: 15px;
        border-radius: 10px;
        border: 1px solid #222;
    }
}

/* BOTTOM NAVIGATION BAR (MOBILE) */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid #ddd;
    display: none;
    /* Hidden on desktop */
    justify-content: space-around;
    align-items: center;
    height: 70px;
    z-index: 9999;
    padding-bottom: env(safe-area-inset-bottom);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #888;
    text-decoration: none;
    font-size: 0.7rem;
    width: 100%;
    height: 100%;
    transition: 0.3s;
    font-weight: 600;
}

.nav-item svg {
    margin-bottom: 4px;
    transition: 0.3s;
}

.nav-item.active {
    color: var(--gold-main);
}

.nav-item.active svg {
    stroke: var(--gold-main);
    fill: rgba(203, 169, 120, 0.1);
}

/* Central Action Button */
.central-item {
    position: relative;
    top: -15px;
}

.central-icon {
    background: var(--gold-main);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(203, 169, 120, 0.4);
    transition: 0.3s;
    border: 4px solid #fff;
}

.central-item svg {
    stroke: #fff;
    margin-bottom: 0;
}

.central-item span {
    margin-top: 5px;
    font-weight: 700;
}

.central-item.active .central-icon {
    background: #000;
    border-color: var(--gold-main);
}

.central-item.active svg {
    stroke: var(--gold-main);
    fill: none;
}

/* ============================================
   MOBILE APP TRANSFORMATION (COMPREHENSIVE)
   ============================================ */

@media (max-width: 768px) {
    /* === GLOBAL APP RESETS === */

    /* Edge-to-Edge Layout: Remove all container constraints */
    .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    /* Section Padding Reset for Mobile App */
    .section-padding {
        padding: 40px 0 !important;
    }

    /* === APP-LIKE CARD STYLES === */

    /* Borderless, Shadowless Cards for Native Feel */
    .hook-card,
    .price-card,
    .atmosphere-card-v3,
    .nirvana-card,
    .card {
        border-radius: 0 !important;
        border: none !important;
        box-shadow: none !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    /* Card Padding: Consistent Internal Spacing */
    .hook-card,
    .price-card {
        padding: 25px 20px !important;
    }

    /* === TOUCH-FIRST INTERACTIONS === */

    /* Large Touch Targets (Minimum 48px) */
    button,
    .btn-brand,
    .explosive-btn,
    input,
    select,
    textarea,
    a {
        min-height: 48px;
        font-size: 16px !important;
        /* Prevent iOS zoom */
    }

    /* Input Styling for App Experience */
    input,
    select,
    textarea {
        padding: 20px !important;
        border-radius: 16px !important;
        background: #111 !important;
        border: 1px solid #333 !important;
        color: #fff !important;
    }

    /* Button Enhancements */
    button,
    .btn-brand,
    .explosive-btn {
        padding: 18px 30px !important;
        border-radius: 16px !important;
        font-weight: 700;
        letter-spacing: 0.5px;
    }

    /* === TYPOGRAPHY MOBILE OPTIMIZATION === */

    /* Hero Headlines */
    h1,
    .explosive-text {
        font-size: 2rem !important;
        line-height: 1.2 !important;
    }

    h2 {
        font-size: 1.6rem !important;
    }

    h3 {
        font-size: 1.3rem !important;
    }

    /* Body Text Readability */
    p,
    li {
        font-size: 1rem;
        line-height: 1.7;
    }

    /* === HERO SECTIONS OPTIMIZATION === */

    .hero-slider,
    .booking-hero,
    section[class*="hero"] {
        height: 50vh !important;
        min-height: 400px;
    }

    .hero-slider h1 {
        font-size: 2.2rem !important;
    }

    /* === BOTTOM NAV OPTIMIZATION === */

    .bottom-nav {
        display: flex;
        height: calc(70px + env(safe-area-inset-bottom));
        padding-bottom: calc(10px + env(safe-area-inset-bottom));
    }

    body {
        padding-bottom: calc(80px + env(safe-area-inset-bottom));
    }

    /* Hide Desktop Elements */
    .header-cta,
    .nav-links,
    .desktop-only {
        display: none !important;
    }

    /* === GRID ADJUSTMENTS === */

    .atmosphere-grid,
    .nirvana-grid {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }

    /* === SERVICE LAYOUTS === */

    .service-row {
        flex-direction: column !important;
        gap: 30px;
        margin-bottom: 60px;
        text-align: left;
    }

    .service-img-box {
        width: 100%;
        height: 280px;
        transform: none !important;
        border-radius: 0 !important;
    }

    .service-number {
        display: none;
    }

    .service-title {
        font-size: 1.8rem !important;
    }

    /* === REVIEWS & TESTIMONIALS === */

    .diamond-review {
        width: 100%;
        margin-bottom: 20px;
    }

    /* === PROMISE SECTION === */

    .brand-promise-wrapper {
        flex-direction: column;
        border: none;
        background: transparent;
        border-radius: 0;
        gap: 0;
    }

    .promise-item {
        border-right: none;
        border-bottom: 1px solid #222;
        background: #0a0a0a;
        margin-bottom: 0;
        border-radius: 0;
        border: none;
        border-bottom: 1px solid #222;
        padding: 30px 20px;
    }

    .promise-item:last-child {
        border-bottom: none;
    }

    /* === INTERNAL CONTENT PADDING === */

    /* Add padding INSIDE cards/sections, not containers */
    .hook-card>*:not(form),
    .price-card>*,
    .service-content,
    section>div:not(.container) {
        padding-left: 20px;
        padding-right: 20px;
    }

    /* Form Elements Keep Their Own Padding */
    form {
        padding: 0 20px;
    }

    /* === MOBILE MENU === */

    .mobile-menu a {
        font-size: 1.8rem;
    }

    /* === APP-SPECIFIC ENHANCEMENTS === */

    /* Smooth Scrolling */
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }

    /* Tap Highlight Removal */
    * {
        -webkit-tap-highlight-color: transparent;
    }

    /* Prevent Double-Tap Zoom */
    * {
        touch-action: manipulation;
    }

    /* === SPECIFIC FIXES === */

    /* Card Content Left Alignment */
    .hook-card,
    .service-content,
    .card-body {
        text-align: left !important;
    }

    .hook-card h3,
    .hook-card p,
    .service-content h2,
    .service-content p {
        text-align: left !important;
    }

    /* Footer Stays Left Aligned */
    .footer-v4,
    .footer-v4 h4,
    .footer-v4 ul li a,
    .footer-v4 p {
        text-align: left !important;
    }

    /* Header Compact */
    header {
        padding: 12px 0 !important;
    }

    /* Campaign Cards */
    .atmosphere-card-v3 {
        margin-bottom: 0 !important;
    }
}

/* --- APP FEEL UPGRADES --- */

/* Soft Corners */
.hook-card,
.btn-brand,
.price-card,
.atmosphere-card-v3,
input,
select,
textarea {
    border-radius: 20px !important;
}

/* Haptic Press Effect */
button:active,
.btn-brand:active,
.nav-item:active {
    transform: scale(0.96) !important;
    transition: transform 0.1s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Justified Text Alignment */
p,
.service-desc,
.promise-desc {
    text-align: left;
}

/* Safe Area for Notch */
body {
    padding-top: env(safe-area-inset-top);
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
}

/* Specific Mobile Padding adjustments */
@media (max-width: 768px) {
    .container {
        padding-left: 25px;
        padding-right: 25px;
    }
}

/* --- REDESIGNED MOBILE MENU --- */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: #000;
    /* Dark premium background */
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    backdrop-filter: blur(10px);
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu a {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 2rem;
    /* Big readable font */
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.3s;
}

.mobile-menu a:hover {
    color: var(--gold-main);
    transform: scale(1.1);
}

.mobile-menu .close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    color: #fff;
    font-size: 3rem;
    cursor: pointer;
    transition: 0.3s;
}

.mobile-menu .close-btn:hover {
    color: var(--color-passion);
    transform: rotate(90deg);
}

.mobile-menu .btn-brand {
    background: var(--gold-main) !important;
    color: #000 !important;
    font-size: 1.2rem !important;
    padding: 20px 40px !important;
    margin-top: 20px;
}

/* --- REDESIGNED MOBILE MENU (SAFE APPEND) --- */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    backdrop-filter: blur(10px);
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu a {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.3s;
}

.mobile-menu a:hover {
    color: var(--gold-main);
    transform: scale(1.1);
}

.mobile-menu .close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    color: #fff;
    font-size: 3rem;
    cursor: pointer;
    transition: 0.3s;
}

.mobile-menu .close-btn:hover {
    color: var(--color-passion);
    transform: rotate(90deg);
}

/* Mobile Responsive for Explosive Layout */
@media (max-width: 900px) {
    .desktop-only {
        display: none !important;
    }

    /* Mobile Typography Request: Center global, but specific areas Left */
    body,
    h1,
    h2,
    h3,
    h4,
    p {
        text-align: center;
    }

    /* FIX: Card Content should be Left Aligned for readability per user correction */
    .hook-card,
    .service-content,
    .explosive-service-section,
    .card-body {
        text-align: left !important;
    }

    .hook-card h3,
    .hook-card p,
    .service-content h2,
    .service-content p {
        text-align: left !important;
    }

    .container {
        padding: 0 30px !important;
    }

    header {
        padding: 10px 0 !important;
    }

    /* Fix unsightly gaps in centered text */
    p {
        text-align-last: center;
    }

    /* Override for Cards: remove center-last */
    .hook-card p,
    .service-content p {
        text-align-last: left !important;
    }
}

/* Footer Corrected: Left Alignment */
.footer-v4 {
    text-align: left !important;
}

.footer-v4 h4,
.footer-v4 ul li a,
.footer-v4 p {
    justify-content: flex-start;
    /* Flex items left align */
    text-align: left;
}

/* Bottom Nav Chrome Fix */
.bottom-nav {
    padding-bottom: env(safe-area-inset-bottom);
    height: calc(70px + env(safe-area-inset-bottom));
    /* Adjust height dynamically */
    align-items: flex-start;
    /* Align icons to top if extra space at bottom */
    padding-top: 10px;
}

/* Footer Copyright Split Layout */
.copyright-row {
    border-top: 1px solid #222;
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .copyright-row {
        flex-direction: column;
        gap: 15px;
        text-align: center !important;
        align-items: center !important;
        padding-bottom: 100px;
    }

    .copyright-row div {
        font-size: 0.7rem !important;
        /* Smaller Soykar text on mobile */
    }
}

/* VIRTUAL TOUR REDESIGN (Sanal Tur) */
.tour-hero-v2 {
    height: 500px;
    padding-top: 120px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1600334129128-685c5582fd35?q=80&w=2070') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tour-viewer-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
    margin-bottom: 40px;
}

.tour-header-bar {
    background: #fcfcfc;
    padding: 15px 25px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tour-frame-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    background: #000;
}

@media (max-width: 768px) {
    .tour-frame-wrapper {
        padding-bottom: 120%;
        /* Taller Aspect Ratio for Mobile Keşif */
    }
}

.modern-persuasion-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    margin: 60px 0;
}

@media (max-width: 992px) {
    .modern-persuasion-card {
        flex-direction: column;
    }

    .persuasion-img-side {
        height: 250px !important;
    }
}

/* CAMPAIGN DISCOUNT BADGE RESPONSIVE */
.campaign-discount-badge {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: #fff;
    padding: 10px 20px;
    border-radius: 0 0 15px 15px;
    /* Shield-like look hanging from top */
    font-weight: 900;
    font-size: 0.95rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    letter-spacing: 0.5px;
    white-space: nowrap;
    z-index: 100;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: none;
}

@media (max-width: 768px) {
    .campaign-discount-badge {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
        margin: 0 auto 15px !important;
        display: block !important;
        width: max-content !important;
    }

    .condition-card {
        text-align: center !important;
    }
}