@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');

/* =========================================

   ========================================= */

/* --- CSS Variables & Design Tokens --- */
:root {
    /* Color Palette */
    --clr-primary: #9b51e0; /* Vivid Purple from original palette */
    --clr-primary-light: #c084fc;
    --clr-secondary: #f78da7; /* Pale Pink from original palette */
    --clr-secondary-light: #fbcfe8;
    --clr-accent: #309dd8; /* Blue from original palette */
    --clr-accent-light: #bae6fd;
    --clr-warning: #fcb900;
    
    /* Backgrounds */
    --clr-bg: #ffffff;
    --clr-bg-light: #f8fafc;
    --clr-bg-glass: rgba(255, 255, 255, 0.85);
    
    /* Text */
    --clr-text-main: #1e293b;
    --clr-text-muted: #64748b;
    --clr-white: #ffffff;

    /* Typography */
    --font-main: 'Nunito Sans', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 10px 40px -10px rgba(155, 81, 224, 0.3);

    /* Border Radius */
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
}

/* --- Resets & Global --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-main);
    color: var(--clr-text-main);
    background-color: var(--clr-bg);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- Typography Utilities --- */
.text-gradient {
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-center {
    text-align: center;
}

/* --- Layout --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--clr-bg-light);
}

.team-role{
    text-align: center;
    width: 100%;
}


/* --- Components: Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-smooth);
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
    color: var(--clr-white);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 45px -10px rgba(155, 81, 224, 0.5);
    filter: brightness(1.1);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--clr-primary);
    color: var(--clr-primary);
}

.btn-outline:hover {
    background-color: var(--clr-primary);
    color: var(--clr-white);
}

.btn-white {
    background-color: var(--clr-white);
    color: var(--clr-primary);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

/* --- Header / Navbar (2-Tier) --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all var(--transition-smooth);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: var(--shadow-sm);
}

.header-top {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header-top-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* Left side flag pill */
.lang-switch-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    color: var(--clr-text-main);
    padding: 6px 14px 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,0.06);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-smooth);
}

.lang-switch-pill:hover {
    transform: translateY(-2px);
    background: #ffffff;
    color: var(--clr-primary);
    box-shadow: var(--shadow-md);
    border-color: rgba(155, 81, 224, 0.3);
}

.flag-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    background-color: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

img[src*="tr.png"].flag-icon {
    object-position: 8% center;
    transform: scale(1.15);
}

/* Center Logo */
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo-img {
    height: 80px;
    width: auto;
    transition: transform var(--transition-smooth);
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

/* Right Side Actions */
.header-right-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-appointment-pill {
    background-color: rgba(155, 81, 224, 0.08);
    color: var(--clr-primary);
    font-weight: 700;
    padding: 8px 24px;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(155, 81, 224, 0.15);
    border: 1px solid rgba(155, 81, 224, 0.2);
    transition: all var(--transition-fast);
    letter-spacing: 0.3px;
}

.btn-appointment-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(236, 72, 153, 0.3);
}

/* Bottom Tier (Navigation) */
.header-bottom {
    padding: 0;
    background: white;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    padding: 16px 0;
}

.nav-link {
    font-weight: 800;
    color: var(--clr-text-main);
    font-size: 0.95rem;
    text-decoration: none;
    transition: color var(--transition-fast);
    display: flex;
    align-items: center;
}

.nav-link:hover, .nav-link.active {
    color: var(--clr-primary);
}

.home-icon {
    width: 22px;
    height: 22px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 3px;
    background-color: var(--clr-primary);
    position: absolute;
    transition: all var(--transition-fast);
}

.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 10px; }
.menu-toggle span:nth-child(3) { top: 20px; }

/* --- Hero Section --- */
.hero {
    position: relative;
    padding-top: 160px;
    padding-bottom: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 10s ease-in-out infinite alternate;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background-color: var(--clr-primary-light);
}

.blob-2 {
    bottom: 10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background-color: var(--clr-secondary-light);
    animation-delay: -5s;
}

.blob-3 {
    top: 30%;
    left: 40%;
    width: 300px;
    height: 300px;
    background-color: var(--clr-accent-light);
    animation-duration: 15s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 50px) scale(1.1); }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--clr-secondary-light);
    color: var(--clr-primary);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
}

.hero-desc {
    font-size: 1.125rem;
    color: var(--clr-text-muted);
    margin-bottom: 32px;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--clr-primary);
    line-height: 1;
}

.stat-text {
    font-size: 0.875rem;
    color: var(--clr-text-muted);
    font-weight: 500;
    margin-top: 4px;
}

.hero-image {
    position: relative;
    z-index: 1;
}

.slider-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    z-index: 1;
    aspect-ratio: 4/5;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
    transform: scale(1.05);
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.slide .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.slide-caption {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 16px 20px;
    border-radius: 0;
    font-weight: 800;
    color: var(--clr-primary);
    text-align: center;
    font-size: 1.15rem;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.3s ease 0.5s, transform 0.3s ease 0.5s;
    transform: translateY(20px);
}

.slide-caption .lang-switch-pill {
    background: linear-gradient(135deg, rgba(255,255,255,0.4), rgba(255,255,255,0.1));
    border: 1px solid rgba(255,255,255,0.6);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    padding: 6px 18px;
    border-radius: 25px;
    color: var(--clr-text-main);
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.slide-caption .lang-switch-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    background: linear-gradient(135deg, rgba(255,255,255,0.6), rgba(255,255,255,0.2));
}

.slide.active .slide-caption {
    opacity: 1;
    transform: translateY(0);
}

.slider-dots {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(155, 81, 224, 0.3);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.dot.active, .dot:hover {
    background: var(--clr-primary);
    transform: scale(1.2);
}

.floating-card {
    position: absolute;
    z-index: 10;
    background: var(--clr-bg-glass);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 6s ease-in-out infinite alternate;
}

.floating-card .icon {
    font-size: 1.5rem;
    background: var(--clr-white);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

.card-1 {
    top: 40px;
    left: -40px;
}

.card-2 {
    bottom: 60px;
    right: -30px;
    animation-delay: -3s;
}

/* --- Services & Pricing --- */
.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-desc {
    color: var(--clr-text-muted);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--clr-bg);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
    border: 2px solid var(--clr-primary);
    background: linear-gradient(to bottom, #fff, var(--clr-bg-light));
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
    color: white;
    padding: 6px 20px;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.card-header p {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
}

.card-price {
    margin: 30px 0;
    display: flex;
    align-items: flex-start;
    color: var(--clr-primary);
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 5px;
    margin-right: 4px;
}

.amount {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
}

.card-features {
    margin-bottom: 40px;
    flex-grow: 1;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--clr-text-main);
    font-weight: 500;
}

.check-icon {
    color: var(--clr-primary);
    flex-shrink: 0;
}

/* --- Infographic Style Featured Services --- */
.creative-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 30px;
    margin-bottom: 20px;
}

.info-card {
    position: relative;
    padding: 0;
    margin: 0;
    transition: transform 0.4s ease;
    text-decoration: none;
    color: inherit;
    --c-main: #0085d1;
    --c-dark: #005a8f;
}

.info-card:hover {
    transform: translateY(-10px);
}

/* Card Modifiers for specific pastel colors */
.info-card.c-blue {
    --c-main: #8ac4f2;
    --c-dark: #6ba4d2;
}
.info-card.c-pink {
    --c-main: #f48fb1;
    --c-dark: #e26a92;
}
.info-card.c-teal {
    --c-main: #80cbc4;
    --c-dark: #4db6ac;
}
.info-card.c-orange {
    --c-main: #ffb74d;
    --c-dark: #f59818;
}

/* White Body / Image Container */
.ic-body {
    background: transparent;
    padding: 0;
    position: relative;
    z-index: 3;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ic-bg-img {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    z-index: 1;
    border-radius: 40px;
    border: 4px solid #ffffff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.ic-text-box {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 20px 0 0;
    display: flex;
    justify-content: center;
}

/* Top Dark Tip - Softened */
.ic-top-dark {
    display: none !important;
}

/* Top Main Color Shape - Changed from sharp clip-path to soft pseudo-elements */
.ic-top-main {
    display: none !important;
}

.ic-top-main::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 100px;
    height: 100px;
    background: var(--c-main);
    border-radius: 40px; /* Extremely soft oval tip */
}

.ic-top-main::after {
    content: '';
    position: absolute;
    top: 45px;
    left: 0;
    width: 100%;
    height: 75px;
    background: var(--c-main);
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
}

/* Icon / Image Circle */
.ic-icon-circle {
    position: absolute;
    top: -70px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 140px;
    background: #ffffff;
    border-radius: 50%;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.ic-icon-circle img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid #fff;
}

/* Title Pill */
.ic-title {
    background: var(--c-main);
    color: #fff;
    padding: 8px 12px;
    border-radius: 30px;
    display: inline-block;
    font-size: clamp(0.6rem, 2.5vw, 1rem);
    font-weight: 700;
    margin-bottom: 20px;
    max-width: 100%;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    box-sizing: border-box;
}

/* Description Text */
.ic-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    flex-grow: 1;
}

/* Bottom Dark Diamond - Softened */
.ic-bottom-dark {
    display: none !important;
}

/* Bottom Main Color Diamond with Number - Softened */
.ic-bottom-main {
    display: none !important;
}

.ic-bottom-main span {
    transform: rotate(-45deg);
    color: #fff;
    font-weight: 800;
    font-size: 1.3rem;
}

@media (max-width: 1024px) {
    .creative-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 640px) {
    .creative-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        max-width: 100%;
        padding: 0 5px;
    }
    .info-card {
        padding: 0;
        margin: 0;
    }
    .ic-body {
        padding: 0;
    }
    .ic-bg-img {
        border-radius: 25px;
        border: 3px solid #ffffff;
    }
    .ic-text-box {
        padding: 15px 0 0;
    }
    .ic-title {
        font-size: 0.65rem;
        padding: 6px 8px;
        line-height: 1.2;
        margin-bottom: 0;
        white-space: nowrap;
        max-width: 100%;
        box-sizing: border-box;
    }
    .ic-top-dark {
        width: 50px;
        height: 50px;
    }
    .ic-top-main {
        width: 100px;
        height: 50px;
        top: 20px;
        border-radius: 35px 35px 0 0;
    }
    .ic-icon-circle {
        width: 80px;
        height: 80px;
        top: -40px;
        border-width: 4px;
    }

    .ic-desc {
        display: none; /* Mobilde aÃƒÂ§Ã„Â±klama tamamen gizli kalsÃ„Â±n */
    }
    .ic-bottom-dark {
        display: none !important;
    }
    .ic-bottom-main {
        display: none !important;
    }
}

/* --- Team Dark Section --- */
.team-top-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #333;
    letter-spacing: 2px;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.team-dark-section {
    background: #f4efe6;
    padding: 100px 0 150px;
    position: relative;
    overflow: hidden;
    color: #333;
    z-index: 10;
}

.td-decor-diagonal {
    position: absolute;
    top: -40px;
    left: -40px;
    width: 200px;
    height: 150px;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        #c2a077 10px,
        #c2a077 12px
    );
    opacity: 0.8;
    z-index: -1;
}

.td-decor-diagonal-mobile {
    display: none;
}

.td-mobile-desc {
    display: none;
}

.td-decor-logo {
    position: absolute;
    top: 40px;
    right: 120px;
    width: 100px;
    height: 100px;
    border: 2px solid #c2a077;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c2a077;
    font-weight: bold;
    font-size: 0.85rem;
    text-align: center;
    line-height: 1.2;
}

.td-grid {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px; /* Breathing room between photos and the bottom block */
    position: relative;
    z-index: 2;
}

.td-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

.td-img-wrapper {
    width: 100%;
    aspect-ratio: 1; /* Square layout like mockup */
    margin-bottom: 25px;
    border: 1px solid #c2a077;
    padding: 10px;
    background-color: transparent;
}

.td-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.td-img-wrapper.img-border-blue img {
    border: 4px solid #99b9cf;
}

.td-img-wrapper.img-border-beige img {
    border: 4px solid #e8d5c4;
}

.td-content {
    text-align: left;
}

.td-name {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: #333;
    text-transform: uppercase;
    text-align: center;
}

.td-name-first {
    color: #333;
}

.td-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #b59573;
    margin-bottom: 5px;
}

.td-desc {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.td-bottom-wrapper {
    position: relative;
    display: flex;
    align-items: center; /* Horizontally aligns UZMAN KADROMUZ with the horizontal line */
    margin-top: 80px; /* Space from the cards */
    margin-right: calc(50% - 50vw); /* Extends to viewport right edge */
    padding-right: 170px; /* Padding for the line to stop at center of TEAM */
}

.td-bottom-text {
    flex-shrink: 0;
    font-size: 4.5rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px #c2a077;
    text-transform: uppercase;
    margin-right: 20px;
    line-height: 1; 
    margin-bottom: 0;
}

.td-bottom-line {
    flex-grow: 1;
    position: relative;
    height: 3px; 
    background: #c2a077;
}

/* Horizontal line: just the background of .td-bottom-line */
.td-bottom-line::before {
    display: none; 
}

/* Vertical line going UP from the horizontal line */
.td-bottom-line::after {
    content: '';
    position: absolute;
    bottom: 0; 
    right: 0; /* Aligned with the end of the horizontal line */
    width: 3px;
    height: 120px; /* Goes up */
    background: #c2a077;
}

.td-vertical-text {
    position: absolute;
    right: 130px; /* Centers the text */
    bottom: calc(50% + 120px - 1.5px); /* Sits exactly on the top of the vertical line */
    font-size: 4.2rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px #c2a077;
    letter-spacing: 10px;
    writing-mode: vertical-rl;
    line-height: 1;
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .td-vertical-text {
        display: none;
    }
    .td-bottom-text {
        font-size: 2.5rem;
        line-height: 1;
    }
    .td-bottom-line::after {
        display: none; /* remove vertical line on small screens */
    }
}

@media (max-width: 768px) {
    .td-bottom-text {
        font-size: 2rem;
    }
    .td-decor-logo {
        width: 70px;
        height: 70px;
        font-size: 0.7rem;
        top: 20px;
        right: 20px;
    }
}

/* --- Branches Photo Frames Collage --- */
.branches-section {
    padding: 80px 0;
    background-color: var(--clr-light); /* pastel background */
}

.photo-frames-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 5px 0;
}

.pf-title-box {
    background-color: var(--clr-primary);
    border: 15px solid #ffffff;
    border-radius: 50px;
    padding: 10px 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pf-title-box h3 {
    margin: 0;
    color: white;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pf-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    align-items: stretch;
}

.pf-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pf-item {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    border: 15px solid #ffffff;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    cursor: zoom-in;
    background-color: #fff;
}

.pf-item:hover {
    transform: scale(1.02);
}

.pf-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.pf-item:hover img {
    transform: scale(1.1);
}

.pf-col-left .pf-item {
    border-radius: 100px 40px 40px 100px;
    min-height: 450px;
}

.pf-col-center .pf-item {
    height: 50%;
    min-height: 250px;
}

.pf-col-center .pf-item-top {
    border-radius: 100px 100px 40px 40px;
}

.pf-col-center .pf-item-bottom {
    border-radius: 40px 40px 100px 100px;
}

.pf-col-right .pf-item {
    border-radius: 40px 100px 100px 40px;
    min-height: 450px;
}

@media (max-width: 992px) {
    .pf-grid {
        grid-template-columns: 1fr;
    }
    .pf-col-center {
        display: none !important;
    }
    .pf-col-left .pf-item, .pf-col-right .pf-item {
        border-radius: 60px;
        min-height: 350px;
    }
}

/* Custom Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    padding: 20px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    border-radius: var(--radius-md);
    box-shadow: 0 15px 50px rgba(0,0,0,0.5);
    animation: zoomIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    object-fit: contain;
}

@keyframes zoomIn {
    from {transform: scale(0.9); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 40px;
    color: #fff;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s, transform 0.3s;
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--clr-primary);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- Why Us --- */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-list {
    margin-top: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--clr-white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-text p {
    color: var(--clr-text-muted);
}

.glass-panel {
    background: var(--clr-white);
    padding: 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transform: rotate(3deg);
    transition: transform var(--transition-smooth);
}

.glass-panel:hover {
    transform: rotate(0deg);
}

.rounded-img {
    border-radius: var(--radius-md);
    object-fit: cover;
    aspect-ratio: 4/3;
}

/* --- CTA Section --- */
.cta-box {
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
    border-radius: var(--radius-lg);
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--clr-white);
    box-shadow: var(--shadow-glow);
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* --- Notice Section --- */
.notice-section {
    padding: 40px 0 20px 0;
    position: relative;
    z-index: 5;
}

.cloud-notice {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.9));
    backdrop-filter: blur(10px);
    padding: 24px 40px;
    border-radius: 50px 30px 60px 40px / 40px 60px 30px 50px;
    box-shadow: 0 10px 30px -5px rgba(155, 81, 224, 0.1), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    transition: all var(--transition-smooth);
}

.cloud-notice:hover {
    border-radius: 40px 60px 30px 50px / 50px 30px 60px 40px;
    transform: translateY(-2px);
    box-shadow: 0 15px 35px -5px rgba(155, 81, 224, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.notice-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
    color: white;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    box-shadow: 0 4px 10px rgba(155, 81, 224, 0.2);
}

.notice-icon svg {
    width: 24px;
    height: 24px;
}

.notice-content {
    flex-grow: 1;
}

.notice-content h4 {
    color: var(--clr-text-main);
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 6px;
    line-height: 1.2;
}

.notice-content p {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .cloud-notice {
        flex-direction: row;
        text-align: left;
        padding: 12px 16px;
        border-radius: 20px;
        gap: 12px;
    }
    .notice-icon {
        width: 32px;
        height: 32px;
    }
    .notice-icon svg {
        width: 16px;
        height: 16px;
    }
    .notice-content h4 {
        font-size: 0.9rem;
        margin-bottom: 2px;
    }
    .notice-content p {
        font-size: 0.75rem;
        line-height: 1.3;
    }
}

/* --- Mobile Exclusive Appointment Button --- */
.mobile-exclusive-btn {
    display: none;
}

@media (max-width: 768px) {
    .mobile-exclusive-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
        background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
        color: white;
        padding: 12px 20px;
        border-radius: var(--radius-full);
        font-weight: 700;
        font-size: 1rem;
        text-decoration: none;
        margin-top: 16px;
        margin-bottom: 0;
        box-shadow: 0 4px 15px rgba(155, 81, 224, 0.3);
        position: relative;
    }
    .mobile-exclusive-btn svg {
        width: 18px;
        height: 18px;
    }
    .breathing-btn {
        animation: breathing-btn-anim 2.5s infinite ease-in-out;
    }
    @keyframes breathing-btn-anim {
        0% { transform: scale(1); box-shadow: 0 4px 15px rgba(155, 81, 224, 0.3); }
        50% { transform: scale(1.02); box-shadow: 0 8px 25px rgba(155, 81, 224, 0.5); }
        100% { transform: scale(1); box-shadow: 0 4px 15px rgba(155, 81, 224, 0.3); }
    }
}

/* --- Campaign Banner --- */
.campaign-banner {
    padding: 80px 0 60px;
    background-color: #fffaf5;
    position: relative;
    width: 100%;
    margin-top: -30px;
    z-index: 10;
}

.campaign-floating-title {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: #fffaf5; /* Matches campaign banner background perfectly */
    color: var(--clr-primary);
    padding: 6px 24px;
    border-radius: 30px;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    z-index: 15;
    white-space: nowrap;
}

.campaign-floating-title h2 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.campaign-side-img {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 25%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    opacity: 0.9;
}

.campaign-side-img.left-img {
    left: 0;
    -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,0.8) 50%, rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,0.8) 50%, rgba(0,0,0,0) 100%);
}

.campaign-side-img.right-img {
    right: 0;
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 0%, rgba(0,0,0,0.8) 50%, rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(to left, rgba(0,0,0,1) 0%, rgba(0,0,0,0.8) 50%, rgba(0,0,0,0) 100%);
}

.campaign-banner .container {
    position: relative;
    z-index: 2;
}

.campaign-wrapper {
    background-color: transparent;
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.campaign-header {
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.campaign-subtitle {
    color: #1e3a8a;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.campaign-title {
    color: #3b82f6;
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    margin: 10px 0;
    text-shadow: 2px 2px 0px rgba(59, 130, 246, 0.1);
}

.campaign-title .currency {
    font-size: 3rem;
    font-weight: 700;
}

.campaign-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #1e40af;
    color: white;
    padding: 8px 30px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(30, 64, 175, 0.3);
}

.campaign-cards {
    display: flex;
    gap: 15px;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    flex-wrap: nowrap;
}

.c-card {
    background: #fff;
    border: 2px solid #bfdbfe;
    border-radius: 16px;
    padding: 20px 10px;
    text-align: center;
    flex: 1;
    min-width: 140px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease;
}

.c-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.05);
}

.c-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
}

.c-icon svg {
    width: 48px;
    height: 48px;
}

.c-text {
    font-size: 0.8rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.3;
    margin-bottom: 12px;
    height: 32px;
}

.c-price {
    font-size: 2rem;
    font-weight: 800;
}

.clr-blue { color: #2563eb; }
.clr-pink { color: #ec4899; }
.clr-green { color: #16a34a; }
.clr-purple { color: #9333ea; }
.clr-red { color: #dc2626; }

.campaign-bottom-bar {
    background: #e0f2fe;
    border: 1px solid #bae6fd;
    border-radius: 50px;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.c-bar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #0f172a;
}

.c-bar-icon {
    font-size: 1.5rem;
    color: #2563eb;
    background: white;
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Responsive adjustments for Campaign Banner */
@media (max-width: 992px) {
    .campaign-badge-round {
        width: 100px;
        height: 100px;
        font-size: 0.7rem;
        top: -10px;
    }
    .campaign-title { font-size: 4rem; }
    .campaign-pill { font-size: 1.1rem; }
}

@media (max-width: 768px) {
    .campaign-banner {
        padding: 40px 0;
    }
    .campaign-badge-round {
        position: relative;
        margin: 0 auto 20px;
        top: 0;
        right: auto;
    }
    .campaign-cards {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .c-card {
        min-width: calc(33.333% - 10px);
    }
    .campaign-bottom-bar {
        flex-direction: column;
        border-radius: 16px;
        align-items: flex-start;
    }
    .floating-card {
        display: none;
    }
}

@media (max-width: 480px) {
    .c-card {
        min-width: calc(50% - 10px);
        flex: 1 1 calc(50% - 10px);
    }
    .campaign-title { font-size: 3rem; }
}

/* --- Footer --- */
.footer {
    background-color: var(--clr-text-main);
    color: var(--clr-white);
    padding: 80px 0 20px;
}

.mobile-footer-grid {
    display: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo .logo-text {
    color: var(--clr-white);
}

.footer-logo .logo-text small {
    color: var(--clr-secondary-light);
}

.brand-col p {
    color: #94a3b8;
    margin: 20px 0;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background: var(--clr-primary);
    transform: translateY(-3px);
}

.footer-col h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--clr-white);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    color: #94a3b8;
}

.footer-col ul a:hover {
    color: var(--clr-white);
    padding-left: 5px;
}

.footer-col ul li {
    color: #94a3b8;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #94a3b8;
    font-size: 0.875rem;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .hero-container, .why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content {
        order: 2;
    }
    
    .hero-image {
        order: 1;
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
}

.header-right-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-left-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-back-btn {
    display: none; /* Hidden on Desktop by default */
}

@media (min-width: 769px) {
    .mobile-lang-btn-container,
    .mobile-social-btn,
    .mobile-only-row {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .desktop-home-icon {
        display: none !important;
    }
    .header-top {
        padding: 10px 0;
    }
    .logo-img {
        height: 45px;
    }
    .desktop-only {
        display: none !important;
    }
    .menu-toggle {
        display: flex;
    }
    /* Shrink the language pill on mobile proportionally */
    .lang-switch-pill {
        padding: 6px 14px;
        font-size: 0.9rem;
        gap: 6px;
        line-height: 1;
        border-radius: 50px;
    }
    .lang-switch-pill .flag-icon {
        width: 18px;
        height: auto;
        object-fit: contain;
    }
    /* Inner page logic on mobile */
    .inner-page-lang {
        display: none !important; /* Hide lang pill on inner pages header */
    }
    
    /* Homepage logic on mobile */
    .home .mobile-back-btn {
        display: none !important; /* Never show back button on homepage */
    }
    .home .lang-switch-pill {
        display: flex !important; /* Always show lang switch on homepage header */
    }
    .home .mobile-lang-btn-container {
        display: none !important; /* Hide the language button inside the mobile menu on homepage */
    }

    .mobile-back-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(253, 251, 248, 0.9));
        border: 1px solid rgba(220, 198, 175, 0.5);
        border-radius: 50%;
        color: #b59573;
        text-decoration: none;
        box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        transition: transform 0.2s ease;
    }
    .mobile-back-btn:active {
        transform: scale(0.95);
    }
    .mobile-back-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero {
        padding-top: 120px;
    }
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }

    .header-bottom {
        border: none;
    }

    .menu-toggle {
        display: flex !important;
        margin-left: auto;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        /* Premium Glassmorphism Background */
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(253, 251, 248, 0.95));
        backdrop-filter: blur(15px);
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 120px;
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1); /* Smoother slide in */
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0; /* Handled by padding now */
        text-align: center;
        padding: 0 10px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .nav-item {
        margin-bottom: 0;
        padding: 3px 0;
        border-bottom: 1px dashed rgba(181, 149, 115, 0.3);
        width: 100%;
    }
    
    .nav-item:last-child {
        border-bottom: none;
    }
    
    .mobile-social-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 28px;
        height: 28px;
        background: #fdfcfb;
        border: 1px solid rgba(220, 198, 175, 0.5);
        border-radius: 6px; /* Rounded squares */
        color: #b59573;
        transition: all 0.3s ease;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }
    
    .mobile-social-btn:active {
        transform: scale(0.9);
        background: #ebdacc;
    }
    
    .mobile-social-btn svg {
        width: 14px;
        height: 14px;
    }
    
    .nav-link {
        font-size: 1.3rem;
        font-weight: 800;
        color: #b59573; /* Elegant Gold */
        text-transform: uppercase;
        letter-spacing: 1.5px;
        transition: color 0.3s ease, transform 0.3s ease;
        display: inline-block;
    }
    
    .nav-link:active {
        transform: scale(0.95);
        color: #dcc6af;
    }
    
    /* Make home icon match the text size and color */
    .nav-link svg.home-icon {
        width: 28px;
        height: 28px;
        vertical-align: middle;
    }
    
    .btn-appointment {
        display: none;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(11px) rotate(45deg);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-11px) rotate(-45deg);
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .cta.section {
        padding: 30px 0;
    }
    .cta-box {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 24px 16px;
    }
    .cta-content h2 {
        font-size: 1.4rem;
        margin-bottom: 8px;
    }
    .cta-content p {
        font-size: 0.95rem;
    }
    .cta-action {
        width: 100%;
    }
    .mobile-full-width {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .desktop-footer {
        display: none !important;
    }

    .mobile-footer-grid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 10px;
        margin-bottom: 30px;
    }
    .mobile-footer-grid .footer-col {
        text-align: left;
    }
    .mobile-footer-grid ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .mobile-footer-grid ul li {
        margin-bottom: 8px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-wrap: nowrap;
        gap: 20px;
    }
    
    .card-1 {
        top: 10px;
        left: -10px;
        transform: scale(0.8);
    }
    
    .card-2 {
        bottom: 10px;
        right: -10px;
        transform: scale(0.8);
    }
}

/* --- Mobile Bottom Navigation (App-like) --- */
.mobile-bottom-nav {
    display: none;
}

@media (max-width: 991px) {
    /* Modify header for app-like feel */
    .header {
        padding: 12px 0;
        background: var(--clr-bg-glass);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    
    .header-actions {
        display: block;
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1002;
    }
    
    .btn-appointment {
        display: none;
    }
    
    /* Add padding to body to prevent content from hiding behind bottom nav */
    body {
        padding-bottom: 70px;
    }

    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: var(--clr-bg);
        box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.05);
        z-index: 1000;
        padding-bottom: env(safe-area-inset-bottom, 0);
        min-height: 65px; height: auto; align-items: center;
        justify-content: space-around;
        border-top: 1px solid rgba(0,0,0,0.05);
    }

    .bottom-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: var(--clr-text-muted);
        text-decoration: none;
        font-size: 0.65rem;
        font-weight: 500;
        gap: 4px;
        flex: 1;
        transition: color var(--transition-fast);
        -webkit-tap-highlight-color: transparent;
    }

    .bottom-nav-item.active {
        color: var(--clr-primary);
    }

    .bottom-nav-item svg {
        width: 22px;
        height: 22px;
        transition: transform var(--transition-fast);
    }

    .bottom-nav-item.active svg {
        transform: translateY(-2px);
    }

    /* Appointment Floating Action Button style inside bottom nav */
    .appointment-item {
        position: relative;
    }

    .appointment-icon {
        background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
        width: 48px;
        height: 48px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: -24px;
        margin-bottom: 2px;
        box-shadow: var(--shadow-md);
        border: 4px solid var(--clr-bg);
    }
    
    .appointment-item span {
        color: var(--clr-primary);
        font-weight: 600;
    }
}

/* --- Single Image Hero --- */
.hero-single {
    width: 100%;
    height: 60vh;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.hero-bg-desktop, .hero-bg-mobile {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg-mobile {
    display: none;
}

@media (max-width: 768px) {
    .hero-single {
        height: 40vh;
        min-height: 300px;
    }
    
    .hero-bg-desktop {
        display: none;
    }
    
    .hero-bg-mobile {
        display: block;
    }
}



.salon-content, .salon-content p, .salon-content li {
    font-size: 1.1rem !important;
}

@media (max-width: 768px) {
    .logo-img {
        height: 55px;
    }
}

/* --- Inner Page Specific Styles --- */
.inner-page {
    background: linear-gradient(135deg, #ffffff 0%, #fcfbf9 50%, #f4ebe2 100%);
    color: #333;
    overflow: hidden;
}

/* Page Header (Banner) */
.page-header {
    padding: 180px 0 80px;
    position: relative;
    text-align: center;
    background-color: #f7f1e6; /* Lighter beige */
}

.ph-decor-diagonal {
    display: none !important;
}

.page-title {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    color: #333;
    margin-bottom: 0;
    -webkit-text-stroke: 0;
    letter-spacing: normal;
    text-transform: none;
}

@media (max-width: 768px) {
    .page-header {
        padding: 105px 0 40px;
    }
    .page-title {
        font-size: 2.2rem;
        margin-bottom: 0;
    }
}

.ph-bottom-line {
    display: none !important;
}

/* About Grid */
.about-section {
    padding: 20px 0 100px;
    position: relative;
    z-index: 2;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.about-text-col .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #222;
}

@media (max-width: 768px) {
    .about-text-col .section-title {
        font-size: 1.6rem;
        white-space: normal; /* Allow wrapping on mobile to prevent overflow */
        word-break: break-word; /* Ensure long words don't overflow */
    }
}

.about-lead {
    font-size: 1.2rem;
    font-weight: 600;
    color: #b59573;
    margin-bottom: 30px;
    line-height: 1.6;
}

.about-history p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 15px;
}

.about-img-wrapper {
    position: relative;
    padding: 12px;
    /* Subtle gradient border */
    border: 3px solid transparent;
    border-radius: 20px;
    background: linear-gradient(#fdfbf7, #fdfbf7) padding-box,
                linear-gradient(135deg, #f0e4d8, #e0d0c1, #ecdcd0) border-box;
    box-shadow: 0 15px 35px rgba(200, 180, 160, 0.15);
}

.about-img-wrapper img {
    width: 100%;
    border-radius: 10px;
    display: block;
}

.about-img-decor {
    position: absolute;
    bottom: -25px;
    right: -25px;
    width: 120px;
    height: 120px;
    background: repeating-linear-gradient(45deg, transparent, transparent 8px, #dcc6af 8px, #dcc6af 10px);
    opacity: 0.35;
    z-index: -1;
}

/* Mission & Vision Cards (Sweeter & Cuter) */
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

@media (max-width: 768px) {
    .mv-grid {
        grid-template-columns: 1fr;
    }
}

.mv-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(253, 251, 248, 0.8));
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 35px; /* Sweeter roundness */
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 15px 30px rgba(200, 180, 160, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center; /* Centered content feels cuter */
}

.mv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(200, 180, 160, 0.15);
}

.mv-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #fcf8f2, #efdfcf);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b59573;
    margin: 0 auto 25px auto;
    box-shadow: 0 10px 20px rgba(220, 198, 175, 0.4);
    border: 2px solid #fff;
}

.mv-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 15px;
}

.mv-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 0;
}

/* Federation Banner (Light & Elegant) */
.federation-banner {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #ffffff, #fdfbf9);
    padding: 30px 40px;
    border-radius: 25px;
    gap: 25px;
    box-shadow: 0 15px 35px rgba(200, 180, 160, 0.1);
    border: 1px solid rgba(220, 198, 175, 0.3);
    position: relative;
    overflow: hidden;
}

.federation-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 200px;
    height: 200px;
    background: #e8d6c1;
    opacity: 0.15;
    border-radius: 50%;
    filter: blur(30px);
}

@media (max-width: 768px) {
    .federation-banner {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
}

.fed-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border: 2px solid #e0d0c1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b59573;
    background: #fff;
}

.fed-text {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.fed-text h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #333; /* Dark gray instead of white */
    margin: 0;
    line-height: 1.4;
    white-space: normal;
}

@media (min-width: 992px) {
    .fed-text {
        flex-wrap: nowrap;
    }
    .fed-text h4 {
        white-space: nowrap;
        font-size: 1.1rem;
    }
    .fed-text span {
        white-space: nowrap;
    }
}

.fed-text span {
    font-size: 0.85rem;
    color: #a88c6b;
    font-weight: 600;
    display: inline-block;
    padding: 6px 18px;
    border: 1px solid #ebdacc;
    background: #fdfcfb;
    border-radius: 50px;
}

/* Pricing Cards Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Reduced min-width slightly for mobile safety */
    gap: 20px; /* Reduced from 40px */
    margin-top: 30px;
}

.pricing-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(253, 251, 248, 0.8));
    backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 15px 35px rgba(200, 180, 160, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(200, 180, 160, 0.15);
}

.pricing-img {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.pricing-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pricing-card:hover .pricing-img img {
    transform: scale(1.1);
}

.pricing-content {
    padding: 20px; /* Reduced from 30px */
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pricing-title {
    font-size: 1.15rem; /* Reduced to fit on one line */
    font-weight: 800;
    color: #333;
    margin-bottom: 10px; /* Reduced from 15px */
    text-transform: uppercase;
    white-space: nowrap; /* Force single line */
    letter-spacing: -0.5px; /* Squeeze slightly */
}

@media (max-width: 450px) {
    .pricing-title {
        font-size: 0.95rem; /* Ensure it never wraps even on the smallest phones */
    }
}

.pricing-price {
    font-size: 2.2rem;
    font-weight: 900;
    color: transparent;
    background: linear-gradient(90deg, #c2a077, #dcc6af);
    -webkit-background-clip: text;
    margin-bottom: 25px;
    margin-top: auto;
}

.pricing-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #e8d6c1, #dcc6af);
    color: #fff;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.pricing-btn:hover {
    background: linear-gradient(135deg, #dcc6af, #c2a077);
    transform: translateY(-2px);
    color: #fff;
}

/* Compact Price Tag */
.pricing-tag {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(135deg, #e8d6c1, #dcc6af);
    color: #fff;
    font-size: 1.4rem;
    font-weight: 800;
    border-radius: 50px;
    margin-top: auto;
    letter-spacing: 0.5px;
}

/* Category Title */
.pricing-category-title {
    font-size: 2rem;
    font-weight: 800;
    color: #b59573;
    text-align: center;
    margin: 60px 0 20px;
    position: relative;
}

.pricing-category-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #dcc6af;
    margin: 15px auto 0;
    border-radius: 2px;
}

/* --- Services Grid Section --- */
.services-grid-section {
    padding: 60px 0;
    background-color: #fff;
}
.sg-header {
    margin-bottom: 50px;
}
.sg-main-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #b59573;
    margin-bottom: 15px;
}
.sg-subtitle {
    font-size: 1.1rem;
    color: #777;
    max-width: 600px;
    margin: 0 auto;
}
.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}
.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f1f1f1;
    width: calc(33.333% - 20px);
}


.service-card-yatay {
    background: #fff;
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f1f1f1;
    width: calc(100% - 20px);
}
@media (max-width: 992px) {
    .service-card {
        width: calc(50% - 15px);
    }
}
@media (max-width: 768px) {
    .service-card {
        width: 100%;
    }
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(155, 81, 224, 0.15);
    border-color: #f1e9f9;
}
.sc-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: #f9f6fd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}
.service-card:hover .sc-icon-wrapper {
    transform: scale(1.1);
    background-color: #f1e9f9;
}
.sc-title {
    font-size: 1.2rem;
    color: var(--clr-primary, #9b51e0);
    margin-bottom: 10px;
    font-weight: 700;
    white-space: normal;
}
.sc-desc {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 0;
}

/* --- Full Width Certificate Card --- */
.full-width-card {
    background: linear-gradient(135deg, #f9f6fd 0%, #f1e9f9 100%);
    border-radius: 20px;
    padding: 40px;
    margin-top: 60px;
    box-shadow: 0 5px 20px rgba(155, 81, 224, 0.1);
    display: flex;
    align-items: center;
    border: 1px solid #f1e9f9;
}
.fwc-content {
    display: flex;
    align-items: center;
    gap: 30px;
    width: 100%;
}
.fwc-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    color: var(--clr-primary, #9b51e0);
}
.fwc-text h3 {
    font-size: 1.6rem;
    color: var(--clr-primary, #9b51e0);
    margin-bottom: 10px;
    font-weight: 800;
}
.fwc-text p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .full-width-card {
        padding: 30px 20px;
    }
    .fwc-content {
        flex-direction: column;
    }
}

/* --- Breadcrumb Header --- */
.breadcrumb-header {
    margin-bottom: 40px;
    text-align: left;
}
.custom-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #f9f6fd;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
    font-weight: 500;
}
.custom-breadcrumb a {
    color: #555;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}
.custom-breadcrumb a:hover {
    color: var(--clr-primary, #9b51e0);
}
.custom-breadcrumb .cb-separator {
    color: #ccc;
}
.custom-breadcrumb .cb-current {
    color: var(--clr-primary, #9b51e0);
    font-weight: 700;
}
.bh-main-title {
    font-size: 2.2rem;
    color: var(--clr-primary, #9b51e0);
    margin-bottom: 10px;
    font-weight: 800;
}
.bh-subtitle {
    font-size: 1.1rem;
    color: #555;
}

/* --- Breadcrumb inside Page Header --- */
.breadcrumb-wrapper {
    position: relative;
    z-index: 2;
    text-align: left;
    padding-top: 40px;
}
.custom-breadcrumb.breadcrumb-light {
    background-color: rgba(255,255,255,0.15);
    color: #eee;
    margin-bottom: 15px;
}
.custom-breadcrumb.breadcrumb-light a {
    color: #fff;
}
.custom-breadcrumb.breadcrumb-light .cb-separator {
    color: rgba(255,255,255,0.5);
}
.custom-breadcrumb.breadcrumb-light .cb-current {
    color: #fff;
}
.page-title.breadcrumb-title {
    text-align: left;
    margin-bottom: 10px;
}
.pricing-category-title {
    font-size: 2rem;
    font-weight: 800;
    color: #b59573;
    text-align: center;
    margin: 60px 0 20px;
    position: relative;
}

.pricing-category-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #dcc6af;
    margin: 15px auto 0;
    border-radius: 2px;
}

/* --- Services Grid Section --- */
.services-grid-section {
    padding: 60px 0;
    background-color: #fff;
}
.sg-header {
    margin-bottom: 50px;
}
.sg-main-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #b59573;
    margin-bottom: 15px;
}
.sg-subtitle {
    font-size: 1.1rem;
    color: #777;
    max-width: 600px;
    margin: 0 auto;
}
.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}
.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f1f1f1;
    width: calc(33.333% - 20px);
}
@media (max-width: 992px) {
    .service-card {
        width: calc(50% - 15px);
    }
}
@media (max-width: 768px) {
    .service-card {
        width: 100%;
    }
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(155, 81, 224, 0.15);
    border-color: #f1e9f9;
}
.sc-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: #f9f6fd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}
.service-card:hover .sc-icon-wrapper {
    transform: scale(1.1);
    background-color: #f1e9f9;
}
.sc-title {
    font-size: 1.2rem;
    color: var(--clr-primary, #9b51e0);
    margin-bottom: 10px;
    font-weight: 700;
    white-space: normal;
}
.sc-desc {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 0;
}

/* --- Full Width Certificate Card --- */
.full-width-card {
    background: linear-gradient(135deg, #f9f6fd 0%, #f1e9f9 100%);
    border-radius: 20px;
    padding: 40px;
    margin-top: 60px;
    box-shadow: 0 5px 20px rgba(155, 81, 224, 0.1);
    display: flex;
    align-items: center;
    border: 1px solid #f1e9f9;
}
.fwc-content {
    display: flex;
    align-items: center;
    gap: 30px;
    width: 100%;
}
.fwc-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    color: var(--clr-primary, #9b51e0);
}
.fwc-text h3 {
    font-size: 1.6rem;
    color: var(--clr-primary, #9b51e0);
    margin-bottom: 10px;
    font-weight: 800;
}
.fwc-text p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .full-width-card {
        padding: 30px 20px;
    }
    .fwc-content {
        flex-direction: column;
    }
}

/* --- Breadcrumb Header --- */
.breadcrumb-header {
    margin-bottom: 40px;
    text-align: left;
}
.custom-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #f9f6fd;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
    font-weight: 500;
}
.custom-breadcrumb a {
    color: #555;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}
.custom-breadcrumb a:hover {
    color: var(--clr-primary, #9b51e0);
}
.custom-breadcrumb .cb-separator {
    color: #ccc;
}
.custom-breadcrumb .cb-current {
    color: var(--clr-primary, #9b51e0);
    font-weight: 700;
}
.bh-main-title {
    font-size: 2.2rem;
    color: var(--clr-primary, #9b51e0);
    margin-bottom: 10px;
    font-weight: 800;
}
.bh-subtitle {
    font-size: 1.1rem;
    color: #555;
}

/* --- Breadcrumb inside Page Header --- */
.breadcrumb-wrapper {
    position: relative;
    z-index: 2;
    text-align: left;
    padding-top: 40px;
}
.custom-breadcrumb.breadcrumb-light {
    background-color: rgba(255,255,255,0.15);
    color: #eee;
    margin-bottom: 15px;
}
.custom-breadcrumb.breadcrumb-light a {
    color: #fff;
}
.custom-breadcrumb.breadcrumb-light .cb-separator {
    color: rgba(255,255,255,0.5);
}
.custom-breadcrumb.breadcrumb-light .cb-current {
    color: #fff;
}
.page-title.breadcrumb-title {
    text-align: left;
    margin-bottom: 10px;
}
.breadcrumb-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    max-width: 700px;
    margin-bottom: 30px;
}

/* --- NEW FOOTER DESIGN --- */
.new-footer {
    width: 100%;
    background-color: #ffffff;
    position: relative;
    font-family: 'Outfit', sans-serif;
    color: #333333;
    padding-top: 40px;
    z-index: 10;
    margin-top: 50px;
}

.nf-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 5%;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: nowrap;
    gap: 40px;
}

.nf-logo-col {
    flex: 0 0 auto;
    margin-bottom: -100px; /* Pulls logo down significantly to ride on the yellow line */
    margin-left: -130px; /* Pushes it way further left */
    margin-right: 40px; /* Ensures menus are pushed away from the logo */
    z-index: 10;
    position: relative;
}

.nf-logo-container {
    background-color: #fff;
    border-radius: 50%;
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 10px solid #a67b5b; /* Cappuccino */
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

.nf-logo-container img {
    max-width: 80%;
    height: auto;
}

.nf-links-col {
    flex: 1 1 60%;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 20px;
    padding-bottom: 0px; /* Remove padding */
    margin-bottom: -50px; /* Pull menus aggressively down over the curve */
    position: relative;
    z-index: 10;
}

.nf-column {
    min-width: 150px;
}

.nf-column h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #222;
}

.nf-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nf-column ul li {
    margin-bottom: 12px;
}

.nf-column ul li a {
    color: #444;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.3s;
}

.nf-column ul li a:hover {
    color: var(--clr-primary);
}

.nf-curve-container {
    width: 100%;
    line-height: 0;
    position: relative;
    margin-top: 40px;
    background-color: #ffffff;
}

.nf-bottom-bar {
    background-color: #f5f5dc; /* Beige */
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    color: #2d2d2d; /* Dark text for readability on beige */
    font-weight: 600;
    flex-wrap: nowrap;
    gap: 15px;
}

.nf-bottom-left {
    flex: 1;
    text-align: left;
}

.nf-bottom-center {
    flex: 1;
    text-align: center;
}

.nf-bottom-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.nf-bottom-right a {
    color: #a67b5b; /* Cappuccino color for icon */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(166, 123, 91, 0.15); /* Light cappuccino background */
    transition: all 0.3s ease;
}

.nf-bottom-right a:hover {
    background-color: #a67b5b; /* Solid cappuccino */
    color: #ffffff; /* White icon on hover */
    transform: translateY(-2px);
}

.nf-bottom-right a svg {
    width: 16px;
    height: 16px;
}

.nf-mobile-links {
    display: none;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .nf-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .nf-links-col {
        width: 100%;
        justify-content: center;
        gap: 40px;
    }
    .nf-bottom-bar {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 991px) {
    .new-footer {
        padding-top: 0;
        margin-top: -50px;
        background-color: transparent !important;
        position: relative;
        z-index: 20;
    }
    .nf-top {
        display: none !important; /* Hide empty top container to remove space */
    }
    .nf-curve-container {
        margin-top: 0;
        background-color: transparent !important;
    }
    .nf-curve-container svg {
        height: 60px !important; /* Flatten the curve on mobile to reduce top empty space */
    }
    .nf-links-col {
        display: none !important; /* Mobil menÃƒÂ¼de footer ÃƒÂ¼stÃƒÂ¼ndeki iki menÃƒÂ¼yÃƒÂ¼ komple kaldÃ„Â±r */
    }
    .nf-bottom-bar {
        padding: 10px 5% 20px 5%; /* Alttan boÃ…Å¸luÃ„Å¸u 65'ten 20'ye dÃƒÂ¼Ã…Å¸ÃƒÂ¼r (ÃƒÂ§ok az kalsÃ„Â±n) */
    }
    .nf-mobile-links {
        display: flex;
        width: 100%;
        justify-content: center;
        gap: 6px;
        flex-wrap: nowrap;
        margin-top: 8px; /* 15'ten 8'e dÃƒÂ¼Ã…Å¸ÃƒÂ¼r */
        font-size: 0.75rem;
    }
    .nf-mobile-links a {
        color: #2d2d2d;
        text-decoration: none;
        font-weight: 600;
        white-space: nowrap;
    }
    .cta.section {
        padding-bottom: 20px !important; /* CTA altÃ„Â±ndaki aÃ…Å¸Ã„Â±rÃ„Â± boÃ…Å¸luÃ„Å¸u al */
    }
    .branches-section {
        padding: 25px 0 15px 0 !important;
        margin-bottom: 15px !important;
    }
    .branches-section .section-header {
        margin-bottom: 20px !important;
    }
    /* --- Team Section Mobile Adjustments --- */
    .td-grid {
        flex-wrap: nowrap !important;
        gap: 5px !important;
    }
    .td-card {
        min-width: 0 !important;
        width: 33% !important;
        flex: 1 !important;
    }
    .td-img-wrapper {
        padding: 3px !important;
        margin-bottom: 10px !important;
    }
    .td-img-wrapper img {
        border-width: 2px !important;
    }
    .td-desc {
        display: none !important; /* AÃƒÂ§Ã„Â±klamalarÃ„Â± kaldÃ„Â±r */
    }
    .td-title {
        display: block !important;
        font-size: 0.55rem !important;
        margin-top: 2px !important;
        margin-bottom: 0 !important;
        white-space: normal !important;
        line-height: 1.2 !important;
        text-align: center !important;
        color: #b59573 !important;
    }
    .td-name {
        font-size: 0.65rem !important; /* Ã„Â°simleri daha da kÃƒÂ¼ÃƒÂ§ÃƒÂ¼lt ki "YAÃ…ÂAR AYDINLIOÃ„ÂLU" sÃ„Â±Ã„Å¸sÃ„Â±n */
        text-align: center !important;
        margin-bottom: 0 !important;
        white-space: normal !important; /* Gerekirse alt satÃ„Â±ra geÃƒÂ§sin */
        line-height: 1.2 !important;
        letter-spacing: -0.5px !important; /* Harf aralÃ„Â±Ã„Å¸Ã„Â±nÃ„Â± hafif daralt */
    }
    .td-content {
        text-align: center !important;
    }
    .td-decor-logo {
        display: none !important;
    }
    .td-grid > .td-decor-diagonal {
        display: none !important;
    }
    .td-bottom-wrapper {
        display: none !important;
    }
    .td-mobile-desc {
        display: block !important;
        text-align: center;
        margin-top: 15px;
        color: #333 !important; /* Beyaz okunmadÃ„Â±Ã„Å¸Ã„Â± iÃƒÂ§in koyu gri yapÃ„Â±ldÃ„Â± */
        font-size: 0.85rem;
        line-height: 1.5;
        padding: 0 10px;
        font-weight: 500;
    }
    .team-dark-section {
        padding: 30px 0 40px !important; /* ÃƒÅ“stteki ve alttaki aÃ…Å¸Ã„Â±rÃ„Â± boÃ…Å¸luklar alÃ„Â±ndÃ„Â± */
    }
    .team-top-title {
        margin-bottom: 25px !important; /* BaÃ…Å¸lÃ„Â±k altÃ„Â± boÃ…Å¸luÃ„Å¸u da biraz azaltÃ„Â±ldÃ„Â± */
    }
    .td-card {
        position: relative;
    }
    .td-decor-diagonal-mobile {
        display: block !important;
        position: absolute;
        top: -8px;
        left: -5px;
        width: 30px;
        height: 30px;
        background: repeating-linear-gradient(
            45deg,
            transparent,
            transparent 3px,
            #c2a077 3px,
            #c2a077 4px
        );
        z-index: -1;
    }
}

/* --- Salonumuz Page Redesign --- */
.salon-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}
.sic-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
}
.sic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.sic-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #c2a077 0%, #b59573 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 5px 15px rgba(181, 149, 115, 0.3);
}
.sic-icon svg {
    width: 28px;
    height: 28px;
}
.sic-card h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}
.sic-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* --- Separate Branch Galleries --- */
.branch-gallery-section {
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.02);
}
.bgs-header {
    margin-bottom: 30px;
    border-left: 5px solid #b59573;
    padding-left: 20px;
}
.bgs-title {
    font-size: 1.8rem;
    color: #333;
    font-weight: 800;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}
.bgs-subtitle {
    font-size: 1.05rem;
    color: #777;
    margin: 0;
}
.bgs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 250px;
    gap: 20px;
}
.bgs-large {
    grid-column: span 2;
}
.bgs-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    display: block;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}
.bgs-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.bgs-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, transparent 50%, transparent 100%);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 30px;
    transition: opacity 0.4s ease;
}
.bgs-overlay span {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: rgba(181, 149, 115, 0.9);
    padding: 10px 25px;
    border-radius: 30px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}
.bgs-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}
.bgs-item:hover img {
    transform: scale(1.05);
}
.bgs-item:hover .bgs-overlay {
    opacity: 1;
}
.bgs-item:hover .bgs-overlay span {
    transform: translateY(0);
}

@media (max-width: 992px) {
    .bgs-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }
    .bgs-large {
        grid-column: span 2;
    }
}
@media (max-width: 768px) {
    .branch-gallery-section {
        padding: 25px 15px;
    }
    .bgs-header {
        padding-left: 15px;
    }
    .bgs-title {
        font-size: 1.5rem;
    }
    .bgs-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }
    .bgs-large {
        grid-column: span 1;
    }
    .sic-card {
        padding: 20px 15px;
    }
    .salon-info-cards {
        gap: 15px;
    }
}

/* --- Lightbox Navigation UI --- */
.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    z-index: 1000;
    transition: color 0.3s ease, transform 0.3s ease, background 0.3s ease;
    padding: 15px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-prev:hover, .lightbox-next:hover {
    color: #fff;
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(-50%) scale(1.05);
}
.lightbox-prev {
    left: 30px;
}
.lightbox-next {
    right: 30px;
}
#lightbox-img {
    transition: opacity 0.2s ease-in-out;
}
@media (max-width: 768px) {
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
    .lightbox-prev svg, .lightbox-next svg {
        width: 28px;
        height: 28px;
    }
}

/* --- Dropdown Menu --- */
.nav-item.dropdown {
    position: relative;
}
.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    list-style: none;
    margin: 0;
}
.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-link {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease, color 0.3s ease;
}
.dropdown-link:hover {
    background: #fcf8f5;
    color: #b59573;
}
@media (max-width: 992px) {
    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 0;
        visibility: hidden;
        transform: none;
        display: none;
        padding-left: 20px;
        background: transparent;
    }
    .nav-item.dropdown.active .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
    }
}

/* --- Visibility Utilities --- */
@media (min-width: 993px) {
    .mobile-only {
        display: none !important;
    }
}
@media (max-width: 992px) {
    .desktop-only {
        display: none !important;
    }
}

/* --- Document Cards --- */
.docs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}
@media (max-width: 992px) {
    .docs-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .docs-grid { grid-template-columns: 1fr; }
}

.doc-card {
    background: var(--clr-bg-light);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
}

.doc-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--clr-primary-light);
}

.doc-img-wrapper {
    width: 100%;
    height: 300px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 10px;
}

.doc-img-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.doc-card:hover .doc-img-wrapper img {
    transform: scale(1.05);
}

.doc-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--clr-primary);
    margin-bottom: 8px;
    line-height: 1.4;
}

.doc-subtitle {
    font-size: 1rem;
    color: var(--clr-text-main);
    font-weight: 600;
    margin-bottom: 5px;
}

.doc-person {
    font-size: 0.95rem;
    color: var(--clr-text-muted);
    font-weight: 500;
}

/* --- Document CTA --- */
.docs-cta-card {
    background: #fdfaf6;
    border-radius: var(--radius-lg);
    padding: 30px 40px;
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--clr-primary-light);
}

.docs-cta-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--clr-primary);
}

.docs-cta-btn {
    white-space: nowrap;
    padding: 12px 30px;
    border-radius: 50px;
}

@media (max-width: 768px) {
    .docs-cta-card {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
        gap: 20px;
    }
    .documents-section.section {
        padding-top: 20px !important;
    }
}

.documents-section.section {
    /* Padding managed inline to match other pages */
}

/* --- Utilities --- */
.relative {
    position: relative;
}

/* --- Breadcrumbs --- */
.breadcrumbs {
    width: 100%;
    text-align: left;
    margin-bottom: 20px;
    margin-top: 0;
    font-size: 0.95rem;
    font-weight: 500;
    color: #ccc;
    z-index: 10;
    background: #ffffff;
    padding: 10px 22px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    max-width: fit-content;
}
.breadcrumbs-wrapper {
    width: 100%;
    display: flex;
    justify-content: flex-start;
}
.breadcrumbs a {
    color: #888;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s ease;
}
.breadcrumbs a:hover {
    color: var(--clr-primary);
}
.breadcrumbs span {
    color: var(--clr-primary);
    font-weight: 700;
}
@media (max-width: 768px) {
    .breadcrumbs {
        margin-bottom: 20px;
        margin-top: 30px; /* Push it down more on mobile just in case */
        font-size: 0.85rem;
        padding: 6px 12px;
    }
}

/* BasÃ„Â±n Medya SayfasÃ„Â± Ãƒâ€“zel Stilleri */
.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}
.media-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
.media-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.media-img-wrapper {
    width: 100%;
    height: 350px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f9f9f9;
}
.media-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}
.media-card:hover .media-img-wrapper img {
    transform: scale(1.05);
}
.media-info {
    padding: 20px;
    text-align: center;
    border-top: 1px solid #eee;
}
.media-info h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--clr-primary);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 40px;
}
.video-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
.video-info {
    padding: 20px;
    text-align: center;
    background: #fff;
}
.video-info h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #444;
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
    .media-grid {
        grid-template-columns: 1fr;
    }
    .media-img-wrapper {
        height: auto;
        min-height: 250px;
    }
}

/* TV TasarÃ„Â±mÃ„Â± Videolar Ã„Â°ÃƒÂ§in */
.video-card.tv-design {
    background: transparent;
    box-shadow: none;
    padding-top: 20px;
    margin-bottom: 20px;
}
.tv-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}
.tv-frame {
    position: relative;
    z-index: 2;
    width: 100%;
    display: block;
    pointer-events: none;
}
.tv-screen {
    position: absolute;
    top: 7%;
    left: 8%;
    width: 84%;
    height: 70%;
    z-index: 1;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
}
.tv-screen iframe {
    width: 100%;
    height: 100%;
    border: none;
}
.tv-design .video-info {
    margin-top: 15px;
    background: transparent;
    border-radius: 0;
}
.tv-design .video-info h3 {
    color: var(--clr-primary);
    font-size: 1.3rem;
    font-weight: 700;
}
.media-info p {
    font-size: 0.95rem;
    color: #666;
    margin-top: 10px;
    line-height: 1.5;
    text-align: left;
}

/* Yeni KenarlÃ„Â±klÃ„Â± Video TasarÃ„Â±mÃ„Â± */
.bordered-video-design {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    border: 3px solid var(--clr-primary, #b59573);
}
.bordered-video-design:hover {
    transform: translateY(-8px);
}
.bordered-video-design .video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-bottom: 2px solid #f0f0f0;
}
.bordered-video-design .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
.bordered-video-design .video-info {
    padding: 20px;
    text-align: center;
    background: #fff;
}
.bordered-video-design .video-info h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #444;
    font-weight: 700;
}

/* Video Grid 3 Kolon GÃƒÂ¼ncellemesi */
.video-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
}

@media (max-width: 992px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr !important;
    }
}

/* --- Iletisim Sayfasi Mobil Duzenlemeleri --- */
@media (max-width: 768px) {
    .contact-branches-container .sg-main-title {
        font-size: 1.4rem !important;
        white-space: nowrap !important;
    }
    .contact-branches-container .contact-info-card {
        min-width: 0 !important;
        padding: 20px 15px !important;
    }
    .contact-branches-container .contact-item {
        gap: 10px !important;
    }
    .contact-branches-container .contact-item > div:nth-child(2) {
        flex: 1;
        min-width: 0;
    }
    .contact-branches-container .contact-item a {
        word-wrap: break-word !important;
        overflow-wrap: anywhere !important;
        word-break: break-all !important;
        white-space: normal !important;
    }
}

/* --- Genel Mobil Ã„Â°nce Ayarlar --- */
@media (max-width: 768px) {
    /* Galeri BaÃ…Å¸lÃ„Â±klarÃ„Â± */
    .bgs-title {
        font-size: 1.4rem !important;
        white-space: nowrap !important;
    }

    /* Barkod (Sertifika No) AlanÃ„Â± */
    .section-header > div[style*="inline-flex"] {
        flex-wrap: nowrap !important;
        padding: 8px 10px !important;
    }
    
    .section-header > div[style*="inline-flex"] span {
        font-size: clamp(0.65rem, 3vw, 0.8rem) !important;
        letter-spacing: 0px !important;
        white-space: nowrap !important;
    }

    /* Footer Member Of YazÃ„Â±sÃ„Â± */
    .nf-bottom-left {
        text-align: center !important;
        font-size: clamp(0.55rem, 2.5vw, 0.8rem) !important;
        white-space: nowrap !important;
        width: 100% !important;
        margin-bottom: 5px;
    }
}
/* Flatsome Grid Utilities */
.col,.col-inner{position:relative;width:100%}.col{margin:0;padding:0 15px 30px}.col-inner{background-position:50% 50%;background-repeat:no-repeat;background-size:cover;flex:1 0 auto;margin-left:auto;margin-right:auto}@media screen and (min-width:850px){.col:first-child .col-inner{margin-left:auto;margin-right:0}.col+.col .col-inner{margin-left:0;margin-right:auto}}@media screen and (max-width:849px){.medium-col-first{order:-1}.col{padding-bottom:30px}}.align-equal>.col{display:flex}.align-middle{align-items:center!important;align-self:center!important;vertical-align:middle!important}.align-center{justify-content:center!important}.small-4{flex-basis:33.3333333333%;max-width:33.3333333333%}.small-6{flex-basis:50%;max-width:50%}.small-12{flex-basis:100%;max-width:100%}@media screen and (min-width:550px){.medium-1{flex-basis:8.3333333333%;max-width:8.3333333333%}.medium-2{flex-basis:16.6666666667%;max-width:16.6666666667%}.medium-4{flex-basis:33.3333333333%;max-width:33.3333333333%}.medium-5{flex-basis:41.6666666667%;max-width:41.6666666667%}.medium-6{flex-basis:50%;max-width:50%}.medium-7{flex-basis:58.3333333333%;max-width:58.3333333333%}.medium-8{flex-basis:66.6666666667%;max-width:66.6666666667%}.medium-10{flex-basis:83.3333333333%;max-width:83.3333333333%}}@media screen and (min-width:850px){.large-1{flex-basis:8.3333333333%;max-width:8.3333333333%}.large-2{flex-basis:16.6666666667%;max-width:16.6666666667%}.large-4{flex-basis:33.3333333333%;max-width:33.3333333333%}.large-5{flex-basis:41.6666666667%;max-width:41.6666666667%}.large-6{flex-basis:50%;max-width:50%}.large-7{flex-basis:58.3333333333%;max-width:58.3333333333%}.large-10{flex-basis:83.3333333333%;max-width:83.3333333333%}.large-12{flex-basis:100%;max-width:100%}}.row{display:flex;flex-flow:row wrap;width:100%}.row .row:not(.row-collapse){margin-left:-15px;margin-right:-15px;padding-left:0;padding-right:0;width:auto}.row-full-width{max-width:100%!important}.row-collapse{padding:0}.row-collapse>.col{padding:0!important}.row-small>.col{margin-bottom:0;padding:0 9.8px 19.6px}@media screen and (min-width:850px){.row-large{padding-left:0;padding-right:0}.row-large>.col{margin-bottom:0;padding:0 30px 30px}}.section{align-items:center;display:flex;flex-flow:row;min-height:auto;padding:30px 0;width:100%}.section-bg{overflow:hidden;width:100%}.section-content{width:100%}.section-content{z-index:1}.has-parallax{overflow:hidden}.section-bg :is(img){height:100%;left:0;-o-object-fit:cover;object-fit:cover;-o-object-position:50% 50%;object-position:50% 50%;position:absolute;top:0;width:100%}

/* Missing Flatsome Utils */
@keyframes spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.col,.col-inner{position:relative;width:100%}.col{margin:0;padding:0 15px 30px}.col-inner{background-position:50% 50%;background-repeat:no-repeat;background-size:cover;flex:1 0 auto;margin-left:auto;margin-right:auto}@media screen and (min-width:850px){.col:first-child .col-inner{margin-left:auto;margin-right:0}.col+.col .col-inner{margin-left:0;margin-right:auto}}@media screen and (max-width:849px){.medium-col-first{order:-1}.col{padding-bottom:30px}}.align-equal>.col{display:flex}.align-middle{align-items:center!important;align-self:center!important;vertical-align:middle!important}.align-center{justify-content:center!important}.small-4{flex-basis:33.3333333333%;max-width:33.3333333333%}.small-6{flex-basis:50%;max-width:50%}.small-12{flex-basis:100%;max-width:100%}@media screen and (min-width:550px){.medium-1{flex-basis:8.3333333333%;max-width:8.3333333333%}.medium-2{flex-basis:16.6666666667%;max-width:16.6666666667%}.medium-4{flex-basis:33.3333333333%;max-width:33.3333333333%}.medium-5{flex-basis:41.6666666667%;max-width:41.6666666667%}.medium-6{flex-basis:50%;max-width:50%}.medium-7{flex-basis:58.3333333333%;max-width:58.3333333333%}.medium-8{flex-basis:66.6666666667%;max-width:66.6666666667%}.medium-10{flex-basis:83.3333333333%;max-width:83.3333333333%}}@media screen and (min-width:850px){.large-1{flex-basis:8.3333333333%;max-width:8.3333333333%}.large-2{flex-basis:16.6666666667%;max-width:16.6666666667%}.large-4{flex-basis:33.3333333333%;max-width:33.3333333333%}.large-5{flex-basis:41.6666666667%;max-width:41.6666666667%}.large-6{flex-basis:50%;max-width:50%}.large-7{flex-basis:58.3333333333%;max-width:58.3333333333%}.large-10{flex-basis:83.3333333333%;max-width:83.3333333333%}.large-12{flex-basis:100%;max-width:100%}}.row{margin-left:auto;margin-right:auto;max-width:1080px;display:flex;flex-flow:row wrap;width:100%}.row .row:not(.row-collapse){margin-left:-15px;margin-right:-15px;padding-left:0;padding-right:0;width:auto}.row-full-width{max-width:100%!important}.row-collapse{padding:0}.row-collapse>.col{padding:0!important}.row-small>.col{margin-bottom:0;padding:0 9.8px 19.6px}@media screen and (min-width:850px){.row-large{padding-left:0;padding-right:0}.row-large>.col{margin-bottom:0;padding:0 30px 30px}}.row-solid{overflow:hidden}.row-solid .col,.section{padding:0;position:relative}.row-solid .col-inner{padding:15px}.row-solid .col:before{border-left:1px dashed #ddd;content:" ";height:100%;left:-1px;position:absolute;top:0}.row-solid .col:after{border-bottom:1px dashed #ddd;bottom:-1px;content:" ";height:0;left:0;position:absolute;top:auto;width:100%}.row-solid .col:before{border-left-style:solid}.row-solid .col:after{border-bottom-style:solid}.section{align-items:center;display:flex;flex-flow:row;min-height:auto;padding:30px 0;width:100%}.section.dark{background-color:#666}.section-bg{overflow:hidden;width:100%}.section-content{width:100%;z-index:1}.has-parallax{overflow:hidden}.section-bg :is(img){height:100%;left:0;-o-object-fit:cover;object-fit:cover;-o-object-position:50% 50%;object-position:50% 50%;position:absolute;top:0;width:100%}.text-center{text-align:center}.text-center .is-divider,.text-center>div,.text-center>div>div{margin-left:auto;margin-right:auto}.text-center .pull-left{float:none}.is-divider{background-color:rgb(0 0 0/.1);display:block;height:3px;margin:1em 0;max-width:30px;width:100%}.clearfix:after{clear:both;content:"";display:table}.relative{position:relative!important}.absolute{position:absolute!important}.fill{bottom:0;height:100%;left:0;margin:0!important;padding:0!important;position:absolute;right:0;top:0}.pull-left{float:left}.box-shadow-1,.box-shadow-2{transition:transform .3s,box-shadow .3s,background-color .3s,color .3s,opacity .3s}.box-shadow-1{box-shadow:0 1px 3px -2px rgb(0 0 0/.12),0 1px 2px rgb(0 0 0/.24)}.box-shadow-2{box-shadow:0 3px 6px -4px rgb(0 0 0/.16),0 3px 6px rgb(0 0 0/.23)}@media (max-width:549px){.hide-for-small{display:none!important}}@media (min-width:550px){.show-for-small{display:none!important}}@media (min-width:850px){.show-for-medium{display:none!important}}@media (max-width:849px){.hide-for-medium{display:none!important}.medium-text-center .pull-left{float:none}.medium-text-center{float:none!important;text-align:center!important;width:100%!important}}

/* Additional Flatsome Fixes */
.is-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}
.col-inner {
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 20px;
}
.dark .col-inner {
    background: transparent;
}
.content-area ul {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 15px;
}
.content-area ol {
    list-style: decimal;
    padding-left: 25px;
    margin-bottom: 15px;
}
.content-area li {
    margin-bottom: 8px;
}

/* Better Franchise Card Styles */
.col-inner.box-shadow-1 {
    background: #fff;
    border-radius: 12px;
    padding: 30px 20px !important;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1) !important;
    border: 1px solid rgba(89, 201, 233, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.col-inner.box-shadow-1:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15) !important;
}
.dark-page-wrapper .col-inner.box-shadow-1 {
    background: #222;
    border-color: rgba(89, 201, 233, 0.4);
}
.is-border { display: none !important; }
.content-area h3 {
    color: #9b51e0;
    margin-bottom: 15px;
}

/* Added for breadcrumb mobile responsiveness */
.custom-breadcrumb {
    max-width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.custom-breadcrumb::-webkit-scrollbar {
    display: none;
}

@media (max-width: 576px) {
    .custom-breadcrumb {
        font-size: 0.75rem !important;
        padding: 6px 12px !important;
        gap: 5px !important;
    }
    .custom-breadcrumb a svg {
        width: 14px !important;
        height: 14px !important;
    }
}

/* Campaign Badges */
.c-card {
    position: relative;
}
.branch-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 12px;
    color: #fff;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    letter-spacing: 0.5px;
}
.badge-levent {
    background: #ff4757;
}
.badge-all {
    background: #2ed573;
}

/* Override Branch Badge Positioning for Bottom Center */
.branch-badge {
    position: static !important;
    display: inline-block !important;
    margin-top: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 12px;
    color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    letter-spacing: 0.5px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

/* Update Badges Font Size and Color */
.branch-badge {
    font-size: 0.75rem !important;
    line-height: 1.3 !important;
    padding: 6px 14px !important;
}
.badge-levent {
    background: linear-gradient(45deg, #ff007f, #9b51e0) !important;
    color: #fff !important;
    box-shadow: 0 1px 3px rgba(255, 0, 127, 0.15) !important;
    animation: badge-pulse 2s infinite;
}

@keyframes badge-pulse {
    0% { transform: scale(1); box-shadow: 0 1px 3px rgba(255, 0, 127, 0.15); }
    50% { transform: scale(1.05); box-shadow: 0 2px 8px rgba(155, 81, 224, 0.3); }
    100% { transform: scale(1); box-shadow: 0 1px 3px rgba(255, 0, 127, 0.15); }
}

/* Ensure 2 items are centered in the team grid */
.td-grid {
    justify-content: center !important;
}

/* Instagram Team Icon */
.team-social {
    margin-top: 15px;
    padding-bottom: 5px;
}
.team-instagram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(225, 48, 108, 0.3);
}
.team-instagram:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 15px rgba(225, 48, 108, 0.5);
    color: white;
}

/* Social Icons Update */
.team-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 15px;
    padding-bottom: 5px;
}
.team-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 4px 10px rgba(225, 48, 108, 0.3);
}
.team-facebook {
    background: #1877f2;
    box-shadow: 0 4px 10px rgba(24, 119, 242, 0.3);
}
.team-linkedin {
    background: #0a66c2;
    box-shadow: 0 4px 10px rgba(10, 102, 194, 0.3);
}
.team-social-icon:hover {
    transform: translateY(-3px) scale(1.05);
    color: white !important;
}
.team-instagram:hover { box-shadow: 0 6px 15px rgba(225, 48, 108, 0.5); }
.team-facebook:hover { box-shadow: 0 6px 15px rgba(24, 119, 242, 0.5); }
.team-linkedin:hover { box-shadow: 0 6px 15px rgba(10, 102, 194, 0.5); }

/* Fix for horizontal overflow caused by inline margins on sections */
.featured-services, .branches-section {
    width: auto !important;
}




/* Fix for gallery titles size on mobile */
@media (max-width: 991px) {
    .pf-title-box h3 {
        font-size: 0.95rem !important;
        padding: 5px 0;
    }
}

/* Reduce Our Team title and subtitle size on mobile */
@media (max-width: 991px) {
    .team-top-title {
        font-size: 2rem !important;
        letter-spacing: 1px !important;
    }
    .team-dark-section .container > p {
        font-size: 0.9rem !important;
        margin-top: -15px !important;
        margin-bottom: 30px !important;
    }
}

/* Fix for uneven Services cards on mobile caused by title text stretching */
@media (max-width: 640px) {
    .creative-services-grid {
        align-items: stretch;
    }
    .info-card {
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    .ic-body {
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    .ic-bg-img {
        aspect-ratio: 1 / 1 !important; /* Force exact square so all images match */
        object-fit: cover;
    }
    .ic-text-box {
        flex-grow: 1;
        display: flex;
        align-items: flex-end;
        justify-content: center;
    }
    .ic-title {
        white-space: normal !important;
        text-align: center;
        width: 100%;
    }
}

/* FAQ Accordion Styles */
.faq-accordion-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.faq-accordion-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    border-left: 4px solid var(--clr-primary);
}
.faq-accordion-title {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 20px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--clr-secondary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}
.faq-accordion-title:hover {
    background: rgba(157, 201, 241, 0.1);
}
.faq-accordion-title .faq-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}
.faq-accordion-item.active .faq-accordion-title .faq-icon {
    transform: rotate(180deg);
}
.faq-accordion-item.active .faq-accordion-title {
    color: var(--clr-primary);
}
.faq-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 25px;
    background: #fff;
}
.faq-accordion-item.active .faq-accordion-content {
    padding: 0 25px 25px 25px;
    max-height: 1000px; /* arbitrary large value for animation */
}
.faq-accordion-content p {
    margin: 0 0 15px 0;
    color: #555;
    line-height: 1.6;
}
.faq-accordion-content p:last-child {
    margin-bottom: 0;
}
@media (max-width: 767px) {
    .faq-accordion-title {
        font-size: 1rem;
        padding: 15px 20px;
    }
    .faq-accordion-item.active .faq-accordion-content {
        padding: 0 20px 20px 20px;
    }
}

/* FAQ Page Grid Layout */
.faq-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}
.faq-sidebar-wrapper {
    flex: 0 0 300px;
    position: sticky;
    top: 160px; /* offset for fixed header */
    z-index: 10;
}
.faq-sidebar {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    border: 2px solid #f9e1e9; /* light pinkish border */
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}
.faq-sidebar-title {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
}
.faq-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.faq-nav-list li {
    display: flex;
    align-items: center;
}
.faq-nav-list li::before {
    content: "\2022";
    color: #333;
    font-size: 1.5rem;
    margin-right: 10px;
    line-height: 1;
}
.faq-nav-link {
    text-decoration: none;
    color: #ee4a7f; /* pinkish from screenshot */
    font-size: 1.05rem;
    font-weight: 500;
    transition: color 0.3s;
}
.faq-nav-link:hover, .faq-nav-link.active {
    color: #d81b60;
    font-weight: 600;
}

.faq-content-wrapper {
    flex: 1;
    min-width: 0;
}
.faq-category-block {
    margin-bottom: 50px;
    scroll-margin-top: 170px; /* Offset for smooth scroll when sticky header */
}
.faq-category-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 25px;
    font-weight: 600;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

/* Accordion Adjustments for new layout */
.faq-accordion-container {
    max-width: 100%;
}
.faq-accordion-item {
    border-left: none; /* remove previous left border */
    border-bottom: 1px solid #f0f0f0; /* line separator between accordions */
    border-radius: 0;
    box-shadow: none;
    background: transparent;
}
.faq-accordion-title {
    padding: 18px 15px;
    font-size: 1.05rem;
    color: #444;
    font-weight: 500;
}
.faq-accordion-title:hover {
    background: transparent;
    color: #ee4a7f;
}
.faq-accordion-item.active .faq-accordion-title {
    color: #ee4a7f;
}
.faq-accordion-content {
    padding: 0 15px;
}
.faq-accordion-item.active .faq-accordion-content {
    padding: 10px 15px 25px 15px;
}
.faq-accordion-title .faq-icon {
    width: 18px;
    height: 18px;
    color: #888;
}

@media (max-width: 991px) {
    .faq-layout {
        flex-direction: column;
    }
    .faq-sidebar-wrapper {
        flex: 1 1 100%;
        width: 100%;
        position: relative;
        top: 0;
        margin-bottom: 30px;
    }
}

/* Sticky Fix */
body {
    overflow-x: clip !important;
}
.inner-page {
    overflow: visible !important;
}
.faq-section {
    display: block !important; /* Override .section display: flex */
    overflow: visible !important;
}
.faq-layout {
    overflow: visible !important;
}
.faq-sidebar-wrapper {
    align-self: flex-start; /* Ensures it doesn't stretch */
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
}


/* Policy Card Styles */
.policy-card {
    background: #fff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
    max-width: 900px;
    margin: 0 auto;
}
.policy-card h2.section-title {
    text-align: center;
    margin-bottom: 10px;
}
.policy-card .about-lead {
    text-align: center;
    margin-bottom: 40px;
}
.policy-card h3 {
    color: var(--clr-primary);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
}
.policy-card p, .policy-card ul {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}
.policy-card ul {
    padding-left: 20px;
}
.policy-card ul li {
    margin-bottom: 10px;
}
@media (max-width: 768px) {
    .policy-card {
        padding: 30px 20px;
    }
}
/* --- Blog Grid & Cards --- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 20px;
}
.blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}
.bc-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}
.bc-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.blog-card:hover .bc-img-wrapper img {
    transform: scale(1.05);
}
.bc-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255,255,255,0.9);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--clr-primary);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.bc-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.bc-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
}
.bc-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}
.bc-title a:hover {
    color: var(--clr-primary);
}
.bc-excerpt {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}
.bc-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--clr-primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: gap 0.3s ease;
}
.bc-read-more:hover {
    gap: 12px;
}
/* --- Blog Detail Page --- */
.blog-detail-container {
    max-width: 900px;
    margin: 0 auto;
}
.blog-detail-header {
    margin-bottom: 30px;
}
.bd-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--clr-primary);
    line-height: 1.3;
    margin-bottom: 15px;
}
.bd-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 25px;
}
.bd-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}
.bd-hero-img {
    width: 100%;
    border-radius: 25px;
    margin-bottom: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}
.bd-content {
    background: #fff;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}
.bd-content h2, .bd-content h3 {
    color: #222;
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 700;
}
.bd-content h2 {
    font-size: 1.8rem;
}
.bd-content h3 {
    font-size: 1.5rem;
}
.bd-content p {
    margin-bottom: 20px;
}
.bd-content ul, .bd-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}
.bd-content li {
    margin-bottom: 10px;
}
@media (max-width: 768px) {
    .bd-title {
        font-size: 1.8rem;
    }
    .bd-content {
        padding: 25px;
        font-size: 1.05rem;
    }
}
/* --- Blog Tags --- */
.blog-tags {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}
.blog-tags-label {
    font-weight: 700;
    color: #333;
    margin-right: 5px;
}
.blog-tag {
    background: #fdfcfb;
    border: 1px solid #ebdacc;
    color: #a88c6b;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}
.blog-tag:hover {
    background: #a88c6b;
    color: #fff;
}

/* Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
    padding-bottom: 50px;
}
.page-numbers {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 45px;
    height: 45px;
    padding: 0 15px;
    background: #fdfcfb;
    border: 1px solid #ebdacc;
    color: #a88c6b;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.page-numbers:hover {
    background: #f5eedc;
    color: #8a6c4c;
    transform: translateY(-2px);
}
.page-numbers.current {
    background: #a88c6b;
    color: #fff;
    border-color: #a88c6b;
    pointer-events: none;
}
.page-numbers.next, .page-numbers.prev {
    padding: 0 25px;
}

@media (max-width: 991px) {
    body:not(.home) .lang-switch-pill { display: none !important; }
}


/* --- Mobile Header Height Fix --- */
@media (max-width: 991px) {
    .header {
        padding: 0 !important;
    }
    .header-top {
        padding: 15px 0 !important;
    }
    .logo-img {
        height: 48px !important;
    }
}

/* --- Blog Card Alignment Fixes --- */
.blog-img-link {
    height: 200px !important;
    display: block;
    overflow: hidden;
}
.blog-img-link img {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
}
.blog-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8rem;
}
.blog-excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: auto !important;
}

/* --- Mobile Page Header Top Padding Fix --- */
@media (max-width: 991px) {
    .page-header {
        padding: 90px 0 20px !important;
    }
    .inner-page .section {
        padding-top: 20px !important;
    }
}

/* --- Footer Overlap Fix on Mobile --- */
@media (max-width: 991px) {
    .new-footer {
        margin-top: -50px !important; /* Restore curve overlap */
    }
    .inner-page .section:last-of-type {
        padding-bottom: 100px !important; /* Prevent content overlap without breaking background */
    }
}

/* --- Contact Page Mobile Fix --- */
@media (max-width: 991px) {
    .contact-branch {
        flex-direction: column !important;
    }
    .contact-info-card {
        padding: 30px 20px !important;
        min-width: 100% !important;
        flex: none !important;
    }
    .contact-map-col {
        padding: 0 !important;
        min-width: 100% !important;
        min-height: 350px !important;
        flex: none !important;
    }
    .contact-map-col > div {
        border-radius: 0 0 20px 20px !important;
        border: none !important;
        border-top: 1px solid rgba(155, 81, 224, 0.2) !important;
    }
}



/* --- Force Mobile Nav Visibility --- */
@media (max-width: 991px) {
    .mobile-bottom-nav {
        display: flex !important;
        background-color: #ffffff !important;
        min-height: 65px !important;
        height: auto !important;
        box-sizing: content-box !important;
        padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 5px) !important;
        z-index: 9999 !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

/* YENİ Ribbon CSS */
.ribbon-yeni {
  position: absolute;
  top: 15px;
  left: -35px;
  background: #ff4757;
  color: #ffffff;
  padding: 5px 40px;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  transform: rotate(-45deg);
  z-index: 10;
  box-shadow: 0 3px 6px rgba(0,0,0,0.3);
  letter-spacing: 1px;
}

/* Tab Styles */

        /* Sticky özelliğinin çalışması için kapsayıcılarda overflow kısıtlaması olmamalıdır */
        body,
        html,
        #main,
        .inner-page,
        .section,
        .container {
            overflow: visible !important;
        }

        body, html {
            overflow-x: clip !important;
            max-width: 100vw;
        }

        .branch-layout {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            align-items: start;
        }

        @media (min-width: 992px) {
            .branch-layout {
                grid-template-columns: 1.8fr 1fr;
                /* Sol ksm daha geni, SAĞ KISIM sabit */
            }
        }

        .branch-left {
            min-width: 0;
        }

        .branch-right {
            position: -webkit-sticky !important;
            position: sticky !important;
            top: 130px !important;
            align-self: flex-start !important;
            height: fit-content !important;
            z-index: 10;
        }

        /* Slider CSS */
        .branch-slider {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            aspect-ratio: 16/9;
            margin-bottom: 30px;
            background: #eee;
        }

        .slide-item {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.8s ease-in-out;
            object-fit: cover;
        }

        .slide-item.active {
            opacity: 1;
        }

        .slider-controls {
            position: absolute;
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: background 0.3s;
        }

        .slider-dot.active {
            background: white;
        }

        /* Hizmet Kartlar */
        .branch-services {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 20px;
            margin-bottom: 40px;
        }

        @media (min-width: 768px) {
            .branch-services {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .b-service-card {
            padding: 25px 20px;
            border-radius: 20px;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .b-service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }

        .b-service-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 15px;
            display: block;
        }

        /* Tabs */
        .transport-tabs-container {
            background: white;
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            margin-bottom: 40px;
        }

        .t-tabs {
            display: flex;
            gap: 5px;
            margin-bottom: 25px;
            flex-wrap: nowrap;
            overflow-x: auto;
            border-bottom: 2px solid #f0f0f0;
            padding-bottom: 15px;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            /* Firefox için */
        }

        /* Scrollbar' tamamen gizlemek */
                /* Scrollbar' tamamen gizlemek */
        .t-tabs::-webkit-scrollbar {
            display: none;
        }

        .t-tab-btn {
            background: none;
            border: none;
            padding: 8px 15px;
            font-size: 1rem;
            font-weight: 600;
            color: #777;
            cursor: pointer;
            border-radius: 8px;
            transition: all 0.3s;
            position: relative;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .t-tab-btn:hover {
            background: #f9f9f9;
        }

        .t-tab-btn.active {
            color: var(--clr-primary);
        }

        .t-tab-btn.active::after {
            content: '';
            position: absolute;
            bottom: -17px;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--clr-primary);
            border-radius: 3px 3px 0 0;
        }

        .t-tab-content {
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .t-tab-content.active {
            display: block;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Harita ve İletişim kutusu */
        .right-widget {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            margin-bottom: 30px;
        }

        .right-map iframe {
            display: block;
            width: 100%;
            height: 250px;
            border: none;
        }

        .right-contact {
            padding: 30px;
        }

        .r-info-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 20px;
        }

        .r-info-icon {
            width: 40px;
            height: 40px;
            background: rgba(236, 33, 97, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        /* Mobil Breadcrumb Dzeltmesi */
        @media (max-width: 576px) {
            .custom-breadcrumb {
                font-size: 0.8rem !important;
                white-space: nowrap !important;
                overflow-x: auto !important;
                -webkit-overflow-scrolling: touch;
                padding-bottom: 5px;
            }

            .custom-breadcrumb svg {
                width: 14px !important;
                height: 14px !important;
            }

            .res-h2 { font-size: 1.5rem !important; line-height: 1.3 !important; }
            .res-h3 { font-size: 1.3rem !important; line-height: 1.4 !important; margin-bottom: 15px !important; }
        }
    