/* ============================================
   HealthPlus - Modern Gradient Medical Website
   Unique UI Design Different from Medical1
   ============================================ */

/* CSS Variables - Purple/Teal Gradient Theme */
:root {
    --primary: #7c3aed;
    --primary-dark: #6d28d9;
    --secondary: #06b6d4;
    --accent: #f59e0b;
    --gradient: linear-gradient(135deg, #7c3aed 0%, #06b6d4 100%);
    --gradient-reverse: linear-gradient(135deg, #06b6d4 0%, #7c3aed 100%);
    --gradient-soft: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);

    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-dark: #0f172a;
    --bg-darker: #020617;

    --text-dark: #1e293b;
    --text-body: #475569;
    --text-muted: #94a3b8;
    --text-light: #f1f5f9;

    --border: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 25px 60px rgba(0,0,0,0.15);
    --shadow-gradient: 0 10px 40px rgba(124, 58, 237, 0.3);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 9999px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-body);
    background: var(--bg-primary);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

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

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

ul { list-style: none; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Gradient Text */
.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   Preloader
   ============================================ */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: var(--transition-slow);
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader .pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--gradient);
    animation: pulse 1.5s ease-out infinite;
}

.loader i {
    font-size: 28px;
    color: var(--primary);
    z-index: 1;
}

@keyframes pulse {
    0% { transform: scale(0.5); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.btn-gradient {
    background: var(--gradient);
    color: white;
    box-shadow: var(--shadow-gradient);
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(124, 58, 237, 0.4);
}

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

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

.btn-lg {
    padding: 18px 36px;
    font-size: 16px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ============================================
   Header
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.header.scrolled {
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-sm);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.nav {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-body);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
}

.header-phone i {
    width: 40px;
    height: 40px;
    background: var(--gradient-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #f8fafc 0%, #ede9fe 50%, #e0f2fe 100%);
    padding-top: 80px;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: calc(100vh - 80px);
    padding: 60px 0 120px;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
    box-shadow: var(--shadow-md);
    margin-bottom: 25px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-text h1 {
    font-size: 58px;
    margin-bottom: 25px;
    line-height: 1.15;
}

.hero-small {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-body);
    margin-bottom: 5px;
}

.hero-text > p {
    font-size: 18px;
    color: var(--text-body);
    margin-bottom: 35px;
    max-width: 520px;
}

.hero-cta {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 20px;
}

.trust-avatars {
    display: flex;
}

.trust-avatars img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 3px solid white;
    margin-left: -12px;
    object-fit: cover;
}

.trust-avatars img:first-child {
    margin-left: 0;
}

.avatar-more {
    width: 45px;
    height: 45px;
    background: var(--gradient);
    border-radius: 50%;
    border: 3px solid white;
    margin-left: -12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: 600;
}

.trust-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 5px;
}

.trust-rating i {
    color: var(--accent);
    font-size: 14px;
}

.trust-rating span {
    font-weight: 700;
    color: var(--text-dark);
    margin-left: 5px;
}

.trust-text p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.hero-blob {
    position: absolute;
    width: 450px;
    height: 450px;
    background: var(--gradient);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: blob 8s ease-in-out infinite;
    opacity: 0.15;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes blob {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
}

.hero-image {
    position: relative;
    width: 380px;
    height: 380px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 30px 80px rgba(124, 58, 237, 0.3);
}

.hero-image i {
    font-size: 160px;
    color: white;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 16px 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 14px;
    animation: float 4s ease-in-out infinite;
}

.floating-card.fc-1 {
    top: 20px;
    left: -30px;
    animation-delay: 0s;
}

.floating-card.fc-2 {
    top: 50%;
    right: -50px;
    animation-delay: 1s;
}

.floating-card.fc-3 {
    bottom: 40px;
    left: 0;
    animation-delay: 2s;
}

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

.fc-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
}

.fc-icon.green { background: linear-gradient(135deg, #10b981, #059669); }
.fc-icon.purple { background: var(--gradient); }
.fc-icon.orange { background: linear-gradient(135deg, #f59e0b, #d97706); }

.fc-text span {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
}

.fc-text strong {
    font-size: 16px;
    color: var(--text-dark);
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: auto;
}

/* ============================================
   Stats Bar
   ============================================ */
.stats-bar {
    background: white;
    padding: 60px 0;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

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

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.stat-item:hover {
    background: white;
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-soft);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
}

.stat-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-content p {
    color: var(--text-muted);
    font-size: 14px;
}

/* ============================================
   Section Styling
   ============================================ */
.section-tag {
    display: inline-block;
    background: var(--gradient-soft);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-title {
    font-size: 44px;
    margin-bottom: 20px;
}

.section-desc {
    font-size: 18px;
    color: var(--text-body);
    max-width: 600px;
}

.section-header {
    margin-bottom: 60px;
}

.section-header.centered {
    text-align: center;
}

.section-header.centered .section-desc {
    margin: 0 auto;
}

.section-header.light .section-title,
.section-header.light .section-desc {
    color: white;
}

.section-header.light .section-desc {
    opacity: 0.9;
}

/* ============================================
   About Section
   ============================================ */
.about {
    padding: 120px 0;
    background: white;
}

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

.about-images {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-img-1,
.about-img-2 {
    height: 280px;
    background: var(--gradient-soft);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: var(--primary);
    opacity: 0.5;
}

.about-img-1 {
    margin-top: 40px;
}

.experience-box {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    padding: 25px 40px;
    border-radius: var(--radius-xl);
    text-align: center;
    color: white;
    box-shadow: var(--shadow-gradient);
}

.exp-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
}

.exp-text {
    font-size: 14px;
    opacity: 0.9;
}

.about-features {
    margin: 35px 0;
}

.about-feature {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.about-feature .feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-soft);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    flex-shrink: 0;
}

.about-feature .feature-content h4 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.about-feature .feature-content p {
    color: var(--text-muted);
    font-size: 14px;
}

/* ============================================
   Services Section
   ============================================ */
.services {
    padding: 120px 0;
    background: var(--bg-secondary);
}

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

.service-card {
    background: white;
    padding: 40px 35px;
    border-radius: var(--radius-xl);
    position: relative;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.service-card.featured {
    background: var(--gradient);
    color: white;
    border-color: transparent;
}

.service-card.featured h3,
.service-card.featured p,
.service-card.featured .service-list li {
    color: white;
}

.service-card.featured .service-list li i {
    color: rgba(255,255,255,0.8);
}

.service-card.featured .service-link {
    color: white;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: white;
    padding: 5px 15px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 25px;
}

.service-icon.gradient-bg {
    background: var(--gradient);
    color: white;
}

.service-card.featured .service-icon {
    background: rgba(255,255,255,0.2);
}

.service-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card > p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-list {
    margin-bottom: 25px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
}

.service-list li i {
    color: var(--primary);
    font-size: 12px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--primary);
}

.service-link:hover {
    gap: 12px;
}

.services-cta {
    text-align: center;
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.services-cta p {
    color: var(--text-muted);
}

/* ============================================
   Specialists Section
   ============================================ */
.specialists {
    padding: 120px 0;
    position: relative;
    background: var(--bg-dark);
}

.specialists-bg {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.specialists-slider {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    position: relative;
    z-index: 1;
}

.specialist-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.specialist-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}

.specialist-image {
    height: 200px;
    background: var(--gradient-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.specialist-image i {
    font-size: 80px;
    color: var(--primary);
    opacity: 0.3;
}

.specialist-social {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    gap: 8px;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

.specialist-card:hover .specialist-social {
    opacity: 1;
    transform: translateY(0);
}

.specialist-social a {
    width: 35px;
    height: 35px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 14px;
}

.specialist-social a:hover {
    background: var(--primary);
    color: white;
}

.specialist-info {
    padding: 25px;
    color: white;
}

.specialist-info h4 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 5px;
}

.specialist-role {
    color: var(--secondary);
    font-size: 14px;
    font-weight: 500;
}

.specialist-info > p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 15px 0;
    line-height: 1.6;
}

.specialist-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.sp-stat {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-muted);
}

.sp-stat i {
    color: var(--accent);
}

/* ============================================
   Appointment Section
   ============================================ */
.appointment {
    padding: 120px 0;
    background: white;
}

.appointment-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.appointment-info .section-title {
    font-size: 38px;
}

.appointment-info > p {
    margin-bottom: 30px;
}

.appointment-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 40px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

.benefit i {
    color: var(--primary);
    font-size: 16px;
}

.contact-quick {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cq-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cq-icon {
    width: 55px;
    height: 55px;
    background: var(--gradient);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.cq-text span {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
}

.cq-text strong {
    font-size: 16px;
    color: var(--text-dark);
}

/* Appointment Form */
.appointment-form-wrapper {
    background: var(--bg-secondary);
    padding: 45px;
    border-radius: var(--radius-xl);
}

.appointment-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.appointment-form .form-group {
    margin-bottom: 0;
}

.appointment-form .form-group:last-of-type {
    margin-bottom: 20px;
}

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

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 16px;
}

.input-wrapper.textarea i {
    top: 20px;
    transform: none;
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea {
    width: 100%;
    padding: 16px 18px 16px 50px;
    background: white;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 15px;
    color: var(--text-dark);
    transition: var(--transition);
}

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

.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.1);
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials {
    padding: 120px 0;
    background: var(--bg-secondary);
}

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

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-xl);
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.testimonial-card.featured {
    background: var(--gradient);
    color: white;
}

.testimonial-card.featured .testimonial-text,
.testimonial-card.featured .author-info h5 {
    color: white;
}

.testimonial-card.featured .author-info span,
.testimonial-card.featured .testimonial-badge i {
    color: rgba(255,255,255,0.7);
}

.testimonial-rating {
    margin-bottom: 20px;
}

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

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

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

.testimonial-author img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h5 {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 3px;
}

.author-info span {
    font-size: 13px;
    color: var(--text-muted);
}

.testimonial-badge {
    position: absolute;
    top: 30px;
    right: 30px;
}

.testimonial-badge i {
    font-size: 40px;
    color: var(--border);
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
    padding: 120px 0;
    background: white;
}

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

.contact-info-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-card {
    background: var(--bg-secondary);
    padding: 30px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.contact-card:hover {
    background: white;
    box-shadow: var(--shadow-lg);
}

.cc-icon {
    width: 55px;
    height: 55px;
    background: var(--gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    margin-bottom: 20px;
}

.contact-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.7;
}

.contact-map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--bg-secondary);
}

.map-placeholder {
    height: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.map-placeholder i {
    font-size: 60px;
    color: var(--primary);
    opacity: 0.3;
}

.map-placeholder p {
    color: var(--text-muted);
    font-size: 16px;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--bg-dark);
    color: var(--text-light);
}

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

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
}

.brand-col > p {
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 12px;
}

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

.footer-social a:hover {
    background: var(--gradient);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 25px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    color: var(--text-muted);
    font-size: 15px;
}

.footer-col ul a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-col > p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
}

.newsletter-form {
    margin-bottom: 20px;
}

.newsletter-input {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.newsletter-input input {
    flex: 1;
    padding: 14px 20px;
    background: transparent;
    border: none;
    color: white;
    font-size: 14px;
}

.newsletter-input input::placeholder {
    color: var(--text-muted);
}

.newsletter-input button {
    padding: 14px 20px;
    background: var(--gradient);
    border: none;
    color: white;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-input button:hover {
    opacity: 0.9;
}

.footer-badges {
    display: flex;
    gap: 15px;
}

.footer-badges span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-muted);
}

.footer-badges span i {
    color: var(--secondary);
}

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

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

.footer-bottom p {
    color: var(--text-muted);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--secondary);
}

/* ============================================
   Back to Top
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: var(--shadow-gradient);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

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

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1200px) {
    .hero-text h1 {
        font-size: 48px;
    }

    .section-title {
        font-size: 38px;
    }

    .specialists-slider {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-150%);
        transition: var(--transition);
    }

    .nav.active {
        transform: translateY(0);
    }

    .mobile-toggle {
        display: flex;
    }

    .header-phone {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text > p {
        margin: 0 auto 35px;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .hero-image {
        width: 300px;
        height: 300px;
    }

    .hero-image i {
        font-size: 120px;
    }

    .floating-card {
        display: none;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .appointment-wrapper {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-container {
        height: 70px;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .section-title {
        font-size: 30px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .specialists-slider {
        grid-template-columns: 1fr;
    }

    .appointment-form .form-row {
        grid-template-columns: 1fr;
    }

    .appointment-benefits {
        grid-template-columns: 1fr;
    }

    .contact-info-cards {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-text h1 {
        font-size: 30px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn-lg {
        padding: 14px 28px;
        width: 100%;
        justify-content: center;
    }

    .appointment-form-wrapper {
        padding: 25px;
    }
}
