/* ============================================
   BEYAZ GULUS - ULTRA PREMIUM DENTAL THEME
   WOW Factor Design
   ============================================ */

/* Google Fonts - Premium combo */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600&display=swap');

/* CSS Variables - Teal/Turkuaz Dental Palette */
:root {
    --primary: #0D7377;
    --primary-light: #1A9BA3;
    --secondary: #2AACB4;
    --secondary-light: #48C9C9;
    --secondary-dark: #0D7377;
    --accent: #2AACB4;
    --accent-light: #5ED5D5;
    --accent-glow: rgba(42,172,180,0.5);
    --dark: #0a3d3f;
    --gray-900: #1a2a2e;
    --gray-800: #2a4448;
    --gray-700: #3d5e62;
    --gray-600: #5a7e82;
    --gray-500: #7e9fa3;
    --gray-400: #a8c4c6;
    --gray-200: #dceced;
    --gray-100: #f0f8f8;
    --white: #ffffff;
    --cream: #f4fafa;
    --success: #2AACB4;
    --gradient-primary: linear-gradient(135deg, #0D7377 0%, #1A9BA3 50%, #2AACB4 100%);
    --gradient-hero: linear-gradient(135deg, rgba(13,115,119,0.95) 0%, rgba(42,172,180,0.7) 100%);
    --gradient-card: linear-gradient(145deg, #ffffff 0%, #f4fafa 100%);
    --gradient-accent: linear-gradient(135deg, #0D7377, #2AACB4, #48C9C9);
    --gradient-glow: linear-gradient(135deg, rgba(42,172,180,0.15), rgba(72,201,201,0.1));
    --shadow-sm: 0 2px 8px rgba(13,115,119,0.04);
    --shadow-md: 0 8px 30px rgba(13,115,119,0.08);
    --shadow-lg: 0 20px 60px rgba(13,115,119,0.12);
    --shadow-xl: 0 30px 80px rgba(13,115,119,0.16);
    --shadow-glow: 0 0 40px rgba(42,172,180,0.15);
    --shadow-gold: 0 0 40px rgba(72,201,201,0.15);
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-900);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   HEADER / NAVIGATION - Modern Dental
   ============================================ */
.bg-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    transition: var(--transition);
}

/* Top Bar */
.bg-topbar {
    background: #0a5c5f;
    padding: 0;
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

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

.bg-topbar-left {
    display: flex;
    gap: 24px;
    align-items: center;
}

.bg-topbar-item {
    color: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s;
}

.bg-topbar-item:hover {
    color: #48C9C9;
}

.bg-topbar-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
}

.bg-topbar-promo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 14px;
    background: linear-gradient(135deg, rgba(42,172,180,0.2), rgba(72,201,201,0.2));
    border: 1px solid rgba(72,201,201,0.3);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    color: #7dd8d0;
    letter-spacing: 0.3px;
    animation: topbarPromoGlow 3s ease-in-out infinite;
}

.bg-topbar-promo-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #48C9C9;
    box-shadow: 0 0 8px rgba(72,201,201,0.6);
    animation: dh-pulse 2s ease-in-out infinite;
}

@keyframes topbarPromoGlow {
    0%, 100% { border-color: rgba(72,201,201,0.3); }
    50% { border-color: rgba(72,201,201,0.6); }
}

.bg-topbar-right {
    display: flex;
    gap: 8px;
    align-items: center;
}

.bg-topbar-social {
    color: rgba(255,255,255,0.7);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    transition: var(--transition);
    text-decoration: none;
}

.bg-topbar-social:hover {
    background: var(--secondary);
    color: #fff;
    transform: translateY(-2px);
}

.bg-topbar-lang {
    display: flex;
    gap: 4px;
    margin-left: 8px;
    border-left: 1px solid rgba(255,255,255,0.1);
    padding-left: 12px;
}

.bg-lang-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: all 0.3s;
    background: transparent;
}

.bg-lang-btn.active,
.bg-lang-btn:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.bg-lang-btn img {
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

/* Main Navbar */
.bg-navbar {
    background: #0D7377;
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    padding: 12px 0;
    box-shadow: 0 1px 0 rgba(0,0,0,0.1);
    transition: var(--transition);
}

.bg-header.scrolled .bg-topbar {
    transform: translateY(-100%);
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
}

.bg-header.scrolled .bg-navbar {
    background: #0D7377;
    box-shadow: 0 4px 30px rgba(13,115,119,0.2);
    padding: 8px 0;
}

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

/* Logo */
.bg-logo {
    display: flex;
    align-items: center;
    transition: var(--transition);
    text-decoration: none;
}

.bg-logo:hover {
    transform: translateY(-2px);
}

.bg-logo img {
    height: 74px;
    width: auto;
    transition: var(--transition);
}

.bg-header.scrolled .bg-logo img {
    height: 56px;
}

/* Navigation Menu */
.bg-nav-menu {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
}

.bg-nav-menu > li {
    position: relative;
}

.bg-nav-menu > li > a {
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
    position: relative;
}

.bg-nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.bg-nav-menu > li > a:hover::after,
.bg-nav-menu > li > a.active::after {
    transform: scaleX(1);
}

.bg-nav-menu > li > a:hover,
.bg-nav-menu > li > a.active {
    color: #b6f0f0;
}

.bg-nav-menu > li > a::after {
    background: linear-gradient(90deg, #48C9C9, #ffffff) !important;
}

.bg-nav-menu > li > a .arrow {
    font-size: 10px;
    transition: transform 0.3s;
}

.bg-nav-menu > li:hover > a .arrow {
    transform: rotate(180deg);
}

/* Mega Dropdown */
.bg-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 280px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(13,115,119,0.12);
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(42,172,180,0.08);
    z-index: 100;
}

.bg-dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: #fff;
    border-left: 1px solid rgba(42,172,180,0.08);
    border-top: 1px solid rgba(42,172,180,0.08);
}

.bg-nav-menu > li:hover > .bg-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.bg-dropdown-inner {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.bg-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    font-size: 13.5px;
    color: var(--gray-700);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    text-decoration: none;
}

.bg-dropdown-item:hover {
    background: rgba(42,172,180,0.06);
    color: var(--secondary);
}

.bg-dropdown-item img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: cover;
}

.bg-dropdown-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(42,172,180,0.08);
    color: var(--secondary);
    flex-shrink: 0;
}

.bg-dropdown-arrow {
    margin-left: auto;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
    color: var(--secondary);
}

.bg-dropdown-item:hover .bg-dropdown-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ===== Tedavi Mega Dropdown ===== */
.bg-dropdown--tedavi {
    min-width: 520px;
    padding: 0;
    overflow: hidden;
}
.bg-dropdown-tedavi-head {
    padding: 18px 22px 14px;
    border-bottom: 1px solid rgba(42,172,180,0.08);
    background: linear-gradient(135deg, rgba(42,172,180,0.03), rgba(72,201,201,0.03));
}
.bg-dropdown-tedavi-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #2AACB4;
    background: rgba(42,172,180,0.08);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 6px;
}
.bg-dropdown-tedavi-head p {
    margin: 0;
    font-size: 12.5px;
    color: #8a9aaa;
    line-height: 1.4;
}
.bg-dropdown-tedavi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    padding: 10px;
}
.bg-dropdown-tedavi-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    font-size: 13.5px;
    color: #4a5568;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}
.bg-dropdown-tedavi-item:hover {
    background: rgba(42,172,180,0.06);
    color: #2AACB4;
    transform: translateX(4px);
}
.bg-dropdown-tedavi-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(42,172,180,0.07);
    color: #2AACB4;
    flex-shrink: 0;
    transition: all 0.25s;
}
.bg-dropdown-tedavi-item:hover .bg-dropdown-tedavi-icon {
    background: linear-gradient(135deg, #2AACB4, #48C9C9);
    color: #fff;
    transform: scale(1.05);
}
.bg-dropdown-tedavi-foot {
    padding: 12px 22px;
    border-top: 1px solid rgba(42,172,180,0.08);
    background: rgba(42,172,180,0.02);
    text-align: center;
}
.bg-dropdown-tedavi-foot a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #2AACB4;
    text-decoration: none;
    transition: all 0.3s;
}
.bg-dropdown-tedavi-foot a:hover {
    color: #48C9C9;
    gap: 10px;
}

/* Nav Actions */
.bg-nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bg-nav-whatsapp {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    transition: var(--transition);
    text-decoration: none;
}

.bg-nav-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37,211,102,0.35);
    color: #fff;
}

/* CTA Button */
.bg-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    background: linear-gradient(135deg, #2AACB4, #1A9BA3);
    color: #fff !important;
    font-size: 13px;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(42,172,180,0.25);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.bg-cta-btn-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50px;
    background: rgba(42,172,180,0.3);
    animation: ctaPulse 2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes ctaPulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    100% { transform: translate(-50%, -50%) scale(1.4); opacity: 0; }
}

.bg-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
}

.bg-cta-btn:hover::before {
    left: 100%;
}

.bg-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(42,172,180,0.4);
    color: #fff !important;
}

/* Mobile Menu Header */
.bg-mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.bg-mobile-logo img {
    height: 36px;
    width: auto;
    background: #2AACB4;
    padding: 4px 8px;
    border-radius: 6px;
}

.bg-mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
}

.bg-mobile-contact {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-200);
}

.bg-mobile-contact a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray-600);
    text-decoration: none;
}

/* Hamburger */
.bg-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 10001;
}

.bg-hamburger span {
    width: 24px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: var(--transition);
}

/* Mobile Menu */
.bg-mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: var(--white);
    z-index: 10002;
    padding: 80px 24px 24px;
    overflow-y: auto;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-xl);
}

.bg-mobile-menu.open {
    right: 0;
}

.bg-mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13,115,119,0.6);
    backdrop-filter: blur(4px);
    z-index: 10001;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.bg-mobile-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.bg-mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gray-100);
    cursor: pointer;
    font-size: 20px;
    color: var(--gray-800);
    transition: var(--transition);
}

.bg-mobile-close:hover {
    background: var(--secondary);
    color: var(--white);
}

.bg-mobile-menu ul {
    list-style: none;
}

.bg-mobile-menu > ul > li > a {
    display: block;
    padding: 14px 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--primary);
    border-bottom: 1px solid var(--gray-200);
}

.bg-mobile-menu .mobile-submenu {
    padding-left: 16px;
}

.bg-mobile-menu .mobile-submenu a {
    display: block;
    padding: 10px 0;
    font-size: 14px;
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-100);
}

/* ============================================
   HERO - Creative Dental Design (dh-)
   ============================================ */
.dh-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: #ffffff;
    overflow: hidden;
    padding-top: 0;
}



/* Background Shapes */
.dh-bg-shapes {
    display: none !important;
}

.dh-shape {
    position: absolute;
    border-radius: 50%;
}

.dh-shape-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -150px;
    background: radial-gradient(circle, rgba(42,172,180,0.08) 0%, transparent 70%);
    animation: dh-float1 20s ease-in-out infinite;
}

.dh-shape-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    background: radial-gradient(circle, rgba(72,201,201,0.07) 0%, transparent 70%);
    animation: dh-float2 25s ease-in-out infinite;
}

.dh-shape-3 {
    width: 200px;
    height: 200px;
    top: 30%;
    left: 45%;
    background: radial-gradient(circle, rgba(42,172,180,0.05) 0%, transparent 70%);
    animation: dh-float3 18s ease-in-out infinite;
}

.dh-shape-4 {
    width: 120px;
    height: 120px;
    top: 15%;
    left: 10%;
    border: 2px solid rgba(72,201,201,0.1);
    animation: dh-rotate 30s linear infinite;
}

@keyframes dh-float1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, 20px) scale(1.05); }
}

@keyframes dh-float2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -30px); }
}

@keyframes dh-float3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(15px, -20px) scale(1.1); }
    66% { transform: translate(-10px, 10px) scale(0.95); }
}

@keyframes dh-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.dh-bg-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 0;
}

/* Hero Grid */
.dh-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 100vh;
    padding: 140px 0 100px;
    position: relative;
    z-index: 2;
}

/* Hero Text */
.dh-hero-text {
    position: relative;
}

.dh-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px 8px 12px;
    background: linear-gradient(135deg, #e6f7f7, #edf8f7);
    border: 1px solid rgba(42,172,180,0.15);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    color: #1A9BA3;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 28px;
    animation: dh-fadeUp 0.6s ease both;
}

.dh-tag-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2AACB4;
    box-shadow: 0 0 10px rgba(42,172,180,0.5);
    animation: dh-pulse 2s ease-in-out infinite;
}

@keyframes dh-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 10px rgba(42,172,180,0.5); }
    50% { opacity: 0.6; box-shadow: 0 0 20px rgba(42,172,180,0.8); }
}

/* Title Slider */
.dh-title-slider,
.dh-desc-slider {
    position: relative;
}

.dh-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 62px);
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    position: absolute;
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    pointer-events: none;
}

.dh-title.active {
    position: relative;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    animation: dh-fadeUp 0.8s ease both;
}

.dh-title span,
.dh-title strong {
    background: linear-gradient(135deg, #2AACB4, #48C9C9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dh-desc {
    font-size: 17px;
    color: var(--gray-600);
    line-height: 1.85;
    margin-bottom: 36px;
    max-width: 480px;
    position: absolute;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.6s ease 0.1s, transform 0.6s ease 0.1s;
    pointer-events: none;
}

.dh-desc.active {
    position: relative;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

@keyframes dh-fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Promo Badges */
.dh-promo-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
    animation: dh-fadeUp 0.8s ease 0.35s both;
}

.dh-promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: linear-gradient(135deg, #edf8f7, #edf8f7);
    border: 1px solid rgba(42,172,180,0.12);
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    color: #1A9BA3;
    transition: all 0.3s ease;
}

.dh-promo-badge svg {
    color: #48C9C9;
    flex-shrink: 0;
}

.dh-promo-badge:hover {
    background: linear-gradient(135deg, #e5eff9, #e2f5f3);
    border-color: rgba(42,172,180,0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(42,172,180,0.1);
}

/* Hero Actions */
.dh-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 44px;
    animation: dh-fadeUp 0.8s ease 0.4s both;
}

.dh-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 34px;
    background: linear-gradient(135deg, #2AACB4, #1A9BA3);
    color: #fff !important;
    font-size: 14px;
    font-weight: 700;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(42,172,180,0.3);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    letter-spacing: 0.3px;
}

.dh-btn-bg {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: dh-shine 3s ease-in-out infinite;
}

@keyframes dh-shine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.dh-btn-primary:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 16px 40px rgba(42,172,180,0.4);
    color: #fff !important;
}

.dh-btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 28px;
    background: #ffffff;
    color: var(--primary) !important;
    font-size: 14px;
    font-weight: 600;
    border-radius: 14px;
    border: 2px solid var(--gray-200);
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
}

.dh-btn-whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
    transform: translateY(-4px);
    color: #fff !important;
    box-shadow: 0 12px 30px rgba(37,211,102,0.3);
}

.dh-btn-whatsapp:hover svg {
    fill: #fff;
}

/* Treatment Timeline */
.dh-timeline {
    display: flex;
    align-items: flex-start;
    gap: 0;
    animation: dh-fadeUp 0.8s ease 0.6s both;
    margin-top: 8px;
}

.dh-timeline-step {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 1;
    position: relative;
}

.dh-step-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2AACB4 0%, #1A9BA3 100%);
    border-radius: 50%;
    box-shadow: 0 6px 20px rgba(42,172,180,0.3);
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(.25,.8,.25,1);
}

.dh-timeline-step:hover .dh-step-icon {
    transform: scale(1.12);
    box-shadow: 0 8px 28px rgba(42,172,180,0.4);
}

.dh-step-icon--teal {
    background: linear-gradient(135deg, #48C9C9 0%, #4AA8A2 100%);
    box-shadow: 0 6px 20px rgba(72,201,201,0.3);
}

.dh-timeline-step:hover .dh-step-icon--teal {
    box-shadow: 0 8px 28px rgba(72,201,201,0.4);
}

.dh-step-icon--gold {
    background: linear-gradient(135deg, #D4A843 0%, #C4963A 100%);
    box-shadow: 0 6px 20px rgba(212,168,67,0.3);
}

.dh-timeline-step:hover .dh-step-icon--gold {
    box-shadow: 0 8px 28px rgba(212,168,67,0.4);
}

/* Connecting line between steps */
.dh-step-line {
    flex: 1;
    height: 3px;
    background: rgba(42,172,180,0.1);
    position: relative;
    margin: 0 -2px;
    border-radius: 3px;
    overflow: hidden;
}

.dh-step-line span {
    display: block;
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #2AACB4, #48C9C9);
    border-radius: 3px;
    animation: dh-lineGrow 1.2s ease 1.2s forwards;
}

@keyframes dh-lineGrow {
    to { width: 100%; }
}

/* Step number badge */
.dh-timeline-step::before {
    content: attr(data-step);
    position: absolute;
    top: -8px;
    left: 16px;
    width: 20px;
    height: 20px;
    background: #fff;
    border: 2px solid #2AACB4;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 800;
    color: #2AACB4;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    line-height: 1;
    text-align: center;
}

.dh-timeline-step[data-step="2"]::before {
    border-color: #48C9C9;
    color: #48C9C9;
}

.dh-timeline-step[data-step="3"]::before {
    border-color: #D4A843;
    color: #D4A843;
}

.dh-step-content {
    padding-left: 12px;
    min-width: 0;
}

.dh-step-content strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.25;
    margin-bottom: 2px;
    white-space: nowrap;
}

.dh-step-content p {
    font-size: 11px;
    color: var(--gray-500);
    margin: 0;
    line-height: 1.3;
    white-space: nowrap;
}

/* ---- HERO VISUAL (Right Side) ---- */
.dh-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: stretch;
    min-height: 500px;
    animation: dh-fadeUp 1s ease 0.3s both;
    margin: -40px -60px -40px 0;
}

/* Blob - Gizli */
.dh-blob-wrap { display: none; }

/* Image Showcase */
.dh-image-showcase {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 480px;
    overflow: hidden;
    z-index: 1;
    border-radius: 30px 0 0 30px;
}

.dh-image-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.dh-image-slide.active {
    opacity: 1;
}

.dh-image-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 10s ease;
}

.dh-image-slide.active img {
    animation: dh-slowZoom 14s ease forwards;
}

@keyframes dh-slowZoom {
    from { transform: scale(1.08); }
    to { transform: scale(1); }
}

/* Beyaz Sis / Fog - Tüm Kenarlar */
.dh-image-showcase::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    border-radius: inherit;
    box-shadow: inset 0 -60px 50px -20px rgba(255,255,255,1),
                inset 0 60px 50px -20px rgba(255,255,255,0.7),
                inset 60px 0 50px -20px rgba(255,255,255,0.85),
                inset -40px 0 40px -15px rgba(255,255,255,0.5);
}

/* Ekstra Alt Sis - Daha Yoğun */
.dh-image-showcase::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 35%;
    background: linear-gradient(to top,
        rgba(255,255,255,1) 0%,
        rgba(255,255,255,0.6) 40%,
        rgba(255,255,255,0) 100%
    );
    z-index: 3;
    pointer-events: none;
}

/* Floating Cards */
.dh-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px);
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(13,115,119,0.10);
    z-index: 5;
    border: 1px solid rgba(255,255,255,0.6);
    animation: dh-cardFloat 5s ease-in-out infinite;
}

.dh-fc-1 { animation-delay: 0s; }
.dh-fc-2 { animation-delay: -2.5s; }

@keyframes dh-cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.dh-fc-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #e6f7f7;
    flex-shrink: 0;
}

.dh-fc-icon-green {
    background: linear-gradient(135deg, #2AACB4, #1A9BA3);
}

.dh-fc-icon-teal {
    background: linear-gradient(135deg, #48C9C9, #4AA8A2);
}

.dh-fc-text strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.dh-fc-text span {
    font-size: 12px;
    color: var(--gray-500);
    font-weight: 500;
}

.dh-fc-1 {
    top: 8%;
    right: -10%;
    animation: dh-cardFloat1 5s ease-in-out infinite;
}

.dh-fc-2 {
    bottom: 20%;
    left: -15%;
    animation: dh-cardFloat2 6s ease-in-out infinite;
}

.dh-fc-3 {
    bottom: 5%;
    right: -5%;
    animation: dh-cardFloat3 5.5s ease-in-out infinite;
}

@keyframes dh-cardFloat1 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(2deg); }
}

@keyframes dh-cardFloat2 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(-2deg); }
}

@keyframes dh-cardFloat3 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Decorative Tooth */
.dh-deco-tooth {
    display: none !important;
}

@keyframes dh-toothSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Slider Navigation */
.dh-slider-nav {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 5;
    background: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(13,115,119,0.08);
    border: 1px solid rgba(42,172,180,0.1);
}

.dh-nav-progress {
    width: 80px;
    height: 3px;
    background: var(--gray-200);
    border-radius: 3px;
    overflow: hidden;
}

.dh-nav-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #2AACB4, #48C9C9);
    border-radius: 3px;
}

.dh-nav-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dh-nav-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gray-100);
    border: none;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.dh-nav-btn:hover {
    background: #2AACB4;
    color: #fff;
    transform: scale(1.1);
}

.dh-nav-count {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    min-width: 50px;
    text-align: center;
}

.dh-nav-count span:first-child {
    color: #2AACB4;
    font-size: 18px;
}

/* Services Ribbon */
.dh-ribbon {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 4;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    overflow: hidden;
    padding: 14px 0;
}

.dh-ribbon-track {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.dh-ribbon-inner {
    display: flex;
    align-items: center;
    gap: 40px;
    animation: dh-scroll 25s linear infinite;
    width: max-content;
}

@keyframes dh-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.dh-ribbon-item {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.dh-ri-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    flex-shrink: 0;
}

.dh-ri-dot {
    display: none;
}

.dh-ri-dot.green {
    display: none;
    filter: drop-shadow(0 0 4px rgba(72,201,201,0.5));
}

/* ============================================
   FEATURE CARDS - New Design
   ============================================ */
.dh-features {
    position: relative;
    z-index: 3;
    padding: 0;
    background: transparent;
    margin-top: -50px;
}

.dh-feat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(13,115,119,0.1);
}

.dh-feat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 30px 24px;
    background: #fff;
    border-right: 1px solid rgba(0,0,0,0.04);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.dh-feat-card:last-child {
    border-right: none;
}

.dh-feat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #2AACB4, #48C9C9);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.dh-feat-card:hover::after {
    transform: scaleX(1);
}

.dh-feat-card:hover {
    background: #f8fcfa;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(13,115,119,0.08);
    z-index: 2;
}

.dh-feat-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, #e6f7f7, #edf8f7);
    color: #2AACB4;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.dh-feat-card:hover .dh-feat-icon {
    background: linear-gradient(135deg, #2AACB4, #1A9BA3);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(42,172,180,0.3);
}

.dh-feat-content h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
    transition: color 0.3s;
}

.dh-feat-card:hover .dh-feat-content h3 {
    color: #2AACB4;
}

.dh-feat-content p {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.5;
    margin: 0;
}

.dh-feat-arrow {
    margin-left: auto;
    color: var(--gray-400);
    flex-shrink: 0;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s ease;
}

.dh-feat-card:hover .dh-feat-arrow {
    opacity: 1;
    transform: translateX(0);
    color: #2AACB4;
}

/* Responsive Hero */
@media (max-width: 1200px) {
    .dh-hero-grid { gap: 40px; }
    .dh-fc-1 { right: -5%; }
    .dh-fc-2 { left: -8%; }
}

/* ---- MOBILE DENTAL BACKGROUND ---- */
.dh-mobile-dental-bg {
    display: none !important;
}

/* Big tooth - main visual element */
.dh-mdb-tooth {
    position: absolute;
    filter: drop-shadow(0 4px 20px rgba(42,172,180,0.15));
}
.dh-mdb-1 {
    width: 140px;
    top: 30%;
    right: -15px;
    animation: dh-mdbFloat1 7s ease-in-out infinite;
    opacity: 1;
}
.dh-mdb-2 {
    width: 100px;
    bottom: 8%;
    left: -10px;
    animation: dh-mdbFloat2 9s ease-in-out infinite;
    opacity: 1;
}

/* Sparkle stars */
.dh-mdb-sparkle {
    position: absolute;
    border-radius: 50%;
    animation: dh-mdbPulse 2.5s ease-in-out infinite;
}
.dh-mdb-s1 {
    width: 10px; height: 10px;
    background: radial-gradient(circle, #2AACB4 0%, transparent 70%);
    top: 35%; left: 12%;
    animation-delay: 0s;
    box-shadow: 0 0 12px rgba(42,172,180,0.4);
}
.dh-mdb-s2 {
    width: 14px; height: 14px;
    background: radial-gradient(circle, #48C9C9 0%, transparent 70%);
    top: 48%; right: 8%;
    animation-delay: 0.6s;
    box-shadow: 0 0 16px rgba(72,201,201,0.4);
}
.dh-mdb-s3 {
    width: 8px; height: 8px;
    background: radial-gradient(circle, #D4A843 0%, transparent 70%);
    bottom: 15%; left: 20%;
    animation-delay: 1.2s;
    box-shadow: 0 0 10px rgba(212,168,67,0.4);
}
.dh-mdb-s4 {
    width: 12px; height: 12px;
    background: radial-gradient(circle, #2AACB4 0%, transparent 70%);
    top: 60%; right: 18%;
    animation-delay: 1.8s;
    box-shadow: 0 0 14px rgba(42,172,180,0.3);
}
.dh-mdb-s5 {
    width: 6px; height: 6px;
    background: radial-gradient(circle, #48C9C9 0%, transparent 70%);
    top: 28%; left: 55%;
    animation-delay: 0.4s;
    box-shadow: 0 0 8px rgba(72,201,201,0.3);
}

/* Dental cross */
.dh-mdb-cross {
    position: absolute;
    width: 36px;
    height: 36px;
}
.dh-mdb-c1 {
    top: 55%;
    right: 6%;
    animation: dh-mdbSpin 15s linear infinite;
    filter: drop-shadow(0 0 6px rgba(42,172,180,0.2));
}

/* Smile arc */
.dh-mdb-smile {
    position: absolute;
    width: 100px;
    bottom: 22%;
    right: 8%;
    animation: dh-mdbFloat1 6s ease-in-out infinite;
    opacity: 1;
    filter: drop-shadow(0 2px 8px rgba(72,201,201,0.2));
}

/* Circle rings - bigger, more visible */
.dh-mdb-ring {
    position: absolute;
    border-radius: 50%;
}
.dh-mdb-r1 {
    width: 90px; height: 90px;
    border: 3px solid rgba(42,172,180,0.15);
    top: 40%;
    left: 2%;
    animation: dh-mdbRing 5s ease-in-out infinite;
    background: radial-gradient(circle, rgba(42,172,180,0.04) 0%, transparent 70%);
}
.dh-mdb-r2 {
    width: 65px; height: 65px;
    border: 3px solid rgba(72,201,201,0.15);
    bottom: 30%;
    right: 3%;
    animation: dh-mdbRing 7s ease-in-out infinite reverse;
    background: radial-gradient(circle, rgba(72,201,201,0.04) 0%, transparent 70%);
}

@keyframes dh-mdbFloat1 {
    0%, 100% { transform: rotate(12deg) translateY(0); }
    50% { transform: rotate(18deg) translateY(-22px); }
}
@keyframes dh-mdbFloat2 {
    0%, 100% { transform: rotate(-18deg) translateY(0); }
    50% { transform: rotate(-12deg) translateY(-18px); }
}
@keyframes dh-mdbPulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.8); }
}
@keyframes dh-mdbSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
@keyframes dh-mdbRing {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.3); opacity: 1; }
}

/* ---- MOBILE TRUST BADGES ---- */
.dh-mobile-trust {
    display: none;
}

/* ---- MOBILE SCROLLING RIBBON ---- */
.dh-mobile-ribbon {
    display: none;
}

.dh-mobile-ribbon-track {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.dh-mobile-ribbon-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    white-space: nowrap;
    animation: dh-mRibbonScroll 20s linear infinite;
    width: max-content;
}

.dh-mobile-ribbon-inner span {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.3px;
}

.dh-mobile-ribbon-inner i {
    font-style: normal;
    color: #48C9C9;
    font-size: 10px;
}

@keyframes dh-mRibbonScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ---- MOBİL RESPONSIVE ---- */
@media (max-width: 1024px) {
    .dh-hero {
        min-height: auto !important;
        overflow: hidden !important;
        background: linear-gradient(160deg, #fff 0%, #e0f5f5 25%, #d8f2f2 50%, #edf8f7 75%, #fff 100%) !important;
    }
    .dh-hero-grid {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
        padding: 140px 16px 40px !important;
        text-align: center !important;
        min-height: auto !important;
    }

    /* Kill ALL animations inside hero */
    .dh-hero .dh-hero-tag,
    .dh-hero .dh-title-slider,
    .dh-hero .dh-desc-slider,
    .dh-hero .dh-hero-actions,
    .dh-hero .dh-timeline,
    .dh-hero .dh-mobile-banner,
    .dh-hero .dh-hero-text {
        animation: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

    /* Prevent ANY overflow */
    .dh-hero-text,
    .dh-hero-grid,
    .dh-hero-actions,
    .dh-title-slider,
    .dh-desc-slider {
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    /* Title - fix absolute + make text visible */
    .dh-hero .dh-title {
        display: none !important;
        position: relative !important;
        opacity: 1 !important;
        transform: none !important;
        pointer-events: auto !important;
        font-size: 26px !important;
        line-height: 1.25 !important;
        margin-bottom: 12px !important;
        color: #1a2a2e !important;
        -webkit-text-fill-color: #1a2a2e !important;
    }
    .dh-hero .dh-title.active {
        display: block !important;
    }
    /* Fix gradient text children */
    .dh-hero .dh-title span,
    .dh-hero .dh-title strong {
        -webkit-text-fill-color: transparent !important;
        background: linear-gradient(135deg, #2AACB4, #48C9C9) !important;
        -webkit-background-clip: text !important;
        background-clip: text !important;
    }

    /* Desc - fix absolute + make text visible */
    .dh-hero .dh-desc {
        display: none !important;
        position: relative !important;
        opacity: 1 !important;
        transform: none !important;
        pointer-events: auto !important;
        max-width: 100% !important;
        font-size: 14px !important;
        margin-bottom: 18px !important;
        color: #555 !important;
        -webkit-text-fill-color: #555 !important;
    }
    .dh-hero .dh-desc.active {
        display: block !important;
    }

    /* Hero tag - force text visible */
    .dh-hero-tag {
        font-size: 11px !important;
        margin-bottom: 12px !important;
        margin-top: 30px !important;
        animation: none !important;
        opacity: 1 !important;
        color: #1a2a2e !important;
        -webkit-text-fill-color: #1a2a2e !important;
    }
    .dh-hero-tag span {
        color: #1a2a2e !important;
        -webkit-text-fill-color: #1a2a2e !important;
    }

    /* Hide desktop-only elements */
    .dh-hero-visual { display: none !important; }
    .dh-bg-shapes { display: none !important; }
    .dh-blob-wrap { display: none !important; }
    .dh-deco-tooth { display: none !important; }

    /* Show mobile-only elements */
    .dh-mobile-dental-bg { display: none !important; }

    /* Hide timeline on mobile first screen */
    .dh-timeline { display: none !important; }

    /* Mobile Steps */
    .dh-mobile-trust {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-top: 20px;
        width: 100%;
        box-sizing: border-box;
    }
    .dh-mt-item {
        display: flex;
        align-items: center;
        gap: 10px;
        background: rgba(255,255,255,0.85);
        border: 1px solid rgba(42,172,180,0.1);
        border-radius: 14px;
        padding: 12px;
    }
    .dh-mt-full {
        grid-column: 1 / -1;
        justify-content: center;
    }
    .dh-mt-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .dh-mt-icon--blue { background: linear-gradient(135deg, #2AACB4, #1A9BA3); }
    .dh-mt-icon--teal { background: linear-gradient(135deg, #48C9C9, #4AA8A2); }
    .dh-mt-icon--gold { background: linear-gradient(135deg, #D4A843, #C4963A); }
    .dh-mt-icon svg {
        width: 18px !important;
        height: 18px !important;
    }
    .dh-mt-text {
        display: flex;
        flex-direction: column;
    }
    .dh-mt-text strong {
        font-size: 12px;
        font-weight: 700;
        color: #1a2a2e;
        -webkit-text-fill-color: #1a2a2e;
        line-height: 1.3;
    }
    .dh-mt-text span {
        font-size: 10px;
        color: #5a7e82;
        -webkit-text-fill-color: #5a7e82;
        line-height: 1.3;
    }

    /* Mobile Scrolling Ribbon */
    .dh-mobile-ribbon {
        display: block !important;
        background: #1a2a2e;
        padding: 11px 0;
        margin-top: 20px;
        border-radius: 12px;
        overflow: hidden;
        width: 100%;
        box-sizing: border-box;
    }

    /* Buttons - force text visible + prevent overflow */
    .dh-hero-actions {
        justify-content: center !important;
        flex-direction: column !important;
        gap: 10px !important;
        width: 100% !important;
    }
    .dh-btn-primary {
        display: flex !important;
        width: 100% !important;
        max-width: 100% !important;
        justify-content: center !important;
        padding: 14px 16px !important;
        font-size: 14px !important;
        border-radius: 14px !important;
        box-sizing: border-box !important;
        color: #fff !important;
        -webkit-text-fill-color: #fff !important;
    }
    .dh-btn-primary span,
    .dh-btn-primary svg {
        color: #fff !important;
        -webkit-text-fill-color: #fff !important;
        fill: #fff !important;
    }
    .dh-btn-whatsapp {
        display: flex !important;
        width: 100% !important;
        max-width: 100% !important;
        justify-content: center !important;
        padding: 14px 16px !important;
        font-size: 14px !important;
        border-radius: 14px !important;
        box-sizing: border-box !important;
        color: #25D366 !important;
        -webkit-text-fill-color: #25D366 !important;
    }
    .dh-btn-whatsapp span,
    .dh-btn-whatsapp svg {
        color: #25D366 !important;
        -webkit-text-fill-color: #25D366 !important;
    }

    /* Timeline */
    .dh-timeline {
        flex-direction: column !important;
        gap: 0 !important;
        margin-top: 16px !important;
        background: linear-gradient(135deg, #f8fbfe, #f0f7f6) !important;
        border: 1px solid rgba(42,172,180,0.08) !important;
        border-radius: 16px !important;
        padding: 14px 16px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .dh-timeline-step {
        flex-direction: row !important;
        align-items: center !important;
        padding: 8px 0 !important;
    }
    .dh-step-icon { width: 38px !important; height: 38px !important; min-width: 38px !important; }
    .dh-step-icon svg { width: 18px !important; height: 18px !important; }
    .dh-step-line {
        width: 3px !important; height: 20px !important; flex: none !important;
        position: absolute !important; left: 18px !important; top: 50px !important; margin: 0 !important;
    }
    .dh-timeline-step:last-child .dh-step-line { display: none !important; }
    .dh-step-content strong { font-size: 12px !important; }
    .dh-step-content p { font-size: 10px !important; }
    .dh-timeline-step::before {
        top: -4px !important; left: 10px !important; width: 18px !important; height: 18px !important; font-size: 9px !important;
    }

    /* Slider nav */
    .dh-slider-nav { position: relative !important; bottom: auto !important; left: auto !important; transform: none !important; margin: 16px auto 0 !important; display: inline-flex !important; }
    .dh-ribbon { position: relative !important; padding: 10px 0 !important; margin-top: 30px !important; }
    .dh-ribbon-item { font-size: 12px !important; }

    /* Features grid */
    .dh-feat-grid { grid-template-columns: 1fr 1fr !important; gap: 0 !important; }
    .dh-feat-card { flex-direction: column !important; align-items: center !important; text-align: center !important; padding: 18px 10px !important; }
    .dh-feat-card:nth-child(2) { border-right: none !important; }
    .dh-feat-card:nth-child(odd) { border-right: 1px solid rgba(0,0,0,0.04) !important; }
    .dh-feat-card { border-bottom: 1px solid rgba(0,0,0,0.04) !important; }
    .dh-feat-card:nth-child(n+3) { border-bottom: none !important; }
    .dh-feat-arrow { display: none !important; }
    .dh-feat-icon { margin-bottom: 8px !important; }
    .dh-feat-content h3 { font-size: 13px !important; }
    .dh-feat-content p { font-size: 11px !important; }
    .dh-features { margin-top: 0 !important; }
}

@media (max-width: 480px) {
    .dh-hero-grid { padding: 120px 12px 30px !important; gap: 14px !important; }
    .dh-hero .dh-title { font-size: 22px !important; }
    .dh-hero .dh-desc { font-size: 13px !important; }
    .dh-step-icon { width: 34px !important; height: 34px !important; min-width: 34px !important; }
    .dh-step-icon svg { width: 16px !important; height: 16px !important; }
    .dh-step-content strong { font-size: 11px !important; }
    .dh-step-content p { font-size: 9px !important; }
    .dh-step-line { left: 16px !important; }
    .dh-feat-content p { display: none !important; }
}

/* Fade in animation for cards */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}



/* ============================================
   SECTION COMMON STYLES - Premium
   ============================================ */
.bg-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.bg-section-gray {
    background: linear-gradient(180deg, #f0f8f8 0%, #f6f9fa 40%, #fff 100%);
    position: relative;
}

/* Decorative mesh gradient for gray sections */
.bg-section-gray::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(42,172,180,0.06), transparent 60%);
    pointer-events: none;
    animation: meshFloat 20s ease-in-out infinite;
}

.bg-section-gray::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(72,201,201,0.04), transparent 60%);
    pointer-events: none;
    animation: meshFloat 15s ease-in-out infinite reverse;
}

.bg-section-dark {
    background: var(--primary);
}

.bg-section-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 72px;
    position: relative;
    z-index: 1;
}

.bg-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 12px 28px;
    background: linear-gradient(135deg, rgba(42,172,180,0.08), rgba(72,201,201,0.05));
    border: 1px solid rgba(42,172,180,0.15);
    border-radius: 50px;
    color: var(--secondary);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 28px;
    position: relative;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(42,172,180,0.08);
}

.bg-section-badge::before,
.bg-section-badge::after {
    content: '';
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    display: inline-block;
    vertical-align: middle;
    border-radius: 2px;
}

.bg-section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 800;
    color: var(--primary);
    line-height: 1.12;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.bg-section-title span {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.bg-section-desc {
    font-size: 17px;
    color: var(--gray-600);
    line-height: 1.8;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.bg-section-dark .bg-section-title {
    color: var(--white);
}

.bg-section-dark .bg-section-desc {
    color: rgba(255,255,255,0.55);
}

.bg-section-dark .bg-section-badge {
    background: rgba(42,172,180,0.08);
    border-color: rgba(42,172,180,0.15);
    color: var(--secondary-light);
}

.bg-section-dark .bg-section-badge::before,
.bg-section-dark .bg-section-badge::after {
    background: linear-gradient(90deg, var(--secondary), var(--accent));
}

/* ============================================
   SERVICES SECTION - Stunning Cards
   ============================================ */
.bg-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.bg-service-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 420px;
    cursor: pointer;
    text-decoration: none;
    display: block;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255,255,255,0.08);
}

.bg-service-card:hover {
    box-shadow: 0 30px 80px rgba(42,172,180,0.15), 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-16px) scale(1.02);
}

.bg-service-card-img {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.bg-service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.bg-service-card:hover .bg-service-card-img img {
    transform: scale(1.12);
}

.bg-service-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg, transparent 25%, rgba(13,115,119,0.85) 100%);
    transition: background 0.5s ease;
}

.bg-service-card:hover .bg-service-card-overlay {
    background: linear-gradient(180deg, rgba(42,172,180,0.1) 0%, rgba(13,115,119,0.92) 100%);
}

.bg-service-card-num {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 3;
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.12);
    transition: all 0.4s ease;
}

.bg-service-card:hover .bg-service-card-num {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--dark);
    border-color: var(--accent);
    box-shadow: 0 4px 16px rgba(72,201,201,0.3);
    transform: rotate(5deg);
}

.bg-service-card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 28px;
    transform: translateY(16px);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.bg-service-card:hover .bg-service-card-body {
    transform: translateY(0);
}

.bg-service-card-body h3 {
    font-size: 19px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.bg-service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease 0.1s;
}

.bg-service-card:hover .bg-service-link {
    opacity: 1;
    transform: translateY(0);
}

.bg-service-link svg {
    transition: transform 0.3s;
}

.bg-service-card:hover .bg-service-link svg {
    transform: translateX(5px);
}

.bg-services-more {
    text-align: center;
    margin-top: 56px;
}

/* ============================================
   TRUST / TESTIMONIALS - Dark Premium
   ============================================ */
.bg-trust-section {
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

/* Animated gradient mesh */
.bg-trust-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 900px;
    height: 900px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(42,172,180,0.06), transparent 60%);
    pointer-events: none;
    animation: meshFloat 15s ease-in-out infinite;
}

.bg-trust-section::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -15%;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(72,201,201,0.04), transparent 60%);
    pointer-events: none;
    animation: meshFloat 12s ease-in-out infinite reverse;
}

@keyframes meshFloat {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(30px, -20px); }
    66% { transform: translate(-20px, 30px); }
}

.bg-trust-section .bg-section-title {
    color: #fff;
}

.bg-trust-section .bg-section-title span {
    background: linear-gradient(135deg, var(--secondary-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-trust-section .bg-section-desc {
    color: rgba(255,255,255,0.5);
}

.bg-trust-section .bg-section-badge {
    background: rgba(42,172,180,0.06);
    border-color: rgba(42,172,180,0.12);
    color: var(--secondary-light);
}

.bg-trust-section .bg-section-badge::before,
.bg-trust-section .bg-section-badge::after {
    background: linear-gradient(90deg, var(--secondary), rgba(72,201,201,0.5));
}

/* Trust Stats - Premium Row */
.bg-trust-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-bottom: 72px;
    border: 1px solid rgba(42,172,180,0.12);
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 40px rgba(13,115,119,0.06);
}

.bg-trust-stat {
    text-align: center;
    padding: 44px 24px;
    border-right: 1px solid rgba(42,172,180,0.08);
    transition: all 0.5s ease;
    position: relative;
}

.bg-trust-stat:last-child {
    border-right: none;
}

.bg-trust-stat::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    transition: width 0.5s ease;
}

.bg-trust-stat:hover::after {
    width: 60%;
}

.bg-trust-stat:hover {
    background: rgba(42,172,180,0.04);
}

.bg-trust-stat-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(42,172,180,0.08);
    border: 1px solid rgba(42,172,180,0.12);
    color: var(--secondary);
    transition: all 0.4s ease;
}

.bg-trust-stat:hover .bg-trust-stat-icon {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    border-color: var(--secondary);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(42,172,180,0.25);
}

.bg-trust-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.bg-trust-stat-label {
    font-size: 13px;
    color: var(--gray-600);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Testimonial Cards - Glassmorphism */
.bg-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.bg-testimonial-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 40px;
    border: 1px solid rgba(42,172,180,0.1);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(13,115,119,0.05);
}

/* Animated gradient border on hover */
.bg-testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 24px;
    right: 32px;
    font-family: 'Playfair Display', serif;
    font-size: 90px;
    color: rgba(72,201,201,0.08);
    line-height: 1;
    transition: all 0.4s ease;
}

.bg-testimonial-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--secondary), var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bg-testimonial-card:hover::after {
    opacity: 1;
}

.bg-testimonial-card:hover::before {
    color: rgba(72,201,201,0.15);
    transform: scale(1.1);
}

.bg-testimonial-card:hover {
    transform: translateY(-10px);
    background: #fff;
    border-color: rgba(42,172,180,0.2);
    box-shadow: 0 24px 60px rgba(13,115,119,0.1);
}

.bg-testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
}

.bg-testimonial-stars svg {
    width: 18px;
    height: 18px;
    filter: drop-shadow(0 0 4px rgba(72,201,201,0.4));
}

.bg-testimonial-text {
    font-size: 15.5px;
    color: var(--gray-700);
    line-height: 1.85;
    margin-bottom: 32px;
    font-style: italic;
}

.bg-testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.bg-testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(42,172,180,0.25);
}

.bg-testimonial-author strong {
    display: block;
    font-size: 15px;
    color: var(--primary);
}

.bg-testimonial-author span {
    font-size: 12px;
    color: var(--gray-500);
}

/* ============================================
   PREMIUM "MORE" BUTTONS
   ============================================ */
.bg-section-more {
    text-align: center;
    margin-top: 48px;
}
.bg-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0;
    position: relative;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 700;
    color: #1a2a2e;
    background: transparent;
    border: 2px solid rgba(42,172,180,0.2);
    border-radius: 60px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    letter-spacing: 0.3px;
}
.bg-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, #2AACB4, #48C9C9);
    border-radius: 60px;
    transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 0;
}
.bg-more-btn:hover::before {
    width: 100%;
}
.bg-more-btn:hover {
    border-color: transparent;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(42,172,180,0.25);
}
.bg-more-btn-text {
    position: relative;
    z-index: 1;
    transition: color 0.4s;
}
.bg-more-btn:hover .bg-more-btn-text {
    color: #fff;
}
.bg-more-btn-icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-left: 12px;
    background: rgba(42,172,180,0.1);
    border-radius: 50%;
    color: #2AACB4;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.bg-more-btn:hover .bg-more-btn-icon {
    background: rgba(255,255,255,0.2);
    color: #fff;
    transform: translateX(4px);
}

/* ============================================
   FAQ / SSS SECTION - Premium Accordion
   ============================================ */
.bg-faq-section {
    background: linear-gradient(170deg, #f0f8f8 0%, #ffffff 40%, #f6f9fa 70%, #f0f8f8 100%);
    position: relative;
    overflow: hidden;
}

.bg-faq-deco {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.bg-faq-deco--1 {
    width: 450px; height: 450px;
    top: -180px; right: -120px;
    background: radial-gradient(circle, rgba(42,172,180,0.06) 0%, transparent 70%);
    animation: meshFloat 16s ease-in-out infinite;
}
.bg-faq-deco--2 {
    width: 350px; height: 350px;
    bottom: -120px; left: -80px;
    background: radial-gradient(circle, rgba(72,201,201,0.05) 0%, transparent 70%);
    animation: meshFloat 12s ease-in-out infinite reverse;
}

.bg-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.bg-faq-item {
    background: #fff;
    border: 1px solid rgba(42,172,180,0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 12px rgba(13,115,119,0.04);
}

.bg-faq-item:hover {
    border-color: rgba(42,172,180,0.2);
    box-shadow: 0 8px 30px rgba(13,115,119,0.08);
}

.bg-faq-item.active {
    border-color: rgba(72,201,201,0.3);
    box-shadow: 0 8px 30px rgba(42,172,180,0.1);
}

.bg-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 22px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 16px;
    transition: all 0.3s;
}

.bg-faq-question span {
    font-size: 15.5px;
    font-weight: 650;
    color: #1a2a2e;
    line-height: 1.4;
}

.bg-faq-item.active .bg-faq-question span {
    color: #2AACB4;
}

.bg-faq-chevron {
    flex-shrink: 0;
    color: #2AACB4;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.bg-faq-item.active .bg-faq-chevron {
    transform: rotate(180deg);
    color: #48C9C9;
}

.bg-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s;
    padding: 0 24px;
}

.bg-faq-item.active .bg-faq-answer {
    max-height: 300px;
    padding: 0 24px 24px;
}

.bg-faq-answer p {
    font-size: 14.5px;
    color: #5a6a7a;
    line-height: 1.85;
    margin: 0;
    padding-top: 4px;
    border-top: 1px solid rgba(42,172,180,0.08);
    padding-top: 16px;
}

/* FAQ Responsive */
@media (max-width: 767px) {
    .bg-faq-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .bg-faq-question {
        padding: 18px 20px;
    }
    .bg-faq-question span {
        font-size: 14.5px;
    }
    .bg-faq-answer p {
        font-size: 13.5px;
    }
    .bg-faq-item.active .bg-faq-answer {
        padding: 0 20px 20px;
    }
}

/* ============================================
   ABOUT / WHY US - Premium Layout
   ============================================ */
.bg-about-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #fff 0%, #f6f9fa 50%, #f0f8f8 100%);
}

/* Decorative shapes */
.bg-about-section::before {
    content: '';
    position: absolute;
    top: 5%;
    right: -80px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(42,172,180,0.06), transparent 60%);
    pointer-events: none;
    animation: meshFloat 18s ease-in-out infinite;
}

.bg-about-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -120px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(72,201,201,0.05), transparent 60%);
    pointer-events: none;
    animation: meshFloat 14s ease-in-out infinite reverse;
}

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

.bg-about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 3.5vw, 44px);
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.bg-about-content h2 span {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-about-content > p {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.9;
    margin-bottom: 36px;
}

.bg-about-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 40px;
}

.bg-about-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    padding: 14px 18px;
    border-radius: 16px;
    background: var(--cream);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.bg-about-list li:hover {
    border-color: var(--secondary);
    background: var(--white);
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(42,172,180,0.1);
}

.bg-about-list li svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.bg-about-images {
    position: relative;
}

.bg-about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(13,115,119,0.15);
    position: relative;
}

/* Decorative border glow */
.bg-about-img-main::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(42,172,180,0.2), transparent, rgba(72,201,201,0.2));
    z-index: -1;
}

.bg-about-img-main img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.bg-about-img-main:hover img {
    transform: scale(1.04);
}

.bg-about-floating-card {
    position: absolute;
    bottom: -24px;
    left: -40px;
    background: var(--white);
    padding: 28px 32px;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(13,115,119,0.12);
    display: flex;
    align-items: center;
    gap: 18px;
    border: 1px solid rgba(0,0,0,0.04);
    animation: floatCard 4s ease-in-out infinite;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.bg-about-floating-card .icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(42,172,180,0.25);
}

.bg-about-floating-card .icon svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.bg-about-floating-card .text strong {
    display: block;
    font-size: 26px;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    color: var(--primary);
}

.bg-about-floating-card .text span {
    font-size: 13px;
    color: var(--gray-600);
}

/* Stats Row */
.bg-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 36px;
}

.bg-stat-item {
    text-align: center;
    padding: 22px 14px;
    background: var(--cream);
    border-radius: 18px;
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.4s ease;
}

.bg-stat-item:hover {
    border-color: var(--secondary);
    box-shadow: 0 8px 24px rgba(42,172,180,0.08);
    transform: translateY(-4px);
}

.bg-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-stat-suffix, .bg-stat-prefix {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-stat-label {
    display: block;
    font-size: 12px;
    color: var(--gray-600);
    margin-top: 4px;
    font-weight: 500;
}

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

/* ============================================
   TREATMENT PROCESS - Premium Timeline
   ============================================ */
.bg-process-section {
    background: linear-gradient(180deg, #f0f8f8, #f6f9fa, #fff);
    position: relative;
    overflow: hidden;
}

.bg-process-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 900px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(42,172,180,0.05), transparent 60%);
    pointer-events: none;
    animation: meshFloat 20s ease-in-out infinite;
}

.bg-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.bg-process-grid::before {
    content: '';
    position: absolute;
    top: 52px;
    left: 12.5%;
    right: 12.5%;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    z-index: 0;
    border-radius: 3px;
    opacity: 0.3;
}

.bg-process-step {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 20px;
    transition: all 0.4s ease;
}

.bg-process-num {
    width: 104px;
    height: 104px;
    margin: 0 auto 28px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid rgba(42,172,180,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.bg-process-num-inner {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(42,172,180,0.06), rgba(72,201,201,0.04));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.bg-process-step:hover .bg-process-num {
    border-color: var(--secondary);
    transform: scale(1.1);
    box-shadow: 0 12px 36px rgba(42,172,180,0.2);
}

.bg-process-step:hover .bg-process-num-inner {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: #fff;
    box-shadow: 0 4px 16px rgba(42,172,180,0.3);
}

.bg-process-step-number {
    position: absolute;
    top: -8px;
    right: -2px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--dark);
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(72,201,201,0.3);
}

.bg-process-step h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.bg-process-step p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ============================================
   CTA BANNER - Cinematic
   ============================================ */
.bg-cta-banner {
    background: linear-gradient(165deg, #0a3d3f 0%, #1a3330 40%, #1A9BA3 100%);
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}

/* Animated gradient circles */
.bg-cta-banner::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(42,172,180,0.08), transparent 60%);
    animation: ctaPulse 10s ease-in-out infinite;
}

.bg-cta-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(72,201,201,0.06), transparent 60%);
    animation: ctaPulse 8s ease-in-out infinite reverse;
}

@keyframes ctaPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.6; }
}

/* Extra floating circles */
.bg-cta-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.bg-cta-circle-1 {
    width: 200px;
    height: 200px;
    top: 20%;
    left: 10%;
    border: 1px solid rgba(42,172,180,0.08);
    animation: ctaCircleFloat 12s ease-in-out infinite;
}

.bg-cta-circle-2 {
    width: 300px;
    height: 300px;
    bottom: -10%;
    right: 5%;
    border: 1px solid rgba(72,201,201,0.06);
    animation: ctaCircleFloat 15s ease-in-out infinite reverse;
}

.bg-cta-circle-3 {
    width: 150px;
    height: 150px;
    top: 60%;
    left: 60%;
    border: 1px solid rgba(255,255,255,0.04);
    animation: ctaCircleFloat 10s ease-in-out infinite;
}

@keyframes ctaCircleFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(20px, -15px) scale(1.05); }
    50% { transform: translate(-10px, 20px) scale(0.95); }
    75% { transform: translate(15px, 10px) scale(1.02); }
}

.bg-cta-inner {
    position: relative;
    z-index: 2;
    text-align: center;
}

.bg-cta-inner h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.bg-cta-inner p {
    font-size: 17px;
    color: rgba(255,255,255,0.6);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.bg-cta-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.bg-btn-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 17px 40px;
    background: var(--white);
    color: var(--primary);
    font-size: 15px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.bg-btn-white:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 40px rgba(0,0,0,0.25);
    color: var(--primary);
}

.bg-btn-wp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 17px 40px;
    background: #25D366;
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(37,211,102,0.25);
}

.bg-btn-wp:hover {
    background: #1fb855;
    transform: translateY(-4px) scale(1.02);
    color: var(--white);
    box-shadow: 0 16px 40px rgba(37,211,102,0.3);
}

/* ============================================
   BLOG SECTION - Magazine Layout
   ============================================ */
.bg-blog-featured-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 30px;
}

/* ---- Main Featured Blog Card ---- */
.bg-blog-featured-main {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    display: block;
    text-decoration: none;
    min-height: 500px;
    box-shadow: 0 16px 50px rgba(0,0,0,0.1);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(42,172,180,0.1);
}

.bg-blog-featured-main:hover {
    box-shadow:
        0 25px 60px rgba(13,115,119,0.18),
        0 0 0 1px rgba(72,201,201,0.15);
    transform: translateY(-10px);
    border-color: rgba(72,201,201,0.3);
}

/* Shimmer */
.bg-blog-featured-main::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
    z-index: 10;
    pointer-events: none;
}
.bg-blog-featured-main:hover::before {
    animation: cardShimmer 0.8s ease forwards;
}

/* Glowing border */
.bg-blog-featured-main::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, #2AACB4, #48C9C9, #2AACB4);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    z-index: 10;
    transition: opacity 0.5s ease;
    pointer-events: none;
}
.bg-blog-featured-main:hover::after {
    opacity: 1;
}

.bg-blog-featured-main-img {
    position: absolute;
    inset: 0;
}

.bg-blog-featured-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
    filter: brightness(0.9) saturate(1.1);
}

.bg-blog-featured-main:hover .bg-blog-featured-main-img img {
    transform: scale(1.12);
    filter: brightness(0.6) saturate(1.3);
}

.bg-blog-featured-main-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(13,27,42,0.4) 40%,
        rgba(13,27,42,0.92) 100%);
    z-index: 2;
    transform: translateY(10px);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.bg-blog-featured-main:hover .bg-blog-featured-main-body {
    transform: translateY(0);
}

.bg-blog-featured-main-title {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.3;
    text-shadow: 0 2px 16px rgba(0,0,0,0.5);
    letter-spacing: 0.3px;
}

/* Date Badge */
.bg-blog-date-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 14px;
    padding: 10px 14px;
    margin-bottom: 14px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.4s ease;
}
.bg-blog-featured-main:hover .bg-blog-date-badge {
    background: rgba(72,201,201,0.15);
    border-color: rgba(72,201,201,0.3);
}

.bg-blog-date-badge-sm {
    padding: 8px 12px;
    border-radius: 12px;
}

.bg-blog-date-day {
    font-size: 24px;
    font-weight: 800;
    color: #48C9C9;
    line-height: 1;
}

.bg-blog-date-badge-sm .bg-blog-date-day {
    font-size: 20px;
}

.bg-blog-date-month {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bg-blog-date-year {
    font-size: 10px;
    color: rgba(255,255,255,0.45);
}

/* Read More */
.bg-blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #48C9C9;
    padding: 6px 14px;
    background: rgba(72,201,201,0.1);
    border-radius: 20px;
    border: 1px solid rgba(72,201,201,0.15);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(8px);
}

.bg-blog-featured-main:hover .bg-blog-read-more,
.bg-blog-featured-side-card:hover .bg-blog-read-more {
    opacity: 1;
    transform: translateY(0);
    color: #5ED5D5;
    background: rgba(72,201,201,0.15);
}

/* ---- Side Blog Cards ---- */
.bg-blog-featured-side {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.bg-blog-featured-side-card {
    display: flex;
    flex-direction: row;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(42,172,180,0.1);
    text-decoration: none;
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    flex: 1;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
    position: relative;
}

/* Shimmer for side cards */
.bg-blog-featured-side-card::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    z-index: 10;
    pointer-events: none;
}
.bg-blog-featured-side-card:hover::before {
    animation: cardShimmer 0.8s ease forwards;
}

/* Glowing border for side cards */
.bg-blog-featured-side-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #2AACB4, #48C9C9, #2AACB4);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    z-index: 10;
    transition: opacity 0.5s ease;
    pointer-events: none;
}
.bg-blog-featured-side-card:hover::after {
    opacity: 1;
}

.bg-blog-featured-side-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 50px rgba(13,115,119,0.12),
        0 0 0 1px rgba(72,201,201,0.15);
    border-color: rgba(72,201,201,0.3);
}

.bg-blog-featured-side-img {
    width: 200px;
    min-width: 200px;
    overflow: hidden;
    position: relative;
}

.bg-blog-featured-side-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
    filter: brightness(0.9) saturate(1.1);
}

.bg-blog-featured-side-card:hover .bg-blog-featured-side-img img {
    transform: scale(1.12);
    filter: brightness(0.75) saturate(1.3);
}

.bg-blog-featured-side-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.bg-blog-featured-side-card:hover .bg-blog-date-badge {
    background: rgba(42,172,180,0.08);
    border-color: rgba(42,172,180,0.2);
}
.bg-blog-featured-side-card .bg-blog-date-badge {
    background: rgba(42,172,180,0.05);
    border-color: rgba(42,172,180,0.1);
}
.bg-blog-featured-side-card .bg-blog-date-day {
    color: #2AACB4;
}
.bg-blog-featured-side-card .bg-blog-date-month {
    color: #1a2a2e;
}
.bg-blog-featured-side-card .bg-blog-date-year {
    color: rgba(13,115,119,0.4);
}
.bg-blog-featured-side-card .bg-blog-read-more {
    opacity: 1;
    transform: none;
    color: #2AACB4;
    background: rgba(42,172,180,0.06);
    border-color: rgba(42,172,180,0.12);
}
.bg-blog-featured-side-card:hover .bg-blog-read-more {
    color: #48C9C9;
    background: rgba(72,201,201,0.1);
    border-color: rgba(72,201,201,0.2);
}

.bg-blog-featured-side-title {
    font-family: 'Oswald', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #1a2a2e;
    margin-bottom: 12px;
    line-height: 1.4;
    letter-spacing: 0.2px;
    transition: color 0.3s;
}
.bg-blog-featured-side-card:hover .bg-blog-featured-side-title {
    color: #2AACB4;
}

.bg-blog-more {
    text-align: center;
    margin-top: 56px;
}

/* Old blog styles (keep for compatibility) */
.bg-blog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 28px;
}

.bg-blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(0,0,0,0.04);
    text-decoration: none;
    display: block;
}

.bg-blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(13,115,119,0.1);
    border-color: transparent;
}

.bg-blog-card-featured {
    grid-row: 1 / 3;
    position: relative;
}

.bg-blog-card-featured .bg-blog-card-img {
    height: 100%;
    min-height: 420px;
}

.bg-blog-card-featured .bg-blog-card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    background: linear-gradient(transparent, rgba(13,115,119,0.9));
    z-index: 2;
}

.bg-blog-card-featured .bg-blog-card-date { color: rgba(255,255,255,0.7); }
.bg-blog-card-featured h3 { color: #fff; font-size: 22px; }
.bg-blog-card-featured .bg-service-link { color: var(--accent); opacity: 1; }

.bg-blog-card-small {
    display: flex;
    flex-direction: row;
}

.bg-blog-card-small .bg-blog-card-img {
    width: 200px;
    min-width: 200px;
    height: auto;
}

.bg-blog-card-small .bg-blog-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bg-blog-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.bg-blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.bg-blog-card:hover .bg-blog-card-img img {
    transform: scale(1.08);
}

.bg-blog-card-body {
    padding: 24px;
}

.bg-blog-card-body h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: 'Playfair Display', serif;
}

.bg-blog-card-date {
    display: inline-block;
    font-size: 12px;
    color: var(--gray-400);
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   FOOTER - Premium
   ============================================ */
/* ---- Footer ---- */
.bg-footer {
    background: #080f1a;
    color: rgba(255,255,255,0.7);
    position: relative;
    overflow: hidden;
}

/* Top gradient line */
.bg-footer-topline {
    height: 3px;
    background: linear-gradient(90deg, #2AACB4, #48C9C9, #2AACB4);
    background-size: 200% 100%;
    animation: footerLineShimmer 4s ease-in-out infinite;
}
@keyframes footerLineShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* CTA Strip */
.bg-footer-cta {
    background: linear-gradient(135deg, rgba(42,172,180,0.12) 0%, rgba(72,201,201,0.08) 100%);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 40px 0;
}
.bg-footer-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.bg-footer-cta-text h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 6px;
}
.bg-footer-cta-text p {
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    margin: 0;
}
.bg-footer-cta-btns {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}
.bg-fcta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}
.bg-fcta-btn--primary {
    background: linear-gradient(135deg, #2AACB4, #48C9C9);
    color: #fff;
    box-shadow: 0 4px 20px rgba(42,172,180,0.3);
}
.bg-fcta-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(42,172,180,0.4);
    color: #fff;
    text-decoration: none;
}
.bg-fcta-btn--wp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37,211,102,0.25);
}
.bg-fcta-btn--wp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37,211,102,0.35);
    color: #fff;
    text-decoration: none;
}

/* Main Footer Area */
.bg-footer-main {
    padding: 70px 0 50px;
    position: relative;
}
.bg-footer-main::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(42,172,180,0.04) 0%, transparent 70%);
    pointer-events: none;
}

.bg-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
}

/* Brand */
.bg-footer-brand .bg-footer-logo {
    height: 64px;
    margin-bottom: 18px;
    background: #2AACB4;
    padding: 6px 12px;
    border-radius: 8px;
}
.bg-footer-brand p {
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    line-height: 1.85;
    margin-bottom: 28px;
}

/* Social Icons */
.bg-footer-social {
    display: flex;
    gap: 10px;
}
.bg-fsocial {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.5);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.bg-fsocial:hover {
    transform: translateY(-4px);
    color: #fff;
}
.bg-fsocial--fb:hover {
    background: #1877F2;
    border-color: #1877F2;
    box-shadow: 0 8px 24px rgba(24,119,242,0.3);
}
.bg-fsocial--ig:hover {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: #dc2743;
    box-shadow: 0 8px 24px rgba(220,39,67,0.3);
}
.bg-fsocial--yt:hover {
    background: #FF0000;
    border-color: #FF0000;
    box-shadow: 0 8px 24px rgba(255,0,0,0.3);
}

/* Footer Columns */
.bg-footer-col h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 28px;
    position: relative;
    padding-bottom: 14px;
    letter-spacing: 0.5px;
}
.bg-footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 3px;
    background: linear-gradient(90deg, #2AACB4, #48C9C9);
    border-radius: 3px;
}

.bg-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.bg-footer-col ul li {
    margin-bottom: 12px;
}
.bg-footer-col ul li a {
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0;
    position: relative;
    padding-left: 0;
}
.bg-footer-col ul li a::before {
    content: '';
    display: inline-block;
    width: 0;
    height: 1px;
    background: #48C9C9;
    margin-right: 0;
    transition: all 0.3s;
}
.bg-footer-col ul li a:hover {
    color: #48C9C9;
    padding-left: 14px;
}
.bg-footer-col ul li a:hover::before {
    width: 8px;
    margin-right: 6px;
}

/* Contact Items */
.bg-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px !important;
}
.bg-fc-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(72,201,201,0.08);
    border: 1px solid rgba(72,201,201,0.15);
    flex-shrink: 0;
}
.bg-fc-icon svg {
    width: 18px;
    height: 18px;
    color: #48C9C9;
}
.bg-fc-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.25);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}
.bg-footer-contact li a,
.bg-footer-contact li span {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color 0.3s;
}
.bg-footer-contact li a:hover {
    color: #48C9C9;
}

/* Legal */
.bg-footer-legal {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 20px 0;
}
.bg-footer-legal p {
    font-size: 11.5px;
    color: rgba(255,255,255,0.2);
    line-height: 1.7;
    text-align: center;
    margin: 0;
}

/* Bottom Bar */
.bg-footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 18px 0;
    margin-bottom: 0;
}
.bg-footer {
    margin-bottom: 0 !important;
}
.bg-footer + * {
    margin-top: 0 !important;
    padding-top: 0 !important;
}
body > footer:last-of-type {
    margin-bottom: 0 !important;
}
html {
    margin: 0 !important;
    padding: 0 !important;
}
body {
    margin: 0 !important;
    padding: 0 !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}
.full-bot-book {
    display: none !important;
    padding: 0 !important;
    margin: 0 !important;
    height: 0 !important;
}
footer.bg-footer {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}
body {
    background: #080f1a !important;
}
.bg-footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255,255,255,0.25);
}
.bg-footer-bottom a {
    color: #48C9C9;
    text-decoration: none;
    transition: color 0.3s;
}
.bg-footer-bottom a:hover {
    color: #2AACB4;
}

/* ---- Footer Responsive ---- */
@media (max-width: 991px) {
    .bg-footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .bg-footer-cta-inner { flex-direction: column; text-align: center; }
    .bg-footer-cta-btns { justify-content: center; }
}
@media (max-width: 767px) {
    .bg-footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .bg-footer-main { padding: 50px 0 40px; }
    .bg-footer-cta { padding: 30px 0; }
    .bg-footer-cta-text h3 { font-size: 20px; }
    .bg-footer-cta-btns { flex-direction: column; width: 100%; }
    .bg-fcta-btn { justify-content: center; width: 100%; }
    .bg-footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
    .bg-footer-col h4::after { left: 0; }
}

/* ============================================
   FLOATING BUTTONS
   ============================================ */
.bg-float-btns {
    position: fixed;
    right: 20px;
    bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.bg-float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    text-decoration: none;
}

.bg-float-btn:hover {
    transform: scale(1.12) translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.bg-float-btn svg {
    width: 24px;
    height: 24px;
    fill: white;
}

/* Telefon butonu - mavi (logo rengi) */
.bg-float-btn-phone {
    background: linear-gradient(135deg, #2AACB4, #1A9BA3);
    box-shadow: 0 6px 20px rgba(42,172,180,0.3);
}

.bg-float-btn-phone:hover {
    box-shadow: 0 12px 30px rgba(42,172,180,0.4);
}

/* WhatsApp butonu - gerçek whatsapp yeşili */
.bg-float-btn-wp {
    background: #25D366;
    box-shadow: 0 6px 20px rgba(37,211,102,0.35);
}

.bg-float-btn-wp:hover {
    background: #22c55e;
    box-shadow: 0 12px 30px rgba(37,211,102,0.45);
}

.bg-float-btn-wp svg {
    width: 26px;
    height: 26px;
}

/* Randevu butonu - turkuaz (logo rengi) */
.bg-float-btn-mail {
    background: linear-gradient(135deg, #48C9C9, #4AA8A2);
    box-shadow: 0 6px 20px rgba(72,201,201,0.3);
}

.bg-float-btn-mail:hover {
    box-shadow: 0 12px 30px rgba(72,201,201,0.4);
}

.bg-float-btn-tooltip {
    position: absolute;
    right: 68px;
    background: var(--primary);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.bg-float-btn-tooltip::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background: var(--primary);
}

.bg-float-btn:hover .bg-float-btn-tooltip {
    opacity: 1;
    transform: translateX(-4px);
}

/* ============================================
   ANIMATIONS - Dramatic
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE - All Breakpoints
   ============================================ */
@media (max-width: 1024px) {
    .bg-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    .bg-service-card { height: 300px; }
    .bg-trust-stats { grid-template-columns: repeat(2, 1fr); border-radius: var(--radius-lg); }
    .bg-trust-stat { border-bottom: 1px solid rgba(42,172,180,0.08); }
    .bg-testimonial-grid { grid-template-columns: 1fr; gap: 24px; }
    .bg-process-grid::before { display: none; }
    .bg-process-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
    .bg-blog-grid { grid-template-columns: 1fr; }
    .bg-blog-card-featured .bg-blog-card-img { min-height: 300px; }
    .bg-blog-card-small { flex-direction: row; }
    .bg-blog-card-small .bg-blog-card-img { width: 180px; min-width: 180px; height: auto; }

    .bg-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
        border-radius: var(--radius-lg);
        overflow: hidden;
    }
    .bg-feature-card:first-child { border-radius: var(--radius-lg) 0 0 0; }
    .bg-feature-card:nth-child(2) { border-radius: 0 var(--radius-lg) 0 0; border-right: none; }
    .bg-feature-card:nth-child(3) { border-radius: 0 0 0 var(--radius-lg); border-top: 1px solid rgba(0,0,0,0.04); }
    .bg-feature-card:last-child { border-radius: 0 0 var(--radius-lg) 0; border-top: 1px solid rgba(0,0,0,0.04); border-right: none; }
    .bg-feature-card { padding: 36px 24px 30px; }

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

    .bg-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .bg-nav-menu {
        display: none !important;
    }

    .bg-hamburger {
        display: flex !important;
    }

    .bg-mobile-menu {
        display: block;
    }

    .bg-mobile-overlay {
        display: block;
    }

    .bg-topbar-left {
        display: none;
    }

    .bg-topbar .container {
        justify-content: flex-end;
    }

    .bg-hero {
        height: 100vh;
        height: 100dvh;
        min-height: 600px;
        max-height: 900px;
    }

    .bg-hero-slide-overlay {
        background: linear-gradient(
            to bottom,
            rgba(20, 36, 32, 0.85) 0%,
            rgba(26, 46, 42, 0.65) 40%,
            rgba(26, 46, 42, 0.88) 100%
        );
    }

    .bg-nav-actions { display: none; }
    .bg-cta-btn { display: none; }
    .bg-logo img { height: 60px; }
    .bg-header.scrolled .bg-logo img { height: 48px; }

    .bg-dental-band {
        padding: 10px 0;
    }

    .bg-dental-item span {
        font-size: 11px;
    }

    .bg-tooth-icon {
        width: 22px;
        height: 22px;
    }

    .bg-services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
    .bg-service-card { height: 270px; }
    .bg-service-card-body h3 { font-size: 15px; }

    .bg-trust-stats { grid-template-columns: 1fr 1fr; border-radius: var(--radius-md); }
    .bg-trust-stat { padding: 28px 16px; }
    .bg-trust-stat-number { font-size: 32px; }

    .bg-process-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .bg-process-num { width: 80px; height: 80px; }
    .bg-process-num-inner { width: 56px; height: 56px; }

    .bg-blog-grid { grid-template-columns: 1fr; gap: 16px; }
    .bg-blog-featured-grid { grid-template-columns: 1fr; }
    .bg-blog-featured-main { min-height: 320px; }
    .bg-blog-featured-side-img { width: 140px; min-width: 140px; }
    .bg-blog-featured-side-title { font-size: 15px; }
    .bg-stats-row { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .bg-stat-number, .bg-stat-suffix, .bg-stat-prefix { font-size: 24px; }

    .bg-features {
        margin-top: -30px;
    }
    .bg-features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }
    .bg-feature-card {
        padding: 28px 18px 24px;
    }
    .bg-feature-card-number {
        font-size: 36px;
        top: 10px;
        right: 14px;
    }
    .bg-feature-card-icon {
        width: 58px;
        height: 58px;
        margin-bottom: 16px;
    }
    .bg-feature-card-icon svg {
        width: 26px;
        height: 26px;
    }
    .bg-feature-card h3 {
        font-size: 15px;
    }
    .bg-feature-card p {
        font-size: 12.5px;
    }

    .bg-about-list {
        grid-template-columns: 1fr;
    }

    .bg-about-floating-card {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 20px;
        animation: none;
    }

    .bg-footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .bg-footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .bg-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .bg-section {
        padding: 70px 0;
    }

    .bg-section-header {
        margin-bottom: 48px;
    }

    .bg-testimonial-card {
        padding: 28px;
    }
}

@media (max-width: 480px) {
    .bg-services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .bg-service-card { height: 200px; }
    .bg-service-card-body h3 { font-size: 13px; }
    .bg-service-card-body p { font-size: 11px; display: none; }
    .bg-trust-stats { grid-template-columns: 1fr 1fr; }
    .bg-process-grid { grid-template-columns: 1fr; gap: 20px; }
    .bg-blog-card-small { flex-direction: column; }
    .bg-blog-card-small .bg-blog-card-img { width: 100%; height: 180px; }

    .bg-features-grid {
        grid-template-columns: 1fr;
        border-radius: var(--radius-md);
    }
    .bg-feature-card,
    .bg-feature-card:first-child,
    .bg-feature-card:nth-child(2),
    .bg-feature-card:nth-child(3),
    .bg-feature-card:last-child {
        border-radius: 0;
        border-right: none;
        border-top: 1px solid rgba(0,0,0,0.04);
    }
    .bg-feature-card:first-child { border-top: none; border-radius: var(--radius-md) var(--radius-md) 0 0; }
    .bg-feature-card:last-child { border-radius: 0 0 var(--radius-md) var(--radius-md); }

    .bg-hero-slide-content {
        padding-top: 150px;
    }
    .bg-hero-title {
        font-size: 24px !important;
    }
    .bg-hero-desc {
        font-size: 13px;
        margin-bottom: 16px;
    }
    .bg-hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    .bg-hero-buttons .bg-btn-primary,
    .bg-hero-buttons .bg-btn-outline {
        width: 100%;
        max-width: 260px;
        justify-content: center;
        padding: 12px 20px;
        font-size: 13px;
    }
    .bg-promo-card {
        max-width: 100%;
        padding: 18px 16px 14px;
        border-radius: 18px;
    }
    .bg-promo-title-row h3 {
        font-size: 15px !important;
    }
    .bg-promo-title-row h3 strong {
        font-size: 20px !important;
    }
    .bg-promo-item {
        padding: 7px 10px;
    }
    .bg-promo-item span:last-child {
        font-size: 11px;
    }
    .bg-promo-btn {
        padding: 10px 14px;
        font-size: 12px;
    }
    .bg-slider-arrow {
        display: none;
    }
    .bg-slider-dots {
        bottom: 48px;
        gap: 8px;
    }

    .bg-float-btns {
        right: 12px;
        bottom: 16px;
        gap: 10px;
    }

    .bg-float-btn {
        width: 50px;
        height: 50px;
    }

    .bg-float-btn svg {
        width: 22px;
        height: 22px;
    }

    .bg-float-btn-wp svg {
        width: 24px;
        height: 24px;
    }

    .bg-float-btn-tooltip {
        display: none;
    }

    .bg-blog-featured-main { min-height: 260px; }
    .bg-blog-featured-main-body { padding: 24px; }
    .bg-blog-featured-main-title { font-size: 18px; }
    .bg-blog-featured-side-card { flex-direction: column; }
    .bg-blog-featured-side-img { width: 100%; min-width: 100%; height: 180px; }

    .bg-section {
        padding: 56px 0;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-secondary { color: var(--secondary); }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }

/* ============================================
   WOW SERVICES - DARK PREMIUM SECTION
   ============================================ */
.bg-wow-services {
    position: relative;
    padding: 130px 0;
    background: linear-gradient(170deg, #f0f8f8 0%, #ffffff 30%, #f6f9fa 60%, #f0f8f8 100%);
    overflow: hidden;
}

.bg-wow-services-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 0%, rgba(42,172,180,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(72,201,201,0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(111,212,181,0.04) 0%, transparent 40%);
    animation: wowBgPulse 12s ease-in-out infinite alternate;
}

@keyframes wowBgPulse {
    0% { opacity: 0.6; }
    100% { opacity: 1; }
}

.bg-wow-services .bg-section-title {
    color: var(--primary);
}

.bg-wow-services .bg-section-title span {
    background: linear-gradient(135deg, #2AACB4, #1A9BA3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-wow-services .bg-section-desc {
    color: var(--gray-600);
}

.bg-wow-services .bg-section-badge {
    background: rgba(42,172,180,0.08);
    border-color: rgba(42,172,180,0.2);
    color: #1A9BA3;
}

.bg-wow-services .bg-section-badge::before,
.bg-wow-services .bg-section-badge::after {
    background: linear-gradient(90deg, #2AACB4, #1A9BA3);
}

.bg-wow-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.bg-wow-service-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 440px;
    cursor: pointer;
    text-decoration: none;
    display: block;
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(42,172,180,0.12);
    box-shadow: 0 8px 30px rgba(13,115,119,0.08);
}

.bg-wow-service-card:hover {
    transform: translateY(-14px) scale(1.02);
    border-color: rgba(72,201,201,0.4);
    box-shadow:
        0 25px 60px rgba(13,115,119,0.18),
        0 0 0 1px rgba(72,201,201,0.15),
        inset 0 1px 0 rgba(255,255,255,0.1);
}

.bg-wow-service-img {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.bg-wow-service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
    filter: brightness(0.9) saturate(1.1);
}

.bg-wow-service-card:hover .bg-wow-service-img img {
    transform: scale(1.12);
    filter: brightness(0.6) saturate(1.3);
}

/* Overlay with animated gradient */
.bg-wow-service-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg,
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,0) 30%,
        rgba(13,27,42,0.5) 55%,
        rgba(13,27,42,0.92) 100%);
    transition: all 0.6s ease;
}

.bg-wow-service-card:hover .bg-wow-service-overlay {
    background: linear-gradient(180deg,
        rgba(42,172,180,0.08) 0%,
        rgba(13,27,42,0.2) 30%,
        rgba(13,27,42,0.7) 55%,
        rgba(13,27,42,0.97) 100%);
}

/* Shimmer sweep on hover */
.bg-wow-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
    z-index: 5;
    transition: none;
    pointer-events: none;
}
.bg-wow-service-card:hover::before {
    animation: cardShimmer 0.8s ease forwards;
}
@keyframes cardShimmer {
    0% { left: -60%; }
    100% { left: 120%; }
}

/* Glowing border ring on hover */
.bg-wow-service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, #2AACB4, #48C9C9, #2AACB4);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    z-index: 6;
    transition: opacity 0.5s ease;
    pointer-events: none;
}
.bg-wow-service-card:hover::after {
    opacity: 1;
}

/* Number badge */
.bg-wow-service-num {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 7;
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.12);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.bg-wow-service-card:hover .bg-wow-service-num {
    background: linear-gradient(135deg, #2AACB4, #48C9C9);
    color: #fff;
    border-color: transparent;
    transform: rotate(6deg) scale(1.1);
    box-shadow: 0 8px 24px rgba(42,172,180,0.4);
}

/* Content area */
.bg-wow-service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 32px;
    transform: translateY(24px);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.bg-wow-service-card:hover .bg-wow-service-content {
    transform: translateY(0);
}

.bg-wow-service-content h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 0 2px 16px rgba(0,0,0,0.5);
    letter-spacing: 0.3px;
}

.bg-wow-service-line {
    width: 36px;
    height: 3px;
    background: linear-gradient(90deg, #48C9C9, #2AACB4);
    border-radius: 3px;
    margin-bottom: 14px;
    transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.bg-wow-service-card:hover .bg-wow-service-line {
    width: 80px;
    background: linear-gradient(90deg, #48C9C9, #2AACB4, #48C9C9);
    background-size: 200% 100%;
    animation: lineGlow 1.5s ease-in-out infinite;
}
@keyframes lineGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.bg-wow-service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #48C9C9;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease 0.15s;
    letter-spacing: 0.5px;
    padding: 6px 14px;
    background: rgba(72,201,201,0.1);
    border-radius: 20px;
    border: 1px solid rgba(72,201,201,0.15);
}

.bg-wow-service-card:hover .bg-wow-service-link {
    opacity: 1;
    transform: translateY(0);
}

.bg-wow-service-link svg {
    transition: transform 0.3s ease;
}

.bg-wow-service-card:hover .bg-wow-service-link svg {
    transform: translateX(5px);
}

/* Bottom glow */
.bg-wow-service-glow {
    position: absolute;
    bottom: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 50%;
    background: radial-gradient(ellipse, rgba(72,201,201,0.2), transparent 70%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.bg-wow-service-card:hover .bg-wow-service-glow {
    opacity: 1;
}

.bg-wow-services-more {
    text-align: center;
    margin-top: 60px;
}

/* Glow button */
.bg-btn-glow {
    position: relative;
}

.bg-btn-glow::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 60px;
    background: linear-gradient(135deg, rgba(42,172,180,0.4), rgba(72,201,201,0.3));
    z-index: -1;
    filter: blur(12px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bg-btn-glow:hover::after {
    opacity: 1;
}

/* ============================================
   PREMIUM FEATURE CARDS (Slider Altı 4'lü)
   ============================================ */
.bg-feat {
    position: relative;
    z-index: 5;
    margin-top: 0;
    padding: 60px 0 60px;
}

.bg-feat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.bg-feat-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    display: block;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    background: transparent;
}

.bg-feat-card:hover {
    transform: translateY(-12px);
}

/* Animated gradient border */
.bg-feat-card-border {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1.5px;
    background: linear-gradient(160deg, rgba(42,172,180,0.3), rgba(255,255,255,0.08), rgba(72,201,201,0.25));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 1;
    transition: all 0.5s ease;
}

.bg-feat-card:hover .bg-feat-card-border {
    background: linear-gradient(160deg, rgba(42,172,180,0.6), rgba(72,201,201,0.2), rgba(42,172,180,0.4));
}

/* Glow behind card on hover */
.bg-feat-card-glow {
    position: absolute;
    bottom: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 60%;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(42,172,180,0.2), transparent 70%);
    z-index: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    filter: blur(20px);
}

.bg-feat-card:hover .bg-feat-card-glow {
    opacity: 1;
}

/* Inner content */
.bg-feat-card-inner {
    position: relative;
    z-index: 2;
    background: linear-gradient(170deg, rgba(20,36,32,0.95), rgba(14,26,51,0.98));
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px 28px 36px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 280px;
}

/* Number watermark */
.bg-feat-num {
    position: absolute;
    top: 14px;
    right: 18px;
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 800;
    color: rgba(255,255,255,0.03);
    line-height: 1;
    transition: all 0.5s ease;
    pointer-events: none;
}

.bg-feat-card:hover .bg-feat-num {
    color: rgba(42,172,180,0.08);
    transform: scale(1.1);
}

/* Icon */
.bg-feat-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(42,172,180,0.08), rgba(72,201,201,0.05));
    border: 1.5px solid rgba(42,172,180,0.12);
    color: #2AACB4;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.bg-feat-icon::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px solid rgba(42,172,180,0.06);
    transition: all 0.5s ease;
}

.bg-feat-card:hover .bg-feat-icon {
    background: linear-gradient(135deg, #2AACB4, #1A9BA3);
    border-color: transparent;
    color: #fff;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 36px rgba(42,172,180,0.35);
}

.bg-feat-card:hover .bg-feat-icon::after {
    inset: -10px;
    border-color: rgba(42,172,180,0.15);
}

/* Title */
.bg-feat-card-inner h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
    transition: color 0.4s ease;
}

.bg-feat-card:hover .bg-feat-card-inner h3 {
    color: #48C9C9;
}

/* Description */
.bg-feat-card-inner p {
    font-size: 13.5px;
    color: rgba(255,255,255,0.4);
    line-height: 1.7;
    margin-bottom: 0;
    flex-grow: 1;
    transition: color 0.4s ease;
}

.bg-feat-card:hover .bg-feat-card-inner p {
    color: rgba(255,255,255,0.6);
}

/* Link */
.bg-feat-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 13px;
    font-weight: 700;
    color: #2AACB4;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.4s ease 0.1s;
}

.bg-feat-card:hover .bg-feat-link {
    opacity: 1;
    transform: translateY(0);
}

.bg-feat-link svg {
    transition: transform 0.3s ease;
}

.bg-feat-card:hover .bg-feat-link svg {
    transform: translateX(5px);
}

/* Feature Cards Responsive */
@media (max-width: 1024px) {
    .bg-feat { margin-top: -50px; }
    .bg-feat-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .bg-feat-card-inner { padding: 32px 22px 28px; min-height: 240px; }
    .bg-feat-icon { width: 64px; height: 64px; margin-bottom: 18px; }
    .bg-feat-icon svg { width: 28px !important; height: 28px !important; }
}

@media (max-width: 768px) {
    .bg-feat { margin-top: -36px; }
    .bg-feat-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .bg-feat-card-inner { padding: 28px 16px 24px; min-height: 220px; }
    .bg-feat-card-inner h3 { font-size: 15px; }
    .bg-feat-card-inner p { font-size: 12px; }
    .bg-feat-icon { width: 56px; height: 56px; margin-bottom: 14px; }
    .bg-feat-icon svg { width: 24px !important; height: 24px !important; }
    .bg-feat-num { font-size: 40px; }
}

@media (max-width: 480px) {
    .bg-feat { margin-top: -28px; }
    .bg-feat-grid { grid-template-columns: 1fr; gap: 12px; }
    .bg-feat-card-inner { min-height: auto; padding: 24px 20px; flex-direction: row; gap: 16px; text-align: left; }
    .bg-feat-icon { width: 50px; height: 50px; min-width: 50px; margin-bottom: 0; }
    .bg-feat-icon svg { width: 22px !important; height: 22px !important; }
    .bg-feat-icon::after { display: none; }
    .bg-feat-num { display: none; }
    .bg-feat-card-inner p { display: none; }
    .bg-feat-link { display: none; }
}

/* WOW Services Responsive */
@media (max-width: 1024px) {
    .bg-wow-services-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .bg-wow-service-card { height: 360px; }
}

@media (max-width: 768px) {
    .bg-wow-services { padding: 80px 0; }
    .bg-wow-services-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .bg-wow-service-card { height: 300px; }
    .bg-wow-service-content { padding: 24px; }
    .bg-wow-service-content h3 { font-size: 16px; }
}

@media (max-width: 480px) {
    .bg-wow-services-grid { grid-template-columns: 1fr 1fr !important; gap: 10px; }
    .bg-wow-service-card { height: 200px; }
    .bg-wow-service-content h3 { font-size: 13px; }
    .bg-wow-service-content { padding: 14px; }
    .bg-wow-service-num { font-size: 28px; top: 8px; left: 12px; }
    .bg-wow-service-link { font-size: 12px; }
}

/* ============================================
   WOW TESTIMONIALS UPGRADE - Premium Redesign
   ============================================ */
.bg-trust-section {
    background: linear-gradient(170deg, #0a3d3f 0%, #0D7377 40%, #0a5c5f 70%, #0a3d3f 100%) !important;
    position: relative;
    overflow: hidden;
}

.bg-trust-section .bg-section-title {
    color: #fff !important;
}

.bg-trust-section .bg-section-title span {
    background: linear-gradient(135deg, #48C9C9, #5ED5D5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-trust-section .bg-section-desc {
    color: rgba(255,255,255,0.5) !important;
}

.bg-trust-section .bg-section-badge {
    background: rgba(72,201,201,0.1) !important;
    border-color: rgba(72,201,201,0.2) !important;
    color: #48C9C9 !important;
}

/* Floating decorative elements */
.bg-trust-deco {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.bg-trust-deco--1 {
    width: 500px; height: 500px;
    top: -200px; right: -100px;
    background: radial-gradient(circle, rgba(42,172,180,0.08) 0%, transparent 70%);
    animation: meshFloat 18s ease-in-out infinite;
}
.bg-trust-deco--2 {
    width: 400px; height: 400px;
    bottom: -150px; left: -100px;
    background: radial-gradient(circle, rgba(72,201,201,0.06) 0%, transparent 70%);
    animation: meshFloat 14s ease-in-out infinite reverse;
}
.bg-trust-deco--3 {
    width: 200px; height: 200px;
    top: 40%; left: 50%;
    background: radial-gradient(circle, rgba(72,201,201,0.04) 0%, transparent 70%);
    animation: meshFloat 10s ease-in-out infinite 2s;
}

/* ---- Rating Showcase (Google-style) ---- */
.bg-rating-showcase {
    display: flex;
    align-items: center;
    gap: 50px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 40px 48px;
    margin-bottom: 50px;
    backdrop-filter: blur(10px);
}
.bg-rating-left {
    text-align: center;
    min-width: 160px;
    flex-shrink: 0;
}
.bg-rating-big {
    font-family: 'Playfair Display', 'Oswald', serif;
    font-size: 72px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}
.bg-rating-stars-row {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 10px;
}
.bg-rating-stars-row svg {
    width: 22px;
    height: 22px;
    filter: drop-shadow(0 0 6px rgba(244,197,66,0.5));
}
.bg-rating-count {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    font-weight: 500;
}
.bg-rating-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.bg-rating-tagline {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
}
.bg-rating-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.bg-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(72,201,201,0.1);
    border: 1px solid rgba(72,201,201,0.2);
    color: #48C9C9;
    font-size: 13.5px;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 12px;
    transition: all 0.3s;
}
.bg-rating-badge:hover {
    background: rgba(72,201,201,0.15);
    transform: translateY(-2px);
}

/* ---- Testimonial Grid - Bento Layout ---- */
.bg-testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.bg-testimonial-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 36px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
    box-shadow: none;
}

.bg-testimonial-card::before,
.bg-testimonial-card::after {
    content: none;
}

.bg-testimonial-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(72,201,201,0.25);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

/* Featured card spans full width of first row */
.bg-testimonial-card--featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto 1fr;
    gap: 0 30px;
    padding: 44px 48px;
    background: linear-gradient(135deg, rgba(42,172,180,0.08) 0%, rgba(72,201,201,0.06) 100%);
    border-color: rgba(72,201,201,0.15);
}

.bg-testimonial-card--featured .bg-tc-quote-icon {
    grid-row: 1 / 2;
    grid-column: 1 / 2;
}
.bg-testimonial-card--featured .bg-testimonial-stars {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
    align-self: center;
}
.bg-testimonial-card--featured .bg-testimonial-text {
    grid-row: 2 / 3;
    grid-column: 1 / -1;
    font-size: 18px;
    line-height: 1.9;
    margin: 20px 0 28px;
}
.bg-testimonial-card--featured .bg-testimonial-author {
    grid-row: 3 / 4;
    grid-column: 1 / -1;
}

/* Quote icon */
.bg-tc-quote-icon {
    color: rgba(72,201,201,0.3);
    margin-bottom: 16px;
    transition: color 0.4s;
}
.bg-testimonial-card:hover .bg-tc-quote-icon {
    color: rgba(72,201,201,0.5);
}

.bg-testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 20px;
}
.bg-testimonial-stars svg {
    width: 17px;
    height: 17px;
    filter: drop-shadow(0 0 4px rgba(244,197,66,0.3));
}

.bg-testimonial-text {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    line-height: 1.85;
    margin-bottom: 28px;
    font-style: italic;
}

.bg-testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.bg-testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2AACB4, #48C9C9);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(42,172,180,0.3);
    flex-shrink: 0;
}
.bg-testimonial-author strong {
    display: block;
    font-size: 15px;
    color: #fff;
}
.bg-testimonial-author span {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
}

/* Verified badge */
.bg-tc-verified {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-left: auto;
    font-size: 11.5px;
    font-weight: 600;
    color: #48C9C9;
    background: rgba(72,201,201,0.1);
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid rgba(72,201,201,0.15);
}

/* ---- Google Review CTA ---- */
.bg-review-cta {
    margin-top: 48px;
}
.bg-review-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 24px 32px;
    backdrop-filter: blur(10px);
}
.bg-review-cta-left {
    display: flex;
    align-items: center;
    gap: 16px;
}
.bg-review-cta-left strong {
    display: block;
    color: #fff;
    font-size: 15px;
}
.bg-review-cta-left span {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}
.bg-review-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #2AACB4, #48C9C9);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}
.bg-review-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(42,172,180,0.35);
    color: #fff;
    text-decoration: none;
}

/* ---- Trust Stats Override for Dark Theme ---- */
.bg-trust-section .bg-trust-stats {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.08);
    margin-bottom: 56px;
}
.bg-trust-section .bg-trust-stat {
    border-right-color: rgba(255,255,255,0.06);
}
.bg-trust-section .bg-trust-stat:hover {
    background: rgba(255,255,255,0.04);
}
.bg-trust-section .bg-trust-stat-icon {
    background: rgba(72,201,201,0.1);
    border-color: rgba(72,201,201,0.2);
    color: #48C9C9;
}
.bg-trust-section .bg-trust-stat:hover .bg-trust-stat-icon {
    background: linear-gradient(135deg, #2AACB4, #48C9C9);
    border-color: #48C9C9;
    color: #fff;
}
.bg-trust-section .bg-trust-stat-number {
    color: #fff;
}
.bg-trust-section .bg-trust-stat-label {
    color: rgba(255,255,255,0.45);
}
.bg-trust-section .bg-trust-stat::after {
    background: linear-gradient(90deg, #48C9C9, #2AACB4);
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .bg-rating-showcase { flex-direction: column; gap: 30px; padding: 32px 28px; }
    .bg-testimonial-grid { grid-template-columns: 1fr; }
    .bg-testimonial-card--featured { grid-template-columns: 1fr; padding: 32px; }
    .bg-testimonial-card--featured .bg-tc-quote-icon { grid-column: 1; }
    .bg-testimonial-card--featured .bg-testimonial-stars { grid-row: 2; grid-column: 1; }
    .bg-testimonial-card--featured .bg-testimonial-text { grid-row: 3; font-size: 16px; }
    .bg-testimonial-card--featured .bg-testimonial-author { grid-row: 4; }
    .bg-review-cta-inner { flex-direction: column; gap: 20px; text-align: center; }
    .bg-review-cta-left { flex-direction: column; }
}
@media (max-width: 767px) {
    .bg-trust-section .bg-trust-stats { grid-template-columns: repeat(2, 1fr); }
    .bg-trust-section .bg-trust-stat { border-bottom: 1px solid rgba(255,255,255,0.06); }
    .bg-trust-section .bg-trust-stat:nth-child(2) { border-right: none; }
    .bg-testimonial-card { padding: 28px; }
    .bg-tc-verified { display: none; }
    .bg-rating-big { font-size: 56px; }
}
@media (max-width: 480px) {
    .bg-rating-showcase { padding: 24px 20px; gap: 24px; }
    .bg-rating-big { font-size: 48px; }
    .bg-testimonial-card { padding: 24px; }
    .bg-testimonial-text { font-size: 14px; }
    .bg-review-cta-inner { padding: 20px; }
}

/* ============================================
   WOW CTA UPGRADE
   ============================================ */
.bg-cta-banner {
    background: linear-gradient(170deg, #1a2a2e 0%, #1A9BA3 30%, #1A9BA3 60%, #1a2a2e 100%) !important;
}

.bg-cta-inner h2 {
    background: linear-gradient(135deg, #fff, rgba(255,255,255,0.9));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   CATEGORY LISTING PAGES (cl- prefix)
   Shared styles for implant, kanal-tedavisi,
   lamina-kaplama, ortodonti, gulus-tasarimi,
   20-yas, zirkonyum, hizmet-bolgeler
   ============================================ */

/* Hero Section */
.cl-hero {
    position: relative;
    padding: 100px 0 60px;
    background: linear-gradient(170deg, #083538 0%, #0a5c5f 50%, #1a2a2e 100%);
    overflow: hidden;
    text-align: center;
}
.cl-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(42,172,180,0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(72,201,201,0.1) 0%, transparent 50%);
    pointer-events: none;
}
.cl-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(42,172,180,0.4), rgba(72,201,201,0.4), transparent);
}
.cl-hero-inner {
    position: relative;
    z-index: 2;
}
.cl-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(42,172,180,0.15);
    border: 1px solid rgba(42,172,180,0.25);
    color: #7eb3ff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}
.cl-hero-badge svg {
    width: 14px;
    height: 14px;
}
.cl-hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.cl-hero h1 span {
    background: linear-gradient(135deg, #48C9C9, #7eb3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.cl-hero-subtitle {
    color: rgba(255,255,255,0.5);
    font-size: 16px;
    margin-bottom: 24px;
}
.cl-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 10px 24px;
    margin: 0;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50px;
    backdrop-filter: blur(10px);
}
.cl-breadcrumb li {
    font-size: 14px;
    color: rgba(255,255,255,0.4);
}
.cl-breadcrumb li a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.3s;
}
.cl-breadcrumb li a:hover {
    color: #48C9C9;
}
.cl-breadcrumb li.cl-bc-sep {
    font-size: 10px;
    color: rgba(255,255,255,0.2);
}
.cl-breadcrumb li.cl-bc-active {
    color: #48C9C9;
    font-weight: 600;
}

/* Main Content */
.cl-section {
    background: linear-gradient(180deg, #f0f4f8 0%, #f8fafb 100%);
    padding: 60px 0 90px;
    min-height: 60vh;
}

/* Sidebar */
.cl-sidebar {
    position: sticky;
    top: 100px;
}
.cl-sidebar-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(42,172,180,0.08);
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
    overflow: hidden;
}
.cl-sidebar-head {
    padding: 22px 24px;
    background: linear-gradient(135deg, #2AACB4, #1A9BA3);
    position: relative;
}
.cl-sidebar-head::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 24px;
    right: 24px;
    height: 1px;
    background: rgba(255,255,255,0.15);
}
.cl-sidebar-head h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.cl-sidebar-head h4 svg {
    width: 18px;
    height: 18px;
    color: #48C9C9;
}
.cl-sidebar-list {
    list-style: none;
    padding: 8px;
    margin: 0;
}
.cl-sidebar-list li {
    margin-bottom: 2px;
}
.cl-sidebar-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: #4a5a6a;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.25,0.8,0.25,1);
    border-left: 3px solid transparent;
}
.cl-sidebar-list li a::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(42,172,180,0.25);
    flex-shrink: 0;
    transition: all 0.3s;
}
.cl-sidebar-list li a:hover {
    color: #2AACB4;
    background: rgba(42,172,180,0.06);
    border-left-color: #2AACB4;
    transform: translateX(4px);
}
.cl-sidebar-list li a:hover::before {
    background: #2AACB4;
    box-shadow: 0 0 8px rgba(42,172,180,0.4);
}
.cl-sidebar-list li.active a {
    color: #2AACB4;
    background: rgba(42,172,180,0.08);
    border-left-color: #48C9C9;
    font-weight: 600;
}
.cl-sidebar-list li.active a::before {
    background: #48C9C9;
}

/* Info Card in Sidebar */
.cl-sidebar-info {
    margin-top: 16px;
    background: linear-gradient(135deg, #f0f7ff, #f0faf9);
    border-radius: 20px;
    border: 1px solid rgba(42,172,180,0.08);
    padding: 24px;
    text-align: center;
}
.cl-sidebar-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    background: linear-gradient(135deg, #2AACB4, #48C9C9);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.cl-sidebar-info-icon svg {
    width: 24px;
    height: 24px;
    color: #fff;
}
.cl-sidebar-info h5 {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    color: #1a2a2e;
    margin: 0 0 8px;
}
.cl-sidebar-info p {
    font-size: 13px;
    color: #6a7a8a;
    margin: 0 0 16px;
    line-height: 1.5;
}
.cl-sidebar-info a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #2AACB4;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}
.cl-sidebar-info a:hover {
    color: #48C9C9;
}

/* Card Grid */
.cl-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

/* Card */
.cl-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(42,172,180,0.08);
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
    transition: all 0.45s cubic-bezier(0.25,0.8,0.25,1);
    position: relative;
}
.cl-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2AACB4, #48C9C9);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 3;
}
.cl-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(42,172,180,0.12), 0 8px 24px rgba(0,0,0,0.08);
    border-color: rgba(42,172,180,0.15);
}
.cl-card:hover::before {
    opacity: 1;
}

/* Card Image */
.cl-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.cl-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25,0.8,0.25,1);
}
.cl-card:hover .cl-card-img img {
    transform: scale(1.08);
}
.cl-card-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 100%);
    pointer-events: none;
}

/* Shimmer sweep on hover */
.cl-card-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    z-index: 2;
    transition: none;
}
.cl-card:hover .cl-card-img::before {
    animation: clShimmer 0.8s ease forwards;
}
@keyframes clShimmer {
    0% { left: -100%; }
    100% { left: 150%; }
}

/* Card Body */
.cl-card-body {
    padding: 20px 22px 24px;
    position: relative;
}
.cl-card-body h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1a2a2e;
    margin: 0 0 14px;
    line-height: 1.35;
    letter-spacing: 0.3px;
}
.cl-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #2AACB4 0%, #1A9BA3 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 10px;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: all 0.35s cubic-bezier(0.25,0.8,0.25,1);
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 2;
}
.cl-card-btn:hover {
    background: linear-gradient(135deg, #48C9C9 0%, #2AACB4 100%);
    box-shadow: 0 6px 20px rgba(42,172,180,0.3);
    transform: translateX(3px);
    color: #fff;
    text-decoration: none;
}
.cl-card-btn svg {
    width: 15px;
    height: 15px;
    transition: transform 0.3s;
}
.cl-card-btn:hover svg {
    transform: translateX(3px);
}

/* Location badge (for hizmet-bolgeler) */
.cl-location-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.cl-location-badge svg {
    width: 18px;
    height: 18px;
    color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
    .cl-sidebar {
        position: static;
        margin-bottom: 30px;
    }
    .cl-hero h1 {
        font-size: 36px;
    }
}
@media (max-width: 767px) {
    .cl-hero {
        padding: 80px 0 40px;
    }
    .cl-hero h1 {
        font-size: 28px;
    }
    .cl-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .cl-section {
        padding: 40px 0 60px;
    }
    .cl-breadcrumb {
        padding: 8px 16px;
    }
}
