@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;700&display=swap');

:root {
    --primary: #e84393;
    --primary-light: #fd79a8;
    --primary-dark: #d63384;
    --secondary: #6c5ce7;
    --secondary-light: #a29bfe;
    --accent: #00b894;
    --dark: #2d3436;
    --gray: #636e72;
    --light: #f8f9fe;
    --light-pink: #fff5f9;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gradient-reverse: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    --gradient-soft: linear-gradient(135deg, #fff0f6 0%, #f3e8ff 50%, #e8f4fd 100%);
    --shadow: 0 10px 40px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
    --shadow-sm: 0 4px 15px rgba(0,0,0,0.06);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.7;
}

/* Subtle moving icon background */
.bg-medical-icons {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.bg-medical-icon {
    position: absolute;
    font-size: clamp(28px, 3.2vw, 56px);
    color: rgba(34, 58, 77, 0.09);
    opacity: 0.28;
    filter: blur(0.1px);
    animation: floatMedical 26s ease-in-out infinite;
    transform: translate3d(0, 0, 0);
}
.bg-medical-icon:nth-child(1) { top: 15%; left: 9%; animation-duration: 28s; }
.bg-medical-icon:nth-child(2) { top: 24%; right: 11%; animation-duration: 32s; animation-delay: 1.7s; }
.bg-medical-icon:nth-child(3) { top: 45%; left: 7%; animation-duration: 30s; animation-delay: 0.8s; }
.bg-medical-icon:nth-child(4) { top: 58%; right: 14%; animation-duration: 34s; animation-delay: 2.3s; }
.bg-medical-icon:nth-child(5) { top: 78%; left: 21%; animation-duration: 31s; animation-delay: 1.4s; }
.bg-medical-icon:nth-child(6) { top: 84%; right: 30%; animation-duration: 36s; animation-delay: 2.7s; }

@keyframes floatMedical {
    0%, 100% { transform: translateY(0) translateX(0) rotate(0deg); }
    25% { transform: translateY(-12px) translateX(8px) rotate(1.5deg); }
    50% { transform: translateY(10px) translateX(-6px) rotate(-1.5deg); }
    75% { transform: translateY(-8px) translateX(5px) rotate(1deg); }
}

a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
img { max-width: 100%; height: auto; }

.section-padding { padding: 100px 0; }
.bg-light-custom { background: var(--light); }

/* ===== DECORATIVE ELEMENTS ===== */
.dots-pattern {
    position: absolute;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(circle, var(--primary) 2px, transparent 2px);
    background-size: 18px 18px;
    opacity: 0.15;
    z-index: 0;
}
.circle-deco {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}
.wave-divider {
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}
.wave-divider svg { display: block; width: calc(100% + 1.3px); height: 60px; }
.wave-divider.top { top: -1px; }
.wave-divider.bottom { bottom: -1px; }
.wave-divider.bottom svg { transform: rotate(180deg); }

/* ===== BUTTONS ===== */
.btn-primary-custom {
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 13px 34px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 25px rgba(232,67,147,0.3);
}
.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(232,67,147,0.45);
    color: white;
}
.btn-outline-custom {
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    padding: 11px 32px;
    font-weight: 600;
    background: transparent;
}
.btn-outline-custom:hover {
    background: var(--gradient);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
}

/* ===== SECTION HEADERS ===== */
.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(232,67,147,0.1), rgba(108,92,231,0.1));
    color: var(--primary);
    padding: 6px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}
.text-white-badge { background: rgba(255,255,255,0.15); color: white; }
.section-title {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.25;
}
.section-title-script {
    font-family: 'Caveat', cursive;
    color: var(--primary);
    font-size: 3rem;
    font-weight: 700;
}
.section-desc {
    color: var(--gray);
    font-size: 1.05rem;
    max-width: 600px;
}
.section-header { margin-bottom: 60px; }
.section-header .section-desc { margin-left: auto; margin-right: auto; }

/* ===== TOP BAR - DARK NAVY ===== */
.top-bar {
    background: linear-gradient(135deg, #1a1a3e 0%, #16213e 100%);
    padding: 8px 0;
    font-size: 13px;
}
.top-bar-info span { color: rgba(255,255,255,0.8); margin-right: 25px; }
.top-bar-info i { color: var(--primary); margin-right: 6px; }
.top-bar-social a { color: rgba(255,255,255,0.6); margin-left: 15px; font-size: 14px; transition: all 0.3s; }
.top-bar-social a:hover { color: var(--primary); }

/* ===== NAVBAR - WHITE ===== */
#mainNavbar {
    background: white;
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    z-index: 1050;
    transition: all 0.3s;
}
#mainNavbar.scrolled {
    padding: 8px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}
.logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.logo-text i { -webkit-text-fill-color: var(--primary); margin-right: 8px; }
.logo-img { height: 48px; }
#mainNavbar .nav-link {
    font-weight: 500;
    color: var(--dark) !important;
    padding: 8px 15px !important;
    position: relative;
    font-size: 0.92rem;
    transition: all 0.3s;
}
#mainNavbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    width: 0; height: 3px;
    background: var(--gradient);
    border-radius: 10px;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}
#mainNavbar .nav-link:hover::after,
#mainNavbar .nav-link.active::after { width: 60%; }
#mainNavbar .nav-link:hover { color: var(--primary) !important; }
.nav-phone-white {
    color: var(--dark);
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
}
.nav-phone-white i { color: var(--primary); margin-right: 5px; }
.nav-phone-white:hover { color: var(--primary); }

/* Language Switcher */
.lang-switcher { position: relative; z-index: 1050; }
.lang-current {
    display: flex; align-items: center; gap: 6px;
    background: var(--light); border: 1px solid rgba(0,0,0,0.08);
    border-radius: 8px; padding: 6px 12px;
    cursor: pointer; font-size: 0.85rem; font-weight: 500;
    color: var(--dark); transition: all 0.2s; white-space: nowrap;
}
.lang-current:hover { border-color: var(--primary); }
.lang-flag {
    display: inline-flex; align-items: center; justify-content: center;
    width: 24px; height: 18px; border-radius: 3px;
    background: var(--gradient); color: white;
    font-size: 0.6rem; font-weight: 700; letter-spacing: 0.5px; flex-shrink: 0;
}
.lang-arrow { font-size: 0.6rem; color: #999; transition: transform 0.2s; }
.lang-switcher.open .lang-arrow { transform: rotate(180deg); }
.lang-dropdown {
    position: absolute; top: calc(100% + 6px); right: 0;
    background: white; border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12); border: 1px solid rgba(0,0,0,0.06);
    min-width: 180px; padding: 6px 0;
    display: none; animation: langFadeIn 0.15s ease;
}
.lang-switcher.open .lang-dropdown { display: block; }
@keyframes langFadeIn { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: translateY(0); } }
.lang-option {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 16px; color: var(--dark);
    font-size: 0.88rem; text-decoration: none; transition: background 0.15s;
}
.lang-option:hover { background: var(--light); color: var(--dark); }
.lang-option .lang-flag { background: #546e7a; }
.lang-option[data-lang="tr"] .lang-flag { background: #e53935; }
.lang-option[data-lang="en"] .lang-flag { background: #1565c0; }
.lang-option[data-lang="de"] .lang-flag { background: #212121; }
.lang-option[data-lang="fr"] .lang-flag { background: #1565c0; }
.lang-option[data-lang="ar"] .lang-flag { background: #2e7d32; }
.lang-option[data-lang="ru"] .lang-flag { background: #1565c0; }

/* Hide Google Translate bar */
.skiptranslate { display: none !important; }
body { top: 0 !important; }
.goog-te-banner-frame { display: none !important; }

/* ===== HERO SECTION ===== */
.hero-section {
    background: var(--gradient-soft);
    position: relative;
    overflow: hidden;
    min-height: 69vh;
    display: flex;
    align-items: center;
    padding-bottom: 90px;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: -200px; right: -150px;
    width: 700px; height: 700px;
    background: linear-gradient(135deg, rgba(232,67,147,0.12), rgba(108,92,231,0.08));
    border-radius: 50%;
    z-index: 0;
}
.hero-section::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -100px;
    width: 400px; height: 400px;
    background: rgba(108,92,231,0.06);
    border-radius: 50%;
    z-index: 0;
}
.hero-shape {
    position: absolute;
    top: 10%; right: 5%;
    width: 500px; height: 500px;
    background: linear-gradient(135deg, rgba(232,67,147,0.15), rgba(162,155,254,0.1));
    border-radius: 62% 38% 70% 30% / 45% 55% 45% 55%;
    z-index: 1;
    animation: blobFloat 12s ease-in-out infinite;
}
@keyframes blobFloat {
    0%, 100% { border-radius: 62% 38% 70% 30% / 45% 55% 45% 55%; }
    33% { border-radius: 45% 55% 35% 65% / 55% 45% 60% 40%; }
    66% { border-radius: 55% 45% 60% 40% / 40% 60% 35% 65%; }
}
.hero-dots-1 {
    position: absolute;
    top: 20%; right: 42%;
    width: 100px; height: 100px;
    background-image: radial-gradient(circle, var(--primary) 2px, transparent 2px);
    background-size: 16px 16px;
    opacity: 0.12;
    z-index: 1;
}
.hero-dots-2 {
    position: absolute;
    bottom: 25%; left: 3%;
    width: 80px; height: 80px;
    background-image: radial-gradient(circle, var(--secondary) 1.5px, transparent 1.5px);
    background-size: 14px 14px;
    opacity: 0.1;
    z-index: 1;
}
.hero-circle-1 {
    position: absolute;
    top: 15%; left: 8%;
    width: 20px; height: 20px;
    background: var(--primary);
    opacity: 0.15;
    border-radius: 50%;
    z-index: 1;
}
.hero-circle-2 {
    position: absolute;
    bottom: 20%; right: 15%;
    width: 14px; height: 14px;
    border: 3px solid var(--secondary);
    opacity: 0.2;
    border-radius: 50%;
    z-index: 1;
}
.hero-circle-3 {
    position: absolute;
    top: 35%; right: 48%;
    width: 30px; height: 30px;
    border: 3px solid var(--primary);
    opacity: 0.1;
    border-radius: 50%;
    z-index: 1;
}

.min-vh-80 { min-height: 60vh; }
.hero-badge {
    display: inline-block;
    background: rgba(232,67,147,0.1);
    color: var(--primary);
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 20px;
}
.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--dark);
}
.hero-title .highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-desc { font-size: 1.1rem; color: var(--gray); margin-bottom: 35px; max-width: 480px; }
.hero-content { position: relative; z-index: 5; }
.hero-image-wrapper { position: relative; z-index: 5; }
.hero-image {
    max-height: 420px;
    filter: drop-shadow(0 30px 50px rgba(0,0,0,0.15));
}
.hero-placeholder {
    width: 300px; height: 360px;
    background: var(--gradient);
    border-radius: 62% 38% 70% 30% / 45% 55% 45% 55%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    animation: blobFloat 12s ease-in-out infinite;
    box-shadow: 0 30px 80px rgba(232,67,147,0.25);
}
.hero-placeholder i { font-size: 120px; color: rgba(255,255,255,0.25); }
/* Hero floating mini icons */
.hero-float-img {
    position: absolute;
    width: 55px; height: 55px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    z-index: 10;
    font-size: 1.2rem;
    color: var(--primary);
    border: 3px solid rgba(232,67,147,0.15);
}
.hero-float-img.float-1 {
    top: 8%; left: 5%;
    animation: heroFloat 4s ease-in-out infinite;
}
.hero-float-img.float-2 {
    top: 15%; right: 0%;
    animation: heroFloat 5s ease-in-out infinite 0.5s;
    background: var(--gradient);
    color: white;
    border-color: transparent;
}
.hero-float-img.float-3 {
    bottom: 25%; left: -5%;
    animation: heroFloat 4.5s ease-in-out infinite 1s;
    width: 45px; height: 45px;
    font-size: 1rem;
}
.hero-float-img.float-4 {
    bottom: 10%; right: 10%;
    animation: heroFloat 5.5s ease-in-out infinite 1.5s;
    width: 48px; height: 48px;
    background: linear-gradient(135deg, #fff0f6, #f3e8ff);
}
@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Pink curved stripe at hero bottom */
.hero-pink-stripe {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    z-index: 3;
    line-height: 0;
}
.hero-pink-stripe svg {
    display: block;
    width: 100%;
    height: 80px;
}

.hero-swiper { width: 100%; }
.hero-swiper .swiper-pagination { bottom: 60px !important; z-index: 5; }
.hero-swiper .swiper-pagination-bullet { background: var(--primary); width: 12px; height: 12px; opacity: 0.3; }
.hero-swiper .swiper-pagination-bullet-active { width: 35px; border-radius: 10px; opacity: 1; }

/* ===== ABOUT V2 - Matching Original Design ===== */
.about-section-v2 {
    position: relative;
    overflow: hidden;
    background: var(--gradient-soft);
}
.stat-number {
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    display: inline;
}

/* Image wrap with pink curve */
.about-v2-image-wrap { position: relative; }
.about-v2-pink-curve {
    position: absolute;
    top: -20px; left: -20px;
    width: 110%; height: 110%;
    border: 3px solid var(--primary-light);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
}
.about-v2-img-main {
    position: relative;
    z-index: 2;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-v2-img-main img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}
.about-v2-placeholder {
    width: 100%; height: 380px;
    background: linear-gradient(135deg, #fce4f0, #e8e0f8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: rgba(232,67,147,0.15);
}
.about-v2-img-small {
    position: absolute;
    top: -20px; left: -25px;
    width: 120px; height: 100px;
    border-radius: 16px;
    overflow: hidden;
    border: 4px solid white;
    box-shadow: var(--shadow);
    z-index: 3;
}
.about-v2-img-small img { width: 100%; height: 100%; object-fit: cover; }

/* Patient count badge */
.about-v2-patients-badge {
    position: absolute;
    bottom: 85px; left: -10px;
    background: white;
    border-radius: 50px;
    padding: 8px 18px 8px 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow);
    z-index: 5;
}
.patient-avatars { display: flex; }
.p-avatar {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    margin-left: -8px;
    border: 2px solid white;
}
.p-avatar:first-child { margin-left: 0; }
.patient-text strong { display: block; font-size: 0.85rem; line-height: 1; }
.patient-text span { font-size: 0.7rem; color: var(--gray); }

/* Feature bar below image */
.about-v2-feature-bar {
    background: linear-gradient(135deg, #1a1a3e, #16213e);
    border-radius: 16px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    position: relative;
    z-index: 2;
}
.feature-bar-left {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}
.play-video-btn {
    width: 42px; height: 42px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: all 0.3s;
}
.play-video-btn:hover { transform: scale(1.1); color: var(--primary); }
.feature-bar-left span { color: white; font-weight: 600; font-size: 0.85rem; }
.feature-bar-right {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 18px;
}
.feature-bar-right span {
    color: rgba(255,255,255,0.85);
    font-size: 0.8rem;
    white-space: nowrap;
}
.feature-bar-right span i { color: var(--accent); margin-right: 5px; font-size: 0.75rem; }

/* Center content */
.about-v2-title {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--dark);
}
.about-v2-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.about-v2-rating .stars { color: #ffc107; font-size: 0.9rem; }
.about-v2-rating .rating-score { font-weight: 700; color: var(--dark); font-size: 0.9rem; }
.about-v2-rating .rating-text { font-size: 0.8rem; color: var(--gray); }
.about-v2-desc { color: var(--gray); font-size: 0.95rem; line-height: 1.8; }

/* Right stat cards */
.about-v2-stats { display: flex; flex-direction: column; gap: 15px; }
.about-stat-card {
    padding: 22px 25px;
    border-radius: 18px;
    text-align: center;
    transition: all 0.3s;
}
.about-stat-card:hover { transform: translateY(-5px); }
.about-stat-card.stat-pink { background: rgba(232,67,147,0.08); }
.about-stat-card.stat-purple { background: rgba(108,92,231,0.08); }
.about-stat-card.stat-green { background: rgba(0,184,148,0.08); }
.about-stat-card.stat-gold { background: rgba(253,203,110,0.12); }
.about-stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}
.about-stat-label {
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 500;
    margin-top: 4px;
}

/* Numbered service cards */
.numbered-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.04);
}
.numbered-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.numbered-card-dark {
    background: linear-gradient(135deg, #1a1a3e, #2d1b69);
    color: white;
    border: none;
}
.nc-content { flex: 1; }
.nc-title { font-weight: 700; font-size: 1.15rem; margin-bottom: 10px; }
.nc-desc { font-size: 0.88rem; color: var(--gray); line-height: 1.6; margin-bottom: 12px; }
.numbered-card-dark .nc-desc { color: rgba(255,255,255,0.6); }
.nc-link { color: var(--primary); font-weight: 600; font-size: 0.88rem; display: inline-flex; align-items: center; gap: 6px; }
.nc-link:hover { gap: 12px; }
.numbered-card-dark .nc-link { color: white; }
.nc-right { text-align: right; min-width: 70px; }
.nc-number {
    font-size: 3rem;
    font-weight: 800;
    opacity: 0.08;
    line-height: 1;
    display: block;
}
.numbered-card-dark .nc-number { opacity: 0.15; color: white; }
.nc-icon {
    width: 55px; height: 55px;
    background: linear-gradient(135deg, rgba(232,67,147,0.1), rgba(108,92,231,0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.3rem;
    margin-top: 10px;
    margin-left: auto;
}
.numbered-card-dark .nc-icon {
    background: rgba(255,255,255,0.1);
    color: white;
}

@media (max-width: 991px) {
    .about-v2-stats { flex-direction: row; flex-wrap: wrap; }
    .about-stat-card { flex: 1; min-width: 120px; }
    .about-v2-title { font-size: 1.8rem; }
    .about-v2-feature-bar { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 767px) {
    .about-v2-patients-badge { position: relative; bottom: auto; left: auto; margin-top: 15px; display: inline-flex; }
    .about-v2-img-small { display: none; }
    .numbered-card { flex-direction: column; }
    .nc-right { text-align: left; display: flex; align-items: center; gap: 15px; flex-direction: row-reverse; width: 100%; margin-top: 10px; }
    .nc-number { font-size: 2rem; }
}

/* ===== TEAM ===== */
.team-section { position: relative; overflow: hidden; }
.team-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
}
.team-card:hover { transform: translateY(-12px); box-shadow: var(--shadow-lg); }
.team-image {
    position: relative;
    overflow: hidden;
    height: 300px;
    background: linear-gradient(135deg, #fce4f0, #e8e0f8);
}
.team-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.team-card:hover .team-image img { transform: scale(1.05); }
.team-img-placeholder {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: rgba(232,67,147,0.15);
}
.team-social {
    position: absolute;
    bottom: -55px;
    left: 0; right: 0;
    background: var(--gradient);
    padding: 14px;
    display: flex;
    justify-content: center;
    gap: 18px;
    transition: all 0.4s ease;
}
.team-card:hover .team-social { bottom: 0; }
.team-social a { color: white; font-size: 16px; transition: transform 0.2s; }
.team-social a:hover { transform: scale(1.3); }
.team-info { padding: 22px; text-align: center; }
.team-info h5 { font-weight: 700; margin-bottom: 4px; font-size: 1.1rem; }
.team-info p { color: var(--primary); font-size: 0.9rem; margin: 0; font-weight: 500; }
.team-accent-line {
    height: 4px;
    background: var(--gradient);
    border-radius: 0 0 16px 16px;
}

/* ===== APPOINTMENT ===== */
.appointment-section {
    background: var(--gradient);
    position: relative;
    overflow: hidden;
}
.appointment-section::before {
    content: '';
    position: absolute;
    top: -150px; right: -150px;
    width: 500px; height: 500px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}
.appointment-section::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -100px;
    width: 350px; height: 350px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}
.appointment-section .section-title-script {
    color: white;
    opacity: 0.9;
    font-size: 3.5rem;
    margin-bottom: 10px;
}
.appointment-content { color: white; position: relative; z-index: 2; }
.appointment-info { margin-top: 30px; }
.appt-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: white;
}
.appt-info-item i {
    width: 55px; height: 55px;
    background: rgba(255,255,255,0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    backdrop-filter: blur(5px);
}
.appt-info-item span { font-size: 0.85rem; opacity: 0.8; display: block; }
.appt-info-item strong { font-size: 1.05rem; }
.appointment-form-wrapper {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    position: relative;
    z-index: 2;
}
.appointment-form .form-control,
.appointment-form .form-select {
    border: 2px solid #f0f0f0;
    border-radius: var(--radius-sm);
    padding: 13px 18px;
    font-size: 0.95rem;
    transition: all 0.3s;
}
.appointment-form .form-control:focus,
.appointment-form .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(232,67,147,0.08);
}

/* ===== SERVICES - Left title + Right mini cards ===== */
.services-section { position: relative; overflow: hidden; }
.services-banner {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}
.services-smile-placeholder {
    width: 100%; height: 300px;
    background: linear-gradient(135deg, #fce4f0 0%, #e8e0f8 50%, #dfe6fd 100%);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    position: relative;
    overflow: hidden;
}
.services-smile-placeholder::before {
    content: '';
    position: absolute;
    top: -50px; right: -50px;
    width: 200px; height: 200px;
    background: rgba(232,67,147,0.08);
    border-radius: 50%;
}
.services-smile-placeholder::after {
    content: '';
    position: absolute;
    bottom: -30px; left: -30px;
    width: 150px; height: 150px;
    background: rgba(108,92,231,0.06);
    border-radius: 50%;
}
.services-smile-placeholder i { font-size: 80px; opacity: 0.15; margin-bottom: 10px; position: relative; z-index: 1; }
.services-smile-placeholder span { font-size: 1.3rem; font-weight: 600; opacity: 0.2; position: relative; z-index: 1; }
.service-mini-card {
    background: white;
    border-radius: var(--radius);
    padding: 22px;
    display: flex;
    gap: 15px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    border: 1px solid rgba(0,0,0,0.04);
    height: 100%;
}
.service-mini-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: rgba(232,67,147,0.1);
}
.smc-icon {
    width: 50px; height: 50px; min-width: 50px;
    background: linear-gradient(135deg, rgba(232,67,147,0.1), rgba(108,92,231,0.1));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    transition: all 0.3s;
}
.service-mini-card:hover .smc-icon { background: var(--gradient); color: white; }
.smc-content h6 { font-weight: 700; font-size: 0.95rem; margin-bottom: 5px; }
.smc-content p { font-size: 0.82rem; color: var(--gray); margin: 0; line-height: 1.5; }

/* ===== WHY CHOOSE US ===== */
.why-choose-section { position: relative; overflow: hidden; }
.why-card {
    background: white;
    padding: 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}
.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(232,67,147,0.15);
}
.why-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, rgba(232,67,147,0.1), rgba(108,92,231,0.1));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 18px;
    transition: all 0.3s;
}
.why-card:hover .why-icon { background: var(--gradient); color: white; transform: rotateY(180deg); }
.why-card h6 { font-weight: 700; margin-bottom: 8px; font-size: 1rem; }
.why-card p { font-size: 0.85rem; color: var(--gray); margin: 0; line-height: 1.6; }
/* WHY CHOOSE - Photo Collage Grid */
.why-photo-collage { position: relative; min-height: 450px; }
.wpc-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 15px;
    height: 450px;
}
.wpc-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}
.wpc-placeholder {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: rgba(255,255,255,0.3);
}
.wpc-item.wpc-large {
    grid-row: 1 / 3;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
}
.wpc-item.wpc-small-top {
    background: linear-gradient(135deg, #fce4f0, #f8d0e8);
}
.wpc-item.wpc-small-bottom {
    background: linear-gradient(135deg, #e8e0f8, #d0c8f8);
}
.wpc-item.wpc-medium {
    display: none;
}
.wpc-badge-overlay {
    position: absolute;
    bottom: 15px; left: 15px;
    background: var(--gradient);
    color: white;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(232,67,147,0.3);
}
.wpc-count-badge {
    position: absolute;
    top: 12px; right: 12px;
    background: white;
    padding: 8px 14px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}
.wpc-count-badge strong { display: block; font-size: 1.1rem; color: var(--primary); line-height: 1; }
.wpc-count-badge span { font-size: 0.65rem; color: var(--gray); }
.wpc-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wpc-item a.wpc-lightbox { display: block; width: 100%; height: 100%; cursor: zoom-in; }
.wpc-item a.wpc-lightbox:hover img { transform: scale(1.05); transition: transform 0.3s ease; }
.wpc-item a.wpc-lightbox img { transition: transform 0.3s ease; }

.wpc-lightbox-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.85); z-index: 9999;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: all 0.3s ease; cursor: zoom-out;
}
.wpc-lightbox-overlay.active { opacity: 1; visibility: visible; }
.wpc-lightbox-overlay img {
    max-width: 90vw; max-height: 90vh; border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5); object-fit: contain;
}
.wpc-lightbox-close {
    position: absolute; top: 20px; right: 30px; color: white; font-size: 2rem;
    cursor: pointer; z-index: 10000; background: none; border: none; line-height: 1;
}

/* ===== HOW IT WORKS V2 - Left image, right 2x2 grid ===== */
.how-it-works-v2 {
    background: linear-gradient(135deg, #fff5f9 0%, #f8f0ff 50%, #f0f4ff 100%);
    position: relative;
    overflow: hidden;
}
.hiw-image-wrap {
    position: relative;
}
.hiw-img-placeholder {
    width: 100%; height: 450px;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    color: rgba(255,255,255,0.2);
}
.hiw-badge {
    position: absolute;
    bottom: 30px; right: -20px;
    background: var(--gradient);
    color: white;
    padding: 18px 25px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(232,67,147,0.3);
}
.hiw-badge-number { font-size: 2rem; font-weight: 800; display: block; line-height: 1; }
.hiw-badge-text { font-size: 0.75rem; opacity: 0.9; }
.hiw-step-card {
    background: white;
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    height: 100%;
    position: relative;
    border: 1px solid rgba(0,0,0,0.04);
}
.hiw-step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: rgba(232,67,147,0.1);
}
.hiw-step-num {
    position: absolute;
    top: 15px; right: 18px;
    font-size: 2.5rem;
    font-weight: 800;
    opacity: 0.06;
    line-height: 1;
}
.hiw-step-icon {
    width: 55px; height: 55px;
    background: linear-gradient(135deg, rgba(232,67,147,0.1), rgba(108,92,231,0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 15px;
    transition: all 0.3s;
}
.hiw-step-card:hover .hiw-step-icon { background: var(--gradient); color: white; }
.hiw-step-card h6 { font-weight: 700; margin-bottom: 8px; }
.hiw-step-card p { font-size: 0.85rem; color: var(--gray); margin: 0; line-height: 1.6; }

/* ===== PRICING ===== */
.pricing-section { position: relative; }
.pricing-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
}
.pricing-card:hover { transform: translateY(-12px); box-shadow: var(--shadow-lg); }
.pricing-icon-top {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, rgba(232,67,147,0.1), rgba(108,92,231,0.1));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.4rem;
    margin: 0 auto 15px;
}
.pricing-card.featured .pricing-icon-top { background: rgba(255,255,255,0.15); color: white; }
.pricing-card.featured {
    background: var(--gradient);
    color: white;
    transform: scale(1.06);
    border-color: transparent;
    box-shadow: 0 25px 60px rgba(232,67,147,0.3);
}
.pricing-card.featured:hover { transform: scale(1.06) translateY(-10px); }
.pricing-badge {
    position: absolute;
    top: 20px; right: -32px;
    background: var(--accent);
    color: white;
    padding: 5px 42px;
    font-size: 0.78rem;
    font-weight: 600;
    transform: rotate(45deg);
}
.pricing-header { text-align: center; padding-bottom: 25px; border-bottom: 1px solid rgba(0,0,0,0.06); margin-bottom: 25px; }
.pricing-card.featured .pricing-header { border-color: rgba(255,255,255,0.2); }
.pricing-header h4 { font-weight: 700; margin-bottom: 15px; font-size: 1.2rem; }
.pricing-price { display: flex; align-items: baseline; justify-content: center; gap: 2px; }
.price-currency { font-size: 1.5rem; font-weight: 600; }
.price-amount { font-size: 3.2rem; font-weight: 800; line-height: 1; }
.price-period { font-size: 0.9rem; opacity: 0.6; }
.pricing-body { flex: 1; }
.pricing-features { list-style: none; padding: 0; }
.pricing-features li { padding: 8px 0; display: flex; align-items: center; gap: 10px; font-size: 0.95rem; }
.pricing-features li i { color: var(--accent); font-size: 0.9rem; }
.pricing-card.featured .pricing-features li i { color: rgba(255,255,255,0.9); }
.pricing-footer { margin-top: 25px; }
.pricing-card.featured .btn-primary-custom { background: white; color: var(--primary); box-shadow: 0 5px 20px rgba(0,0,0,0.1); }

/* ===== BLOG ===== */
.blog-section { position: relative; }
.blog-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}
.blog-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: rgba(232,67,147,0.1); }
.blog-image {
    height: 230px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #fce4f0, #e8e0f8);
}
.blog-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.blog-card:hover .blog-image img { transform: scale(1.08); }
.blog-img-placeholder {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 55px;
    color: rgba(232,67,147,0.15);
}
.blog-date {
    position: absolute;
    top: 15px; left: 15px;
    background: var(--gradient);
    color: white;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    text-align: center;
    line-height: 1.2;
}
.blog-date .day { font-size: 1.3rem; font-weight: 800; display: block; }
.blog-date .month { font-size: 0.65rem; display: block; text-transform: uppercase; letter-spacing: 0.5px; }
.blog-body { padding: 25px; }
.blog-meta { margin-bottom: 10px; }
.blog-meta span { font-size: 0.85rem; color: var(--gray); margin-right: 15px; }
.blog-meta i { margin-right: 4px; color: var(--primary); }
.blog-body h5 { font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
.blog-body h5 a:hover { color: var(--primary); }
.blog-body p { color: var(--gray); font-size: 0.9rem; }
.blog-read-more { color: var(--primary); font-weight: 600; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 5px; }
.blog-read-more:hover { color: var(--secondary); gap: 10px; }

/* ===== TESTIMONIALS ===== */
/* Testimonials - Google Reviews Style */
.testimonials-section { position: relative; overflow: hidden; }
.section-header-left { text-align: left; }
.section-title-simple { font-size: 1.8rem; font-weight: 700; color: var(--dark); margin: 0; }
.testimonials-carousel-wrap { position: relative; padding: 0 50px; }
.testimonials-swiper { overflow: visible; }
.testimonials-swiper .swiper-slide { height: auto; }
.gr-card {
    background: white;
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.gr-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.gr-card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 14px;
}
.gr-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.3rem;
    position: relative;
    margin-bottom: 10px;
    flex-shrink: 0;
}
.gr-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}
.gr-avatar span { line-height: 1; }
.gr-google-icon {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 22px;
    height: 22px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.gr-author-info { text-align: center; }
.gr-name { font-weight: 700; font-size: 0.92rem; margin: 0 0 2px; color: var(--dark); }
.gr-date { font-size: 0.75rem; color: #999; }
.gr-stars { margin-bottom: 12px; text-align: center; }
.gr-stars i { color: #ddd; font-size: 0.85rem; margin: 0 1px; }
.gr-stars i.active { color: #ffc107; }
.gr-text {
    color: var(--gray);
    font-size: 0.88rem;
    line-height: 1.7;
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    text-align: center;
}
.gr-read-more {
    display: block;
    text-align: center;
    color: var(--gray);
    font-size: 0.8rem;
    font-style: italic;
    margin-top: 8px;
    text-decoration: none;
}
.gr-read-more:hover { color: var(--primary); }
.gr-text.expanded {
    -webkit-line-clamp: unset;
    overflow: visible;
}
.testimonials-carousel-wrap .swiper-button-prev,
.testimonials-carousel-wrap .swiper-button-next {
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    color: var(--dark);
    transition: all 0.3s;
}
.testimonials-carousel-wrap .swiper-button-prev::after,
.testimonials-carousel-wrap .swiper-button-next::after { font-size: 16px; font-weight: 700; }
.testimonials-carousel-wrap .swiper-button-prev:hover,
.testimonials-carousel-wrap .swiper-button-next:hover { background: var(--gradient); color: white; }
.testimonials-carousel-wrap .testimonials-prev { left: 0; }
.testimonials-carousel-wrap .testimonials-next { right: 0; }

@media (max-width: 767px) {
    .testimonials-carousel-wrap { padding: 0 10px; }
    .testimonials-carousel-wrap .swiper-button-prev,
    .testimonials-carousel-wrap .swiper-button-next { display: none; }
    .section-title-simple { font-size: 1.4rem; }
}

/* ===== VIDEOS SECTION - YouTube Shorts Carousel ===== */
.videos-section { position: relative; overflow: hidden; background: var(--light); }
.videos-carousel-wrap { position: relative; padding: 0 50px; }
.video-card {
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: all 0.4s ease;
}
.video-card:hover { transform: translateY(-6px); }
.video-card-thumb {
    position: relative;
    aspect-ratio: 9 / 14;
    overflow: hidden;
    border-radius: var(--radius);
}
.video-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.video-card:hover .video-card-thumb img { transform: scale(1.05); }
.video-card-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary);
}
.video-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.08);
    transition: background 0.3s;
}
.video-card:hover .video-card-overlay { background: rgba(0,0,0,0.2); }
.video-play-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient);
    border: none;
    color: white;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}
.video-play-btn i { margin-left: 3px; }
.video-card:hover .video-play-btn { transform: scale(1.15); }
.videos-swiper .swiper-slide { height: auto; }
.videos-section .swiper-button-prev,
.videos-section .swiper-button-next {
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    color: var(--dark);
    transition: all 0.3s;
}
.videos-section .swiper-button-prev::after,
.videos-section .swiper-button-next::after { font-size: 16px; font-weight: 700; }
.videos-section .swiper-button-prev:hover,
.videos-section .swiper-button-next:hover { background: var(--gradient); color: white; }
.videos-section .videos-prev { left: 0; }
.videos-section .videos-next { right: 0; }

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    align-items: center;
    justify-content: center;
}
.video-modal.active { display: flex; }
.video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.85);
    cursor: pointer;
}
.video-modal-content {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 400px;
}
.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.2s;
}
.video-modal-close:hover { transform: scale(1.2); }
.video-modal-player {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: var(--radius);
    overflow: hidden;
    background: #000;
}
.video-modal-player iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 767px) {
    .videos-carousel-wrap { padding: 0 10px; }
    .videos-section .swiper-button-prev,
    .videos-section .swiper-button-next { display: none; }
    .video-modal-content { max-width: 95%; }
}

/* ===== IMAGE GALLERY SECTION ===== */
.ba-gallery-section { position: relative; overflow: hidden; background: var(--light); }
.ba-gallery-carousel-wrap { position: relative; padding: 0 50px; }
.ba-card {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    aspect-ratio: 3 / 4;
}
.ba-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.ba-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.ba-card:hover img { transform: scale(1.05); }
.ba-gallery-swiper { padding-bottom: 50px; }
.ba-gallery-swiper .swiper-slide { height: auto; }
.ba-gallery-swiper .swiper-pagination-bullet { background: var(--primary); }
.ba-gallery-section .swiper-button-prev,
.ba-gallery-section .swiper-button-next {
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    color: var(--dark);
    transition: all 0.3s;
}
.ba-gallery-section .swiper-button-prev::after,
.ba-gallery-section .swiper-button-next::after { font-size: 16px; font-weight: 700; }
.ba-gallery-section .swiper-button-prev:hover,
.ba-gallery-section .swiper-button-next:hover { background: var(--gradient); color: white; }
.ba-gallery-section .ba-gallery-prev { left: 0; }
.ba-gallery-section .ba-gallery-next { right: 0; }

@media (max-width: 767px) {
    .ba-gallery-carousel-wrap { padding: 0 10px; }
    .ba-gallery-section .swiper-button-prev,
    .ba-gallery-section .swiper-button-next { display: none; }
}

/* ===== CONTACT V2 - Map + floating card ===== */
.contact-section-v2 { position: relative; background: white; }
.contact-map-area {
    position: relative;
    border-radius: 24px;
    overflow: visible;
}
.map-wrapper-v2 {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    min-height: 400px;
}
.map-wrapper-v2 iframe { display: block; min-height: 450px; }
.map-placeholder {
    width: 100%; min-height: 450px;
    background: linear-gradient(135deg, #e0e7ff, #f3e8ff);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}
.map-placeholder i { font-size: 50px; opacity: 0.2; margin-bottom: 10px; }
.map-placeholder span { font-weight: 600; opacity: 0.3; }
.contact-float-card {
    position: absolute;
    top: 50%; right: 30px;
    transform: translateY(-50%);
    background: var(--gradient);
    color: white;
    padding: 35px 30px;
    border-radius: 20px;
    width: 320px;
    box-shadow: 0 20px 50px rgba(232,67,147,0.3);
    z-index: 10;
}
.contact-float-card h5 { color: white; margin-bottom: 20px; font-weight: 700; }
.cfc-item {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    align-items: flex-start;
}
.cfc-item i {
    width: 36px; height: 36px; min-width: 36px;
    background: rgba(255,255,255,0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}
.cfc-item span { font-size: 0.88rem; line-height: 1.6; opacity: 0.9; }
.contact-form-wrapper-v2 {
    background: var(--light);
    border-radius: 24px;
    padding: 40px;
}
.contact-form-wrapper-v2 .form-control,
.contact-form .form-control {
    border: 2px solid #f0f0f0;
    border-radius: var(--radius-sm);
    padding: 13px 18px;
    transition: all 0.3s;
}
.contact-form-wrapper-v2 .form-control:focus,
.contact-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(232,67,147,0.08);
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    position: relative;
}
.footer-top { padding: 80px 0 40px; }
.footer-brand { font-size: 1.5rem; font-weight: 800; color: white; margin-bottom: 15px; }
.footer-brand i { color: var(--primary); }
.footer-logo { height: 50px; }
.footer-text { color: rgba(255,255,255,0.55); font-size: 0.9rem; margin-bottom: 20px; line-height: 1.7; }
.footer-social a {
    width: 42px; height: 42px;
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 8px;
    transition: all 0.3s ease;
}
.footer-social a:hover { background: var(--gradient); transform: translateY(-3px); }
.footer-widget-title {
    font-weight: 700;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
    font-size: 1.1rem;
}
.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 40px; height: 3px;
    background: var(--gradient);
    border-radius: 10px;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.55); font-size: 0.9rem; display: flex; align-items: center; gap: 8px; }
.footer-links a::before { content: '\f105'; font-family: 'Font Awesome 6 Free'; font-weight: 900; font-size: 0.7rem; color: var(--primary); }
.footer-links a:hover { color: var(--primary); padding-left: 5px; }
.footer-contact { list-style: none; padding: 0; }
.footer-contact li { color: rgba(255,255,255,0.55); font-size: 0.9rem; margin-bottom: 14px; display: flex; gap: 12px; }
.footer-contact li i { color: var(--primary); margin-top: 4px; min-width: 16px; }
.footer-map { border-radius: 12px; overflow: hidden; }
.footer-map iframe { display: block; }
.footer-map-placeholder {
    height: 200px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255,255,255,0.3);
    font-size: 0.9rem;
}
.footer-map-placeholder i { font-size: 2rem; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 22px 0;
}
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.85rem; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 60px; height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    z-index: 999;
    box-shadow: 0 5px 25px rgba(37,211,102,0.4);
    animation: pulse 2s infinite;
}
.whatsapp-float:hover { color: white; transform: scale(1.1); }

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 100px; right: 30px;
    width: 48px; height: 48px;
    background: var(--gradient);
    color: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(232,67,147,0.3);
}
.back-to-top.active { opacity: 1; visibility: visible; }
.back-to-top:hover { color: white; transform: translateY(-4px); }

/* ===== ANIMATIONS ===== */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1199px) {
    .hero-title { font-size: 3rem; }
    .hero-shape { width: 400px; height: 400px; }
    .contact-float-card { width: 280px; padding: 25px 20px; }
}
@media (max-width: 991px) {
    .hero-title { font-size: 2.5rem; }
    .section-title { font-size: 2rem; }
    .section-padding { padding: 70px 0; }
    .hero-section { min-height: auto; padding: 80px 0 120px; }
    .min-vh-80 { min-height: auto; }
    .hero-image-wrapper { margin-top: 40px; }
    .hero-shape { display: none; }
    .hero-float-img { display: none; }
    .pricing-card.featured { transform: scale(1); }
    .pricing-card.featured:hover { transform: translateY(-10px); }
    .stats-bar { padding: 30px 20px; }
    .stat-card:not(:last-child)::after { display: none; }
    .nav-phone-white { display: none; }
    .navbar-right { flex-direction: column; margin-top: 10px; }
    .lang-name { display: none; }
    .lang-current { padding: 5px 8px; }
    .lang-dropdown { right: auto; left: 0; }
    .contact-float-card {
        position: relative;
        top: auto; right: auto;
        transform: none;
        width: 100%;
        margin-top: -40px;
        margin-bottom: 20px;
    }
    .hiw-image-wrap { margin-bottom: 40px; }
    .hiw-badge { right: 20px; }
    .wpc-grid { height: 350px; }
}
@media (max-width: 767px) {
    .hero-title { font-size: 2rem; }
    .section-title { font-size: 1.6rem; }
    .stat-number { font-size: 1.8rem; }
    .stat-icon { width: 50px; height: 50px; font-size: 1.2rem; }
    .appointment-form-wrapper { padding: 25px; }
    .contact-form-wrapper-v2 { padding: 20px; }
    .whatsapp-float { bottom: 80px; right: 20px; width: 50px; height: 50px; font-size: 1.5rem; }
    .back-to-top { bottom: 140px; right: 20px; }
    .section-title-script { font-size: 2.2rem; }
    .about-experience-badge { width: 90px; height: 90px; }
    .exp-number { font-size: 1.5rem; }
    .hiw-img-placeholder { height: 300px; font-size: 60px; }
    .wpc-grid { grid-template-columns: 1fr 1fr; height: 280px; }
    .wpc-item.wpc-large { grid-row: auto; }
}

/* ===== PAGE HERO / BREADCRUMB ===== */
.page-hero {
    background: var(--gradient);
    padding: 100px 0 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}
.page-hero-title {
    color: #fff;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 14px;
    text-wrap: balance;
    text-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
    position: relative;
    z-index: 1;
}
.breadcrumb-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}
.breadcrumb-nav a {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
}
.breadcrumb-nav a:hover { color: #fff; }
.breadcrumb-separator {
    color: rgba(255,255,255,0.5);
    font-size: 0.7rem;
}
.breadcrumb-nav > span:last-child {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
}
.breadcrumb-nav .current {
    color: #fff;
    font-weight: 700;
}

/* ===== STATIC PAGE CONTENT ===== */
.page-content-wrapper {
    max-width: 860px;
    margin: 0 auto;
}
.page-content {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--dark);
}
.page-content h2, .page-content h3, .page-content h4 {
    margin-top: 1.5em;
    margin-bottom: 0.6em;
    font-weight: 700;
    color: var(--dark);
}
.page-content h2 { font-size: 1.6rem; }
.page-content h3 { font-size: 1.35rem; }
.page-content p { margin-bottom: 1.1em; }
.page-content img {
    border-radius: var(--radius);
    margin: 1.5em 0;
    box-shadow: var(--shadow-sm);
}
.page-content ul, .page-content ol {
    padding-left: 1.5em;
    margin-bottom: 1.2em;
}
.page-content li { margin-bottom: 0.4em; }
.page-content blockquote {
    border-left: 4px solid var(--primary);
    padding: 15px 20px;
    margin: 1.5em 0;
    background: var(--light-pink);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--gray);
}

/* ===== SERVICE DETAIL INLINE IMAGE ===== */
.page-content img.sd-inline-image {
    float: left;
    max-width: 320px;
    max-height: 360px;
    width: auto;
    height: auto;
    margin: 0.3em 1.5em 1em 0;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}
@media (max-width: 575px) {
    .page-content img.sd-inline-image {
        float: none;
        display: block;
        width: 100%;
        max-width: 320px;
        margin: 0 auto 1.2em;
    }
}

/* ===== BLOG DETAIL ===== */
.blog-detail-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.blog-detail-image {
    width: 100%;
    max-height: 480px;
    overflow: hidden;
}
.blog-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    padding: 25px 30px 0;
    font-size: 0.88rem;
    color: var(--gray);
}
.blog-detail-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}
.blog-detail-meta i {
    color: var(--primary);
    font-size: 0.8rem;
}
.blog-detail-content {
    padding: 25px 30px;
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--dark);
}
.blog-detail-content h2, .blog-detail-content h3, .blog-detail-content h4 {
    margin-top: 1.3em;
    margin-bottom: 0.5em;
    font-weight: 700;
}
.blog-detail-content p { margin-bottom: 1em; }
.blog-detail-content img {
    border-radius: var(--radius-sm);
    margin: 1em 0;
}
.blog-detail-content ul, .blog-detail-content ol {
    padding-left: 1.5em;
    margin-bottom: 1em;
}
.blog-detail-content blockquote {
    border-left: 4px solid var(--primary);
    padding: 15px 20px;
    margin: 1.2em 0;
    background: var(--light-pink);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--gray);
}
.blog-detail-tags {
    padding: 0 30px 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}
.blog-detail-tags > i {
    color: var(--primary);
    font-size: 0.95rem;
}
.blog-tag {
    background: var(--light);
    color: var(--gray);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
    transition: all 0.3s;
}
.blog-tag:hover {
    background: var(--gradient);
    color: #fff;
}
.blog-detail-share {
    padding: 20px 30px;
    border-top: 1px solid rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    gap: 10px;
}
.share-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark);
}
.share-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.85rem;
    transition: transform 0.3s, box-shadow 0.3s;
}
.share-btn:hover {
    transform: translateY(-3px);
    color: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}
.share-facebook { background: #1877f2; }
.share-twitter { background: #1da1f2; }
.share-whatsapp { background: #25d366; }

/* ===== BLOG SIDEBAR ===== */
.blog-sidebar { position: sticky; top: 100px; }
.sidebar-widget {
    background: #fff;
    border-radius: var(--radius);
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-sm);
}
.sidebar-widget-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--light);
    position: relative;
}
.sidebar-widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gradient);
}
.sidebar-categories { list-style: none; padding: 0; margin: 0; }
.sidebar-categories li { border-bottom: 1px solid var(--light); }
.sidebar-categories li:last-child { border-bottom: none; }
.sidebar-categories a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 0.92rem;
    color: var(--gray);
    transition: color 0.3s, padding-left 0.3s;
}
.sidebar-categories a:hover {
    color: var(--primary);
    padding-left: 5px;
}
.cat-count {
    background: var(--light);
    padding: 2px 10px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
}
.recent-post-item {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--light);
    transition: all 0.3s;
}
.recent-post-item:last-child { border-bottom: none; }
.recent-post-item:hover { padding-left: 3px; }
.recent-post-thumb {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: var(--radius-sm);
    overflow: hidden;
}
.recent-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.recent-post-placeholder {
    width: 100%;
    height: 100%;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    opacity: 0.5;
}
.recent-post-info h6 {
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--dark);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.recent-post-item:hover h6 { color: var(--primary); }
.recent-post-date {
    font-size: 0.78rem;
    color: var(--gray);
}
.recent-post-date i { margin-right: 4px; color: var(--primary); font-size: 0.7rem; }

.sidebar-cta {
    background: var(--gradient);
    text-align: center;
    border: none;
}
.sidebar-cta-content i {
    font-size: 2.5rem;
    color: rgba(255,255,255,0.3);
    margin-bottom: 10px;
}
.sidebar-cta-content h5 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.sidebar-cta-content p {
    color: rgba(255,255,255,0.8);
    font-size: 0.88rem;
    margin-bottom: 15px;
    line-height: 1.5;
}
.sidebar-cta .btn-primary-custom {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}
.sidebar-cta .btn-primary-custom:hover {
    background: var(--dark);
    color: #fff;
}

/* Inner page responsive */
@media (max-width: 991px) {
    .page-hero { padding: 80px 0 40px; }
    .page-hero-title { font-size: 2rem; }
    .blog-sidebar { position: static; margin-top: 30px; }
}
@media (max-width: 767px) {
    .page-hero { padding: 70px 0 30px; }
    .page-hero-title { font-size: 1.6rem; }
    .blog-detail-meta { padding: 20px 20px 0; gap: 12px; }
    .blog-detail-content { padding: 20px; }
    .blog-detail-tags { padding: 0 20px 15px; }
    .blog-detail-share { padding: 15px 20px; }
    .breadcrumb-nav { font-size: 0.85rem; gap: 5px; }
}

/* ===== SERVICE LISTING PAGE ===== */
.service-listing-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
}
.service-listing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.slc-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}
.slc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.service-listing-card:hover .slc-image img {
    transform: scale(1.05);
}
.slc-img-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.5;
}
.slc-body {
    padding: 25px;
    position: relative;
}
.slc-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    position: absolute;
    top: -25px;
    right: 25px;
    box-shadow: 0 4px 15px rgba(232, 67, 147, 0.3);
}
.slc-body h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}
.slc-body p {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.6;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 80px 0;
    background: var(--gradient);
}

/* ===== CONTACT INFO CARDS ===== */
.contact-info-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 30px 25px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
}
.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}
.cic-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-soft);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 15px;
}
.contact-info-card h6 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}
.contact-info-card p {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
}
.contact-info-card p a {
    color: var(--primary);
}
.contact-info-card p a:hover {
    color: var(--primary-dark);
}

/* ===== GALLERY PAGE ===== */
.gallery-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.btn-filter {
    padding: 8px 22px;
    border: 2px solid var(--light);
    border-radius: 50px;
    background: #fff;
    color: var(--gray);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-filter:hover,
.btn-filter.active {
    background: var(--gradient);
    border-color: var(--primary);
    color: #fff;
}
.gallery-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: #fff;
    transition: all 0.3s ease;
}
.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}
.gallery-image {
    position: relative;
    overflow: hidden;
    height: 260px;
}
.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-card:hover .gallery-image img {
    transform: scale(1.08);
}
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(232, 67, 147, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-card:hover .gallery-overlay {
    opacity: 1;
}
.gallery-zoom {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transform: scale(0.5);
    transition: transform 0.3s ease;
}
.gallery-card:hover .gallery-zoom {
    transform: scale(1);
}
.gallery-caption {
    padding: 15px 20px;
}
.gallery-caption h6 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}
.gallery-cat {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 500;
}

/* ===== PAGINATION ===== */
.pagination-wrapper .pagination {
    gap: 6px;
}
.pagination-wrapper .page-item .page-link {
    border: none;
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    font-weight: 500;
    color: var(--gray);
    background: var(--light);
    transition: all 0.3s ease;
}
.pagination-wrapper .page-item.active .page-link {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 4px 15px rgba(232, 67, 147, 0.3);
}
.pagination-wrapper .page-item .page-link:hover {
    background: var(--primary-light);
    color: #fff;
}
.pagination-wrapper .page-item.disabled .page-link {
    opacity: 0.5;
    background: var(--light);
    color: var(--gray);
}

/* ===== MULTI-PAGE RESPONSIVE ===== */
@media (max-width: 991px) {
    .contact-info-card { padding: 20px; }
    .gallery-image { height: 200px; }
    .slc-image { height: 180px; }
    .cta-section { padding: 60px 0; }
}
@media (max-width: 767px) {
    .gallery-filter { gap: 6px; }
    .btn-filter { padding: 6px 16px; font-size: 0.82rem; }
    .gallery-image { height: 180px; }
    .slc-image { height: 160px; }
    .slc-body { padding: 20px; }
    .cta-section { padding: 50px 0; }
    .cta-section h2 { font-size: 1.5rem; }
}
