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

:root {
    --primary-color: #0b5e3f; /* Deep Green */
    --primary-light: #169363;
    --navy-color: #1a2530; /* Premium Navy */
    --navy-light: #2c3e50;
    --gold-color: #d4af37; /* Luxury Gold */
    --gold-light: #f3d56a;
    --text-main: #334155;
    --text-muted: #64748b;
    --bg-main: #ffffff;
    --bg-light: #f8fafc;
    --bg-dark-gray: #e2e8f0;
    --whatsapp: #25d366;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px -5px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-main);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--navy-color);
}

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

ul {
    list-style: none;
}

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

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

.bg-light { background-color: var(--bg-light); }
.bg-navy { background-color: var(--navy-color); }
.bg-dark-gray { background-color: var(--bg-dark-gray); }

.text-white { color: var(--bg-main); }
.text-gold { color: var(--gold-color); }
.text-navy { color: var(--navy-color); }
.text-center { text-align: center; }

.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }

.d-inline-block { display: inline-block; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    gap: 8px;
}

.btn-gold {
    background-color: var(--gold-color);
    color: var(--navy-color);
    border-color: var(--gold-color);
}

.btn-gold:hover {
    background-color: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

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

.btn-outline-gold:hover {
    background-color: var(--gold-color);
    color: var(--navy-color);
}

.btn-whatsapp-outline {
    background-color: transparent;
    color: var(--bg-main);
    border-color: var(--whatsapp);
}

.btn-whatsapp-outline:hover {
    background-color: var(--whatsapp);
    color: var(--bg-main);
}

.btn-lg {
    padding: 15px 35px;
    font-size: 1.05rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Section Titles */
.section-title {
    margin-bottom: 60px;
}

.subtitle {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-color);
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 15px;
}

.section-title h2 span {
    color: var(--gold-color);
    font-style: italic;
}

.title-separator {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-color), transparent);
    margin: 0 auto 20px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Top Bar */
.top-bar {
    background-color: var(--navy-color);
    color: #e2e8f0;
    padding: 8px 0;
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.trust-indicators {
    display: flex;
    align-items: center;
    gap: 15px;
}

.divider {
    color: #475569;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

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

.contact-info i {
    color: var(--gold-color);
    margin-right: 6px;
}

.social-links a {
    color: #e2e8f0;
    margin-left: 10px;
}

.social-links a:hover {
    color: var(--gold-color);
}

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--navy-color);
    font-family: 'Playfair Display', serif;
    display: flex;
    align-items: center;
}

.brand-logo {
    height: 130px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    display: block;
}

.logo span {
    font-weight: 400;
    font-style: italic;
}

.logo i {
    font-size: 1.5rem;
    margin-right: 5px;
}

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

.nav-links a {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--navy-color);
    position: relative;
    padding: 5px 0;
}

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

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

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

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: 12px;
}

.lang-btn {
    background: none;
    border: 1px solid transparent;
    padding: 4px 8px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    color: var(--navy-color);
    border-radius: 4px;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.lang-btn:hover {
    color: var(--gold-color);
}

.lang-btn.active {
    color: var(--gold-color);
    border-color: var(--gold-color);
}

.lang-sep {
    color: #ccc;
    font-size: 0.75rem;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--navy-color);
}

/* Hero Section */
.hero {
    height: 90vh;
    min-height: 650px;
    position: relative;
    display: flex;
    align-items: center;
    background: url('https://images.unsplash.com/photo-1579684385127-1ef15d508118?ixlib=rb-1.2.1&auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(26, 37, 48, 0.95) 0%, rgba(26, 37, 48, 0.7) 50%, rgba(26, 37, 48, 0.3) 100%);
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.hero-content {
    color: var(--bg-main);
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    background-color: rgba(212, 175, 55, 0.15);
    color: var(--gold-color);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--bg-main);
}

.hero p {
    font-size: 1.15rem;
    color: #cbd5e1;
    margin-bottom: 40px;
    max-width: 550px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-color);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-text {
    font-size: 0.85rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* Glassmorphism Form */
.glass-panel {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.hero-form-card h3 {
    color: var(--bg-main);
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.hero-form-card p {
    color: #94a3b8;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.quick-form .form-group {
    margin-bottom: 15px;
}

.quick-form input,
.quick-form select {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: var(--bg-main);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
}

.quick-form input::placeholder {
    color: #cbd5e1;
}

.quick-form select {
    color: #cbd5e1;
}

.quick-form select option {
    background: var(--navy-color);
    color: var(--bg-main);
}

.quick-form input:focus,
.quick-form select:focus {
    outline: none;
    border-color: var(--gold-color);
    background: rgba(255, 255, 255, 0.15);
}

.form-note {
    display: block;
    text-align: center;
    color: #94a3b8;
    margin-top: 15px;
    font-size: 0.8rem;
}

.form-note i {
    color: var(--gold-color);
    margin-right: 5px;
}

/* About Clinic Section */
.about-clinic-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.clinic-features-list {
    margin-bottom: 30px;
}

.clinic-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.clinic-features-list i {
    font-size: 1.5rem;
    margin-top: 3px;
}

.clinic-features-list strong {
    display: block;
    color: var(--navy-color);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.clinic-features-list span {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.certifications {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cert-item {
    background: var(--bg-light);
    padding: 10px 20px;
    border-radius: 4px;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--navy-color);
    font-size: 0.9rem;
}

.cert-item i {
    color: var(--gold-color);
}

.about-clinic-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.experience-floating-badge {
    position: absolute;
    bottom: -30px;
    right: 30px;
    background: var(--navy-color);
    color: var(--bg-main);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    border: 5px solid var(--bg-main);
    z-index: 2;
}

.experience-floating-badge strong {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--gold-color);
    line-height: 1;
}

.experience-floating-badge span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* Expertise Section */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.expertise-card {
    background: var(--bg-main);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
}

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

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

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition);
}

.expertise-card:hover .icon-wrapper {
    background: var(--gold-color);
}

.icon-wrapper i {
    font-size: 1.5rem;
    color: var(--gold-color);
    transition: var(--transition);
}

.expertise-card:hover .icon-wrapper i {
    color: var(--bg-main);
}

.expertise-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.expertise-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Process Section / Comment ça marche */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 50px;
    width: calc(100% - 100px);
    height: 2px;
    background: rgba(212, 175, 55, 0.3);
    z-index: 0;
}

@media (max-width: 768px) {
    .process-grid::before { display: none; }
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
    background: var(--bg-main);
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.process-number {
    width: 80px;
    height: 80px;
    background: var(--navy-color);
    color: var(--gold-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 20px;
    border: 4px solid var(--bg-main);
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: var(--transition);
}

.process-step:hover .process-number {
    background: var(--gold-color);
    color: var(--navy-color);
}

.process-step h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.process-step p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Services */
.services-wrapper {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

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

.service-box.reverse {
    direction: rtl;
}

.service-box.reverse > * {
    direction: ltr;
}

.service-img {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.service-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.service-box:hover .service-img img {
    transform: scale(1.05);
}

.service-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(26, 37, 48, 0.9);
    color: var(--gold-color);
    padding: 10px 20px;
    border-radius: 4px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 600;
    backdrop-filter: blur(5px);
}

.service-info h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.service-info p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.service-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
    color: var(--navy-color);
}

.service-list i {
    color: var(--gold-color);
    background: rgba(212, 175, 55, 0.1);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* Packages / Forfaits VIP */
.packages-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.package-card {
    background: var(--bg-main);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

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

.package-card.premium {
    border: 2px solid var(--gold-color);
    position: relative;
}

.premium-badge {
    position: absolute;
    top: 15px;
    right: -35px;
    background: var(--gold-color);
    color: var(--navy-color);
    padding: 5px 40px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    transform: rotate(45deg);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.package-header {
    background: var(--navy-color);
    color: var(--bg-main);
    padding: 30px 20px;
    text-align: center;
    border-bottom: 3px solid var(--gold-color);
}

.package-header h3 {
    color: var(--gold-color);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.package-header p {
    color: #cbd5e1;
    font-size: 0.95rem;
}

.package-features {
    padding: 30px;
    flex: 1;
}

.package-features li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.package-features li:last-child {
    margin-bottom: 0;
}

.pkg-icon {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-color);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.package-features strong {
    display: block;
    color: var(--navy-color);
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.package-features span {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.4;
}

.package-footer {
    padding: 30px;
    background: var(--bg-light);
    border-top: 1px solid rgba(0,0,0,0.05);
}

/* Testimonials / Avis */
.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.testimonial-card {
    background: var(--bg-main);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    position: relative;
    border: 1px solid rgba(0,0,0,0.03);
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
}

.testimonial-card::before {
    content: '\201C';
    font-family: 'Playfair Display', serif;
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 5rem;
    color: rgba(212, 175, 55, 0.15);
    line-height: 1;
}

.rating {
    color: var(--gold-color);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.review-text {
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    flex-grow: 1; /* Text alanının kalan boşluğu doldurmasını sağlayarak kartların alt kısımlarını hizalar */
}

.patient-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto; /* Avatar ve ismi her zaman kartın en altına iter */
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.avatar {
    width: 50px;
    height: 50px;
    background: var(--navy-light);
    color: var(--gold-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.patient-info h4 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.patient-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.trust-banner {
    background: var(--bg-main);
    padding: 15px 30px;
    border-radius: 50px;
    display: inline-block;
    box-shadow: var(--shadow-sm);
    margin: 0 auto;
    transform: translateY(-25px); /* Kartların hemen altına yapışık/üst üste binmiş efekt verir */
    border: 1px solid rgba(0,0,0,0.05);
}

.trust-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.google-logo {
    height: 24px;
}

.rating-overall {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating-overall strong {
    font-size: 1.1rem;
    color: var(--navy-color);
}

.rating-overall .stars {
    color: #fbbc05;
}

.rating-overall span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* FAQ Accordion */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-main);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.03);
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--navy-color);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--gold-color);
}

.faq-question i {
    color: var(--gold-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

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

.faq-answer-inner {
    padding: 0 25px 25px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

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


/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-info-side h2 {
    font-size: 3rem;
    color: var(--bg-main);
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-info-side p {
    color: #cbd5e1;
    font-size: 1.1rem;
}

.contact-methods {
    display: grid;
    gap: 20px;
}

.contact-method-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.contact-method-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.cm-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--bg-main);
}

.whatsapp-bg { background-color: var(--whatsapp); }
.gold-bg { background-color: var(--gold-color); }

.cm-details h5 {
    color: var(--bg-main);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    margin-bottom: 4px;
}

.cm-details p {
    color: #cbd5e1;
    font-size: 0.95rem;
    margin: 0;
}

.form-card {
    background: var(--bg-main);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

#mainContactForm label {
    display: block;
    color: var(--navy-color);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group.half {
    flex: 1;
}

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

#mainContactForm input,
#mainContactForm textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
}

#mainContactForm input:focus,
#mainContactForm textarea:focus {
    outline: none;
    border-color: var(--gold-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* Footer */
.footer {
    background-color: #111827; /* Very dark blue/black */
    color: #94a3b8;
    padding: 80px 0 30px;
}

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

.footer-desc {
    max-width: 400px;
    margin-top: 15px;
}

.footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    margin-left: 0;
    margin-right: 10px;
    transition: var(--transition);
}

.footer .social-links a:hover {
    background: var(--gold-color);
    color: var(--navy-color);
    transform: translateY(-3px);
}

.footer-links h4 {
    color: var(--bg-main);
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

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

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

.footer-links a:hover {
    color: var(--gold-color);
    padding-left: 5px;
}

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

.footer-legal a {
    margin-left: 20px;
}

.footer-legal a:hover {
    color: var(--bg-main);
}

/* WhatsApp Floating Button & Animations */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: var(--whatsapp);
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    text-align: center;
    font-size: 35px;
    box-shadow: var(--shadow-lg);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h1 { font-size: 3rem; }
    .hero-container { gap: 30px; }
    .service-box { gap: 30px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .package-card.premium .premium-badge { right: -40px; }
    .about-clinic-wrapper { gap: 30px; }
}

@media (max-width: 768px) {
    .hide-mobile { display: none !important; }
    
    .section { padding: 70px 0; }
    .section-title h2 { font-size: 2.2rem; }
    
    .hero {
        height: auto;
        padding: 120px 0 80px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
    }
    
    .hero h1 { font-size: 2.5rem; }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .service-box, .service-box.reverse {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    /* Packages */
    .packages-container {
        grid-template-columns: 1fr;
    }
    
    .package-card.premium .premium-badge {
        right: -35px;
    }
    
    /* About Clinic */
    .about-clinic-wrapper {
        grid-template-columns: 1fr;
    }
    
    .about-clinic-image {
        margin-top: 30px;
    }
    
    .experience-floating-badge {
        width: 120px;
        height: 120px;
        bottom: -20px;
        right: 20px;
    }
    
    .experience-floating-badge strong {
        font-size: 2.2rem;
    }
    
    /* Mobile Menu */
    .menu-toggle { display: block; }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
    }
    
    .nav-links.active { left: 0; }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 30px;
    }
}
