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

:root {
    --primary: #874487;
    --secondary: #583F74;
    --accent: #1A9849;
    --white: #ffffff;
    --light-bg: #f9f5f9;
    --text-dark: #2d2d2d;
    --text-gray: #666666;
    --shadow: 0 10px 40px rgba(135, 68, 135, 0.15);
    --shadow-hover: 0 15px 50px rgba(135, 68, 135, 0.25);
}

html {
    scroll-behavior: smooth;
    width: 100%;
    height: 100%;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    min-height: 100vh;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 80px;
    width: 100%;
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--white);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 20px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    height: 50px;
}

.logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 45px;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-menu a:hover {
    color: var(--primary);
}

.nav-menu a:hover::after {
    width: 100%;
}

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

.phone-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: transform 0.3s;
}

.phone-btn:hover {
    transform: scale(1.05);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(135, 68, 135, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(135, 68, 135, 0.4);
}

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

.mobile-menu-btn span {
    width: 28px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    width: 100vw;
    height: 100vh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(135, 68, 135, 0.4) 40%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
}

.hero-content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-content {
    max-width: 750px;
    width: 100%;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 30px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: slideInLeft 1s ease;
}

.hero-title {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 25px;
    color: var(--white);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
    animation: slideInLeft 1s ease 0.2s both;
}

.gradient-text {
    color: var(--white);
    text-shadow: 0 0 30px rgba(26, 152, 73, 0.8);
}

.hero-subtitle {
    font-size: 22px;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.8);
    animation: slideInLeft 1s ease 0.4s both;
}

.hero-description {
    font-size: 16px;
    color: var(--white);
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 600px;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.8);
    animation: slideInLeft 1s ease 0.6s both;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    max-width: 650px;
    animation: slideInLeft 1s ease 0.8s both;
}

.stat-card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    padding: 25px 20px;
    border-radius: 18px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.stat-number {
    font-size: 42px;
    font-weight: 900;
    color: var(--white);
    display: block;
    margin-bottom: 8px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
}

.stat-label {
    font-size: 14px;
    color: var(--white);
    font-weight: 600;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: slideInLeft 1s ease 1s both;
}

.btn-large {
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
}

.btn-outline {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 3px solid var(--white);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 30px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.slider-btn svg {
    stroke: var(--white);
}

.slider-dots {
    display: flex;
    gap: 12px;
}

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

.dot.active {
    background: var(--white);
    width: 40px;
    border-radius: 6px;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

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

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

/* Section Styles */
.section-header {
    margin-bottom: 60px;
}

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

.section-tag {
    display: inline-block;
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.highlight {
    color: var(--primary);
}

.section-description {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    padding: 120px 0;
    background: var(--white);
    width: 100%;
}

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

.lead-text {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.6;
}

.about-content p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.9;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background: var(--light-bg);
    border-radius: 15px;
    transition: all 0.3s;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    stroke: var(--white);
}

.feature-text h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.feature-text p {
    font-size: 15px;
    color: var(--text-gray);
    margin: 0;
}

.about-image-card {
    position: relative;
    height: 600px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.image-placeholder-large {
    opacity: 0.3;
}

.image-badge {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    padding: 30px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
}

.badge-number {
    display: block;
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 5px;
}

.badge-text {
    display: block;
    font-size: 16px;
    font-weight: 600;
}

/* Why Choose Section */
.why-choose-section {
    padding: 120px 0;
    background: var(--light-bg);
    width: 100%;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    max-width: 100%;
}

.why-card {
    background: var(--white);
    padding: 60px 45px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.4s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.why-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
}

.why-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 35px;
    transition: all 0.3s;
}

.why-card:hover .why-icon {
    transform: scale(1.1) rotate(10deg);
}

.why-icon svg {
    stroke: var(--white);
}

.why-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--text-dark);
}

.why-card p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
}

/* Treatments Section */
.treatments-section {
    padding: 120px 0;
    background: var(--white);
    width: 100%;
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 100%;
}

.treatment-card {
    background: var(--light-bg);
    padding: 50px 40px;
    border-radius: 25px;
    transition: all 0.4s;
    border: 3px solid transparent;
}

.treatment-card:hover {
    background: var(--white);
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.treatment-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: all 0.3s;
}

.treatment-card:hover .treatment-icon {
    transform: scale(1.1) rotate(-5deg);
}

.treatment-icon svg {
    stroke: var(--white);
}

.treatment-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--text-dark);
}

.treatment-card p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.treatment-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s;
}

.treatment-link:hover {
    color: var(--accent);
}

/* Success Section */
.success-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    width: 100%;
}

.success-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    max-width: 100%;
}

.success-card {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s;
}

.success-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.success-image {
    height: 280px;
    background: linear-gradient(135deg, rgba(135, 68, 135, 0.1) 0%, rgba(26, 152, 73, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder-success {
    opacity: 0.3;
}

.success-content {
    padding: 45px;
    position: relative;
}

.quote-icon {
    font-size: 90px;
    color: var(--primary);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 25px;
    font-family: Georgia, serif;
}

.success-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.success-author strong {
    display: block;
    font-size: 19px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.success-author span {
    font-size: 15px;
    color: var(--primary);
    font-weight: 600;
}

/* Centers Section */
.centers-section {
    padding: 120px 0;
    background: var(--white);
    width: 100%;
}

.centers-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 35px;
    max-width: 100%;
}

.center-card {
    background: var(--light-bg);
    padding: 45px 35px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}

.center-card:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.center-icon {
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s;
}

.center-card:hover .center-icon {
    transform: scale(1.1);
}

.center-icon svg {
    stroke: var(--primary);
}

.center-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.center-card p {
    font-size: 15px;
    opacity: 0.9;
}

/* Consultation Section */
.consultation-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    width: 100%;
}

.consultation-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 100px;
    align-items: center;
    max-width: 100%;
}

.consultation-info h2 {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 45px;
}

.consultation-info h2 .highlight {
    display: block;
    font-size: 52px;
    margin-top: 10px;
}

.consultation-benefits {
    list-style: none;
    margin-bottom: 45px;
}

.consultation-benefits li {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 25px;
}

.consultation-benefits svg {
    stroke: var(--accent);
    flex-shrink: 0;
}

.emi-banner {
    display: flex;
    gap: 25px;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 30px;
    border-radius: 18px;
    backdrop-filter: blur(10px);
}

.emi-banner svg {
    stroke: var(--white);
    flex-shrink: 0;
}

.emi-banner strong {
    display: block;
    font-size: 19px;
    margin-bottom: 8px;
}

.emi-banner p {
    font-size: 15px;
    opacity: 0.9;
    margin: 0;
}

.consultation-form {
    background: var(--white);
    padding: 55px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.consultation-form form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 20px 22px;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(135, 68, 135, 0.1);
}

.form-checkbox {
    grid-column: 1 / -1;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.form-checkbox input {
    margin-top: 4px;
    cursor: pointer;
}

.form-checkbox label {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

.btn-submit {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    padding: 20px 45px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(135, 68, 135, 0.3);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(135, 68, 135, 0.4);
}

/* Contact Section */
.contact-section {
    padding: 120px 0;
    background: var(--white);
    width: 100%;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    max-width: 100%;
}

.contact-info h2 {
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.contact-info > p {
    font-size: 19px;
    color: var(--text-gray);
    margin-bottom: 55px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item {
    display: flex;
    gap: 28px;
    align-items: flex-start;
}

.contact-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    stroke: var(--white);
}

.contact-item h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.contact-item p {
    font-size: 19px;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-item span {
    font-size: 15px;
    color: var(--text-gray);
}

.contact-map {
    height: 550px;
    width: 100%;
    background: #e8f4f8;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

.interactive-map {
    width: 100%;
    height: 100%;
    position: relative;
    background: linear-gradient(135deg, #d4e9f7 0%, #e8f4f8 50%, #cfe5f0 100%);
    display: block;
}

.map-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.map-roads {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(135, 68, 135, 0.08) 2px, transparent 2px),
        linear-gradient(90deg, rgba(135, 68, 135, 0.08) 2px, transparent 2px),
        linear-gradient(rgba(135, 68, 135, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(135, 68, 135, 0.04) 1px, transparent 1px);
    background-size: 100px 100px, 100px 100px, 20px 20px, 20px 20px;
    background-position: -2px -2px, -2px -2px, -1px -1px, -1px -1px;
    z-index: 2;
}

.map-areas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 40% 30%, rgba(26, 152, 73, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 60% 50%, rgba(135, 68, 135, 0.08) 0%, transparent 25%),
        radial-gradient(circle at 45% 70%, rgba(26, 152, 73, 0.12) 0%, transparent 35%);
    z-index: 3;
}

.location-marker {
    position: absolute;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.location-marker:hover {
    z-index: 20;
    transform: translate(-50%, -50%) scale(1.2);
}

.marker-dot {
    width: 24px;
    height: 24px;
    background: var(--primary);
    border: 4px solid white;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(135, 68, 135, 0.4);
    position: relative;
    z-index: 2;
    animation: markerBounce 2s ease-in-out infinite;
}

.marker-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(135, 68, 135, 0.3);
    animation: rippleEffect 2s ease-out infinite;
}

.marker-label {
    position: absolute;
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    white-space: nowrap;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.location-marker:hover .marker-label {
    opacity: 1;
}

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

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

.map-zoom-controls {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 15;
}

.zoom-btn {
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid var(--primary);
    border-radius: 10px;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.zoom-btn:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.zoom-btn:active {
    transform: scale(0.95);
}

.map-info {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 15;
}

.info-badge {
    background: white;
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    font-weight: 600;
    color: var(--primary);
    font-size: 15px;
}

.info-badge svg {
    stroke: var(--primary);
    flex-shrink: 0;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 30px;
    display: block;
}

.map-placeholder {
    opacity: 0.3;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--text-dark) 0%, #1a1a1a 100%);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

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

.footer-logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

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

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.footer-col h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s;
    font-size: 15px;
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 14px;
}

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

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.7;
    font-size: 14px;
    transition: all 0.3s;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary);
}

/* Responsive Design */
@media (max-width: 1400px) {
    .container, .nav-container {
        padding-left: 60px;
        padding-right: 60px;
    }
}

@media (max-width: 1200px) {
    .container, .nav-container {
        padding-left: 50px;
        padding-right: 50px;
    }
    
    .hero-title {
        font-size: 64px;
    }
    
    .section-title {
        font-size: 42px;
    }
    
    .treatments-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .centers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .nav-menu, .nav-actions {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .container, .nav-container {
        padding-left: 30px;
        padding-right: 30px;
    }
    
    .hero {
        height: auto;
        min-height: 100vh;
    }
    
    .hero-content {
        padding: 80px 0 60px;
    }
    
    .hero-title {
        font-size: 52px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .about-grid,
    .consultation-wrapper,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .why-grid,
    .success-grid,
    .treatments-grid {
        grid-template-columns: 1fr;
    }
    
    .centers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .consultation-form form {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .slider-controls {
        bottom: 20px;
    }
}

@media (max-width: 640px) {
    .container, .nav-container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 38px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-large {
        width: 100%;
        justify-content: center;
    }
    
    .centers-grid {
        grid-template-columns: 1fr;
    }
    
    .consultation-form {
        padding: 30px 20px;
    }
    
    .slider-controls {
        gap: 15px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
    }
}
