/* ============================================
   DENTAL WELLNESS - LUXURY PREMIUM STYLESHEET
   Enhanced with 3D Effects, Animations & Modern Design
   ============================================ */

/* ====== CSS VARIABLES - LUXURY GOLD THEME ====== */
:root {
    --primary-color: #5C5030;
    --primary-dark: #3D3522;
    --primary-light: #7A6B45;
    --accent-color: #D4AF37;
    --accent-light: #E8C547;
    --accent-gold: #D4AF37;
    --accent-rose-gold: #B76E79;
    --text-dark: #2C2416;
    --text-color: #4A4235;
    --text-light: #6B6050;
    --text-muted: #8A8070;
    --bg-light: #FAF8F5;
    --bg-cream: #F5F2EC;
    --bg-white: #FFFFFF;
    --bg-dark: #2D2518;
    --border-color: #E5E0D5;
    --border-dark: #D5CFC2;
    --success-color: #4A7C59;
    --star-color: #F4B942;
    --white: #FFFFFF;
    --black: #000000;
    --shadow-sm: 0 2px 4px rgba(44, 36, 22, 0.06);
    --shadow-md: 0 4px 12px rgba(44, 36, 22, 0.08);
    --shadow-lg: 0 8px 24px rgba(44, 36, 22, 0.12);
    --shadow-xl: 0 12px 40px rgba(44, 36, 22, 0.16);
    --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.3);
    --font-primary: 'Poppins', sans-serif;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-full: 50px;
}

/* ====== RESET & BASE ====== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

a:hover {
    color: var(--accent-gold);
}

ul, ol { list-style: none; }

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    outline: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 0.5em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.125rem, 2vw, 1.375rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ====== UTILITY CLASSES ====== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.bg-light { background-color: var(--bg-cream); }
.bg-pattern {
    background-image: url('../images/luxury_dental_abstract_background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

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

/* ====== ANIMATED BACKGROUNDS ====== */
.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--accent-gold);
    top: 10%;
    left: 5%;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--primary-color);
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--accent-rose-gold);
    bottom: 20%;
    left: 15%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -20px) rotate(90deg); }
    50% { transform: translate(-20px, 20px) rotate(180deg); }
    75% { transform: translate(20px, 20px) rotate(270deg); }
}

.gradient-bg {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color), var(--primary-light));
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ====== LUXURY BUTTONS ====== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-full);
    transition: all var(--transition-normal);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

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

.btn:hover::before { left: 100%; }

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(92, 80, 48, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-gold), var(--primary-color));
    border-color: var(--accent-gold);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
    transform: translateY(-3px);
}

.btn-white {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

.btn-white:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}

.btn-gold {
    background: linear-gradient(135deg, var(--accent-gold), #B8860B);
    color: var(--white);
    border-color: var(--accent-gold);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

/* ====== SECTION TITLE ====== */
.section-title {
    margin-bottom: 50px;
}

.section-title .subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold);
    margin-bottom: 12px;
}

.section-title .subtitle i {
    font-size: 12px;
    color: var(--accent-gold);
    animation: pulse 2s infinite;
}

.section-title h2 {
    margin-bottom: 15px;
    background: linear-gradient(135deg, #616161, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title h2 span { color: var(--accent-gold); }

.section-title p {
    font-size: 17px;
    color: var(--text-light);
    max-width: 650px;
}

.section-title.text-center p {
    margin-left: auto;
    margin-right: auto;
}

/* ====== PRELOADER ====== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s, visibility 0.5s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader { text-align: center; }

.tooth-icon {
    width: 80px;
    height: 80px;
    border: 3px solid rgba(255,255,255,0.2);
    border-top-color: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: spin 1s linear infinite;
}

.tooth-icon i {
    font-size: 32px;
    color: var(--accent-gold);
    animation: pulse 1s ease-in-out infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

/* ====== HEADER ====== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg-white);
    transition: all var(--transition-normal);
}

.main-header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.header-top {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 10px 0;
}

.header-top-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.contact-info {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.contact-info a {
    color: rgba(255,255,255,0.9);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.contact-info a:hover {
    color: var(--accent-gold);
    transform: translateX(3px);
}

.contact-info a i { color: var(--accent-gold); }

.timing-info {
    color: rgba(255,255,255,0.9);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.timing-info i { color: var(--accent-gold); }

.navbar {
    padding: 15px 0;
    background: var(--bg-white);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s;
}

.logo:hover { transform: scale(1.05); }

.logo img {
    height: 55px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text .logo-name {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: 1px;
}

.logo-text .logo-tagline {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-gold);
    letter-spacing: 2px;
}

.nav-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-links > li { position: relative; }

.nav-links > li > a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
    transition: all 0.3s;
}

.nav-links > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-gold));
    transition: width 0.3s;
}

.nav-links > li > a:hover::after,
.nav-links > li > a.active::after { width: 100%; }

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

.nav-links > li > a i {
    font-size: 10px;
    transition: transform 0.3s;
}

.nav-links > li:hover > a i { transform: rotate(180deg); }

.dropdown {
    position: absolute;
    top: 100%;
    left: -20px;
    min-width: 220px;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px) perspective(1000px) rotateX(-10deg);
    transition: all 0.3s;
    z-index: 100;
    border-top: 3px solid var(--accent-gold);
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px) perspective(1000px) rotateX(0deg);
}

.dropdown li a {
    display: block;
    padding: 10px 25px;
    font-size: 14px;
    color: var(--text-color);
    transition: all 0.3s;
}

.dropdown li a:hover {
    background: var(--bg-cream);
    color: var(--accent-gold);
    padding-left: 30px;
}

.header-btn {
    padding: 12px 28px;
    font-size: 13px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s;
}

.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ====== LUXURY HERO SECTION WITH SPLIT LAYOUT ====== */
.hero {
    position: relative;
    min-height: 100vh;
    margin-top: 110px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-dark) 100%);
}

.hero-slider {
    position: relative;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: calc(100vh - 110px);
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
}

.hero-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: calc(100vh - 110px);
    padding: 60px 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-right: 40px;
}

.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-gold);
    margin-bottom: 20px;
    animation: slideInLeft 1s ease;
}

.hero-tagline::before {
    content: '';
    width: 45px;
    height: 2px;
    background: var(--accent-gold);
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.2;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-content h1 span {
    color: var(--accent-gold);
    display: block;
}

.hero-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 35px;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-image-wrapper {
    position: relative;
    animation: fadeInRight 1s ease 0.5s both;
}

.hero-image-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.hero-image-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.hero-image-float {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 200px;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 4px solid var(--accent-gold);
    animation: float 4s ease-in-out infinite;
}

.hero-image-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-stats {
    position: absolute;
    top: 30px;
    right: -20px;
    background: linear-gradient(135deg, var(--accent-gold), #B8860B);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    color: var(--white);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
    animation: float 3s ease-in-out infinite reverse;
}

.hero-stats .stat-number {
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}

.hero-stats .stat-text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

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

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

.google-rating {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    padding: 20px 25px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.15);
    animation: fadeInUp 1s ease 0.8s both;
}

.rating-stars {
    display: flex;
    gap: 3px;
}

.rating-stars i {
    color: var(--star-color);
    font-size: 16px;
}

.rating-text {
    color: var(--white);
    font-size: 15px;
}

.rating-text strong {
    color: var(--accent-gold);
    font-size: 18px;
}

.rating-count {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
}

.hero-pagination {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-pagination .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s;
}

.hero-pagination .dot:hover { background: rgba(255,255,255,0.6); transform: scale(1.1); }
.hero-pagination .dot.active { background: var(--accent-gold); transform: scale(1.3); }

/* ====== CTA BOX ====== */
.cta-box {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 0;
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 50px rgba(0,0,0,0.2);
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.cta-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 35px 30px;
    border-right: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s;
}

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

.cta-item:hover {
    background: rgba(255,255,255,0.05);
    transform: translateY(-5px);
}

.cta-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.5s;
}

.cta-item:hover .cta-icon {
    background: var(--accent-gold);
    transform: rotateY(360deg);
}

.cta-icon i {
    font-size: 24px;
    color: var(--accent-gold);
    transition: color 0.3s;
}

.cta-item:hover .cta-icon i { color: var(--white); }

.cta-content h4 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 5px;
}

.cta-content p {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2px;
}

.cta-content p a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s;
}

.cta-content p a:hover { color: var(--accent-gold); }

/* ====== ABOUT SECTION - REDESIGNED ====== */
.about-section {
    background: var(--bg-cream);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/luxury_dental_abstract_background.png') center/cover no-repeat;
    opacity: 0.05;
}

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

.about-image-wrapper {
    position: relative;
    padding: 40px;
}

.about-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.about-main-image {
    position: relative;
    z-index: 2;
    margin-left: auto;
    width: 85%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    transform: translateY(40px);
}

.about-main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.experience-circle {
    position: absolute;
    bottom: -20px;
    left: 20px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-gold), #B8860B);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    z-index: 3;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
    animation: pulse 3s ease-in-out infinite;
    border: 4px solid var(--white);
}

.experience-circle .years {
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
}

.experience-circle .plus {
    font-size: 24px;
    font-weight: 700;
}

.experience-circle .text {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    margin-top: 5px;
}

.about-content {
    position: relative;
    z-index: 2;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
}

.about-features .feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    padding: 12px 15px;
    border-radius: var(--radius-md);
    background: var(--bg-white);
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
}

.about-features .feature:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.about-features .feature:hover i { color: var(--accent-gold); }

.about-features .feature i {
    color: var(--accent-gold);
    font-size: 18px;
    transition: color 0.3s;
}

/* ====== WHY CHOOSE US ====== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.5s;
    border: 1px solid var(--border-color);
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-gold));
    transform: scaleX(0);
    transition: transform 0.5s;
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    border-color: transparent;
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bg-cream), var(--bg-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.5s;
    box-shadow: var(--shadow-sm);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-gold));
    transform: rotateY(360deg) scale(1.1);
    box-shadow: var(--shadow-gold);
}

.feature-icon i {
    font-size: 32px;
    color: var(--primary-color);
    transition: color 0.5s;
}

.feature-card:hover .feature-icon i { color: var(--white); }

.feature-card h4 {
    margin-bottom: 12px;
    transition: color 0.3s;
}

.feature-card:hover h4 { color: var(--primary-color); }

.feature-card p {
    font-size: 15px;
    color: var(--text-light);
}

/* ====== SERVICES WITH IMAGE HOVER ====== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-card {
    background: var(--bg-white);
    padding: 0;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    position: relative;
    transition: all 0.5s;
    overflow: hidden;
    min-height: 380px;
}

.service-card-inner {
    padding: 35px 25px;
    position: relative;
    z-index: 2;
    transition: all 0.5s;
    min-height: 380px;
    display: flex;
    flex-direction: column;
}

.service-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 1;
}

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

.service-card-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(45, 37, 24, 0.95) 0%, rgba(45, 37, 24, 0.7) 50%, rgba(45, 37, 24, 0.4) 100%);
}

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

.service-card:hover .service-card-inner {
    color: var(--white);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
    border-color: var(--accent-gold);
}

.service-card.featured {
    border-color: var(--accent-gold);
    background: linear-gradient(135deg, var(--bg-white), var(--bg-cream));
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--accent-gold), #B8860B);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 3;
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bg-cream), var(--bg-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.5s;
    box-shadow: var(--shadow-sm);
}

.service-card:hover .service-icon {
    background: var(--accent-gold);
    transform: rotateY(360deg);
}

.service-icon i {
    font-size: 28px;
    color: var(--primary-color);
    transition: color 0.5s;
}

.service-card:hover .service-icon i { color: var(--white); }

.service-card h4 {
    font-size: 18px;
    margin-bottom: 12px;
    transition: color 0.3s;
    text-align: center;
}

.service-card:hover h4 { color: var(--white); }

.service-card p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
    transition: color 0.3s;
    text-align: center;
    flex-grow: 1;
}

.service-card:hover p { color: rgba(255,255,255,0.85); }

.service-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-gold);
    transition: all 0.3s;
    text-align: center;
    width: 100%;
}

.service-card:hover .service-link { color: var(--accent-gold); }

.service-link i { transition: transform 0.3s; }
.service-link:hover i { transform: translateX(5px); }

.section-btn {
    text-align: center;
    margin-top: 50px;
}

/* ====== DOCTORS SECTION ====== */
.doctors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.doctor-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.5s;
    border: 1px solid var(--border-color);
}

.doctor-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    border-color: var(--accent-gold);
}

.doctor-image {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.doctor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.doctor-card:hover .doctor-image img { transform: scale(1.1); }

.doctor-info { padding: 30px; }

.doctor-info h3 {
    margin-bottom: 8px;
    color: var(--text-dark);
}

.designation {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.qualifications { margin-bottom: 15px; }

.qualifications p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 5px;
}

.expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.expertise span {
    background: linear-gradient(135deg, var(--bg-cream), var(--bg-light));
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s;
}

.expertise span:hover {
    background: linear-gradient(135deg, var(--accent-gold), #B8860B);
    color: var(--white);
    transform: translateY(-2px);
}

.doctor-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ====== GALLERY ====== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    height: 250px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
    z-index: 10;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.5s;
}

.gallery-item:hover .gallery-overlay { transform: translateY(0); }

.gallery-overlay h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 5px;
}

.gallery-overlay p {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

/* ====== SOCIAL MEDIA SECTION ====== */
.social-section {
    background: var(--bg-cream);
    position: relative;
}

.social-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.social-tab {
    padding: 15px 35px;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-full);
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-tab:hover,
.social-tab.active {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-gold));
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.social-tab i { font-size: 20px; }

.social-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.social-item {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 9/16;
    position: relative;
    box-shadow: var(--shadow-md);
    transition: all 0.5s;
    cursor: pointer;
}

.social-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.social-item iframe,
.social-item .video-placeholder {
    width: 100%;
    height: 100%;
    border: none;
}

.video-placeholder {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.video-placeholder i {
    font-size: 40px;
    margin-bottom: 10px;
    color: var(--accent-gold);
}

.video-placeholder span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-item-youtube {
    aspect-ratio: 16/9;
}

.youtube-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.youtube-item {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.5s;
}

.youtube-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.youtube-thumbnail {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.youtube-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.youtube-thumbnail .play-btn {
    position: absolute;
    width: 70px;
    height: 70px;
    background: rgba(255,0,0,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    transition: all 0.3s;
}

.youtube-item:hover .play-btn {
    transform: scale(1.2);
    background: #ff0000;
}

.youtube-info {
    padding: 20px;
}

.youtube-info h5 {
    font-size: 14px;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.youtube-info p {
    font-size: 12px;
    color: var(--text-light);
}

/* ====== MAP SECTION ====== */
.map-section {
    padding: 0;
    position: relative;
}

.map-container {
    position: relative;
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(20%);
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    max-width: 400px;
    border-left: 4px solid var(--accent-gold);
}

.map-overlay h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.map-overlay .contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.map-overlay .contact-item i {
    color: var(--accent-gold);
    font-size: 18px;
    margin-top: 3px;
}

.map-overlay .contact-item p {
    margin: 0;
    color: var(--text-color);
    font-size: 14px;
}

/* ====== SMILE JOURNEY SECTION ====== */
.journey-section {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-dark) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.journey-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.journey-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    position: relative;
}

.journey-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 30px 20px;
}

.journey-step::after {
    content: '';
    position: absolute;
    top: 60px;
    right: -50%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), transparent);
}

.journey-step:last-child::after { display: none; }

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-gold), #B8860B);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(212,175,55,0.4);
    transition: all 0.5s;
}

.journey-step:hover .step-number {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 15px 40px rgba(212,175,55,0.6);
}

.journey-step h4 {
    color: var(--white);
    margin-bottom: 12px;
    font-size: 18px;
}

.journey-step p {
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    line-height: 1.6;
}

/* ====== EXCELLENCE SECTION ====== */
.excellence-section {
    background: var(--bg-cream);
    position: relative;
}

.excellence-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.excellence-card {
    background: var(--bg-white);
    padding: 40px 25px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.5s;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.excellence-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-gold));
    opacity: 0;
    transition: opacity 0.5s;
}

.excellence-card:hover::before { opacity: 1; }

.excellence-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-color: transparent;
}

.excellence-card > * { position: relative; z-index: 2; }

.excellence-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bg-cream), var(--bg-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.5s;
}

.excellence-card:hover .excellence-icon {
    background: rgba(255,255,255,0.2);
}

.excellence-icon i {
    font-size: 36px;
    color: var(--accent-gold);
    transition: color 0.3s;
}

.excellence-card:hover .excellence-icon i { color: var(--white); }

.excellence-card h3 {
    font-size: 32px;
    margin-bottom: 5px;
    color: var(--primary-color);
    transition: color 0.3s;
}

.excellence-card:hover h3 { color: var(--white); }

.excellence-card p {
    font-size: 14px;
    color: var(--text-light);
    transition: color 0.3s;
}

.excellence-card:hover p { color: rgba(255,255,255,0.9); }

/* ====== TESTIMONIALS ====== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.5s;
    border: 1px solid var(--border-color);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 80px;
    font-family: Georgia, serif;
    color: var(--accent-gold);
    opacity: 0.2;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
    border-color: var(--accent-gold);
}

.stars {
    display: flex;
    gap: 3px;
    margin-bottom: 20px;
}

.stars i {
    color: var(--star-color);
    font-size: 16px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

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

.client-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-gold), #B8860B);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
}

.client-name h5 {
    font-size: 16px;
    margin-bottom: 3px;
    color: var(--text-dark);
}

.client-name span {
    font-size: 13px;
    color: var(--text-light);
}

/* ====== CTA SECTION ====== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, transparent 70%);
    top: -250px;
    right: -100px;
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    bottom: -150px;
    left: -50px;
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 15px;
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    margin-bottom: 35px;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ====== FOOTER ====== */
.main-footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.8);
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

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

.footer-logo .logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo .logo-text span {
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 1px;
}

.footer-logo .logo-text span:last-child {
    color: var(--accent-gold);
}

.footer-about p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.footer-about .tagline {
    color: var(--accent-gold);
    font-style: italic;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--accent-gold);
    transform: translateY(-3px) rotate(360deg);
}

.footer-col h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

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

.footer-links li { margin-bottom: 10px; }

.footer-links li a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: all 0.3s;
    display: inline-block;
}

.footer-links li a:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
}

.footer-contact li i {
    color: var(--accent-gold);
    font-size: 16px;
    margin-top: 3px;
}

.footer-contact a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s;
}

.footer-contact a:hover { color: var(--accent-gold); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 25px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

/* ====== BACK TO TOP ====== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-gold));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

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

/*.whatsapp-float2 {*/
/*    position: fixed;*/
/*    bottom: 120px;*/
/*    right: 30px;*/
/*    width: 40px;*/
/*    height: 40px;*/
/*    background: #GOLD;*/
/*    color: var(--white);*/
/*    border-radius: 50%;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    font-size: 30px;*/
/*    z-index: 999;*/
/*    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);*/
/*    animation: pulse 2s infinite;*/
/*}*/

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

/* ====== CONTACT FORM ====== */
.contact-form {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.form-group { margin-bottom: 25px; }

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 15px;
    transition: all 0.3s;
    background: var(--bg-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    background: var(--bg-white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ====== PAGE BANNER ====== */
.page-banner {
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    margin-top: 110px;
    background-size: cover !important;
    background-position: center !important;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 37, 24, 0.35), rgba(92, 80, 48, 0.3));
}

.banner-content {
    position: relative;
    z-index: 2;
}

.banner-content h1 {
    color: var(--white);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 20px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.breadcrumb a {
    color: rgba(255,255,255,0.8);
}

.breadcrumb a:hover { color: var(--accent-gold); }

.breadcrumb span { color: var(--accent-gold); }

/* ====== SERVICE PAGE STYLES ====== */
.service-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-dark), var(--primary-dark));
    position: relative;
    overflow: hidden;
}

.service-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-hero-content h1 {
    color: var(--white);
    margin-bottom: 20px;
}

.service-hero-content p {
    color: rgba(255,255,255,0.85);
    font-size: 18px;
    line-height: 1.8;
}

.service-hero-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.service-hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Service Steps with Arrows */
.steps-section {
    background: var(--bg-cream);
    padding: 80px 0;
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    position: relative;
}

.step-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    position: relative;
    transition: all 0.5s;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.step-card::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -35px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 20px solid var(--accent-gold);
    z-index: 10;
}

.step-card:last-child::after { display: none; }

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border-color: var(--accent-gold);
}

.step-number-badge {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-gold), #B8860B);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(212,175,55,0.4);
}

.step-card h4 {
    margin-bottom: 12px;
    color: var(--primary-color);
}

.step-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* Service Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background: var(--bg-white);
    padding: 35px 25px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.5s;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-gold));
    transform: scaleX(0);
    transition: transform 0.5s;
}

.benefit-card:hover::before { transform: scaleX(1); }

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bg-cream), var(--bg-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.5s;
}

.benefit-card:hover .benefit-icon {
    background: linear-gradient(135deg, var(--accent-gold), #B8860B);
    transform: scale(1.1);
}

.benefit-icon i {
    font-size: 28px;
    color: var(--accent-gold);
    transition: color 0.3s;
}

.benefit-card:hover .benefit-icon i { color: var(--white); }

.benefit-card h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.benefit-card p {
    font-size: 14px;
    color: var(--text-light);
}

/* FAQ Styles */
.faq-item {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-gold);
}

.faq-question {
    padding: 25px;
    background: var(--bg-white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 16px;
}

.faq-question:hover {
    background: var(--bg-cream);
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-gold));
    color: var(--white);
}

.faq-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-cream);
    transition: all 0.3s;
    flex-shrink: 0;
    margin-left: 20px;
    color: var(--text-dark);
}

.faq-item.active .faq-icon {
    background: rgba(255,255,255,0.2);
    color: var(--white);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer { max-height: 600px; }

.faq-content {
    padding: 30px 25px;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 15px;
    background: var(--bg-white);
    border-top: 1px solid var(--border-color);
}

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

@media (max-width: 991px) {
    .navbar .container { flex-wrap: wrap; }
    
    .mobile-toggle {
        display: flex;
        order: 3;
    }
    
    .header-btn { order: 2; }
    
    .nav-menu {
        order: 4;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s;
    }
    
    .nav-menu.active { max-height: 500px; }
    
    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 0;
        padding: 20px 0;
    }
    
    .nav-links > li { width: 100%; }
    .nav-links > li > a { padding: 12px 0; }
    
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 10px 0 10px 20px;
        max-height: 0;
        overflow: hidden;
        border-top: none;
    }
    
    .has-dropdown.active .dropdown { max-height: 500px; }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content { padding-right: 0; }
    .hero-image-wrapper { max-width: 500px; margin: 0 auto; }
    
    .cta-grid { grid-template-columns: 1fr; }
    
    .cta-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .cta-item:last-child { border-bottom: none; }
    
    .about-grid,
    .doctors-grid,
    .service-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image-wrapper { max-width: 500px; margin: 0 auto; }
    
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .youtube-grid { grid-template-columns: repeat(2, 1fr); }
    .social-grid { grid-template-columns: repeat(3, 1fr); }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .journey-steps { flex-wrap: wrap; }
    .journey-step::after { display: none; }
    
    .map-overlay {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        max-width: 100%;
        margin: -50px 20px 0;
    }
    
    .step-card::after { display: none; }
}

@media (max-width: 767px) {
    .header-top-content {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero { margin-top: 90px; }
    
    .hero-content { padding: 40px 0; }
    
    .hero-btns { flex-direction: column; }
    
    .btn { width: 100%; }
    
    .about-features { grid-template-columns: 1fr; }
    
    .features-grid,
    .services-grid,
    .benefits-grid { grid-template-columns: 1fr; }
    
    .excellence-grid { grid-template-columns: 1fr; }
    
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    
    .social-grid { grid-template-columns: repeat(2, 1fr); }
    .youtube-grid { grid-template-columns: 1fr; }
    
    .footer-grid { grid-template-columns: 1fr; }
    
    .social-tabs {
        flex-direction: column;
        gap: 10px;
    }
    
    .social-tab { width: 100%; justify-content: center; }
    
    .steps-container { flex-direction: column; align-items: center; }
    .step-card { max-width: 100%; }
}

@media (max-width: 480px) {
    .container { padding: 0 15px; }
    .section { padding: 60px 0; }
    
    .hero-stats {
        top: auto;
        bottom: -20px;
        right: 20px;
        padding: 15px;
    }
    
    .hero-stats .stat-number { font-size: 28px; }
    
    .hero-image-float {
        width: 120px;
        height: 120px;
        bottom: -15px;
        left: -15px;
    }
    
    .experience-circle {
        width: 100px;
        height: 100px;
    }
    
    .experience-circle .years { font-size: 32px; }
    
    .gallery-grid { grid-template-columns: 1fr; }
    
    .social-grid { grid-template-columns: 1fr; }
}
