/* Sakura Clinic Design - Soft & Elegant */
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700;900&family=Noto+Sans+JP:wght@300;400;500;600;700&display=swap');

/* CSS Custom Properties - Sakura Theme */
:root {
    --primary-color: #F8BBD9;
    --primary-dark: #E91E63;
    --primary-light: #FCE4EC;
    --secondary-color: #FF9EBC;
    --accent-color: #FFB6C1;
    --text-dark: #4A4A4A;
    --text-light: #757575;
    --text-muted: #BDBDBD;
    --background-white: #FFFFFF;
    --background-light: #FDF8FA;
    --background-lighter: #FFF0F3;
    --border-light: #F5D5E0;
    --success-color: #81C784;
    --warning-color: #FFB74D;
    --error-color: #E57373;
    --shadow-sm: 0 2px 4px rgba(233, 30, 99, 0.05);
    --shadow-md: 0 4px 12px rgba(233, 30, 99, 0.1);
    --shadow-lg: 0 8px 24px rgba(233, 30, 99, 0.15);
    --shadow-xl: 0 12px 36px rgba(233, 30, 99, 0.2);
    --border-radius: 16px;
    --border-radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Zen Maru Gothic', 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--background-white);
    font-size: 16px;
    font-weight: 400;
}

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

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

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

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

header.scrolled {
    box-shadow: var(--shadow-md);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    min-height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 600;
}

.logo-text h1 {
    color: var(--text-dark);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 2px;
}

.logo-text p {
    color: var(--text-light);
    font-size: 12px;
    font-weight: 400;
}

/* Modern Navigation */
nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

nav a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 12px;
    position: relative;
    transition: var(--transition);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

nav a:hover,
nav a.active {
    color: var(--primary-dark);
    background-color: var(--primary-light);
}

nav a:hover::after,
nav a.active::after {
    width: 80%;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: var(--transition);
    background: rgba(248, 187, 217, 0.1);
    border: 1px solid rgba(248, 187, 217, 0.3);
    width: 36px;
    height: 36px;
}

.hamburger:hover {
    background: rgba(248, 187, 217, 0.2);
    border-color: rgba(248, 187, 217, 0.5);
    transform: scale(1.02);
}

.hamburger span {
    display: block;
    width: 18px;
    height: 2px;
    background-color: var(--primary-dark);
    transition: var(--transition);
    border-radius: 1px;
    transform-origin: center;
    position: absolute;
    left: 50%;
    top: 50%;
}

.hamburger span:nth-child(1) {
    transform: translateX(-50%) translateY(-6px);
}

.hamburger span:nth-child(2) {
    transform: translateX(-50%) translateY(-50%);
}

.hamburger span:nth-child(3) {
    transform: translateX(-50%) translateY(4px);
}

.hamburger.active span:nth-child(1) {
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-50%) translateY(-50%) scale(0);
}

.hamburger.active span:nth-child(3) {
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

/* Main Content */
main {
    margin-top: 80px;
}

/* Modern Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(255, 224, 230, 0.9) 0%, rgba(255, 192, 203, 0.9) 50%, rgba(255, 182, 193, 0.9) 100%), url('../images/hero-image.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><path fill="rgba(255,255,255,0.1)" d="M0,100 Q250,50 500,100 T1000,100 L1000,0 L0,0 Z"/></svg>');
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.hero-content h1 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.95;
    color: white;
}

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

.btn-primary {
    background: white;
    color: var(--primary-dark);
    padding: 16px 32px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

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

.btn-secondary {
    background: transparent;
    color: white;
    padding: 16px 32px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 25px;
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition);
    cursor: pointer;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.6);
}

/* Page Headers */
.page-header {
    background: linear-gradient(135deg, rgba(255, 240, 243, 0.95) 0%, rgba(252, 228, 236, 0.85) 100%);
    color: var(--text-dark);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(248, 187, 217, 0.2);
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle fill="rgba(248,187,217,0.08)" cx="200" cy="200" r="300"/><circle fill="rgba(255,158,188,0.05)" cx="800" cy="800" r="400"/></svg>');
    background-size: cover;
}

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

.page-header h1 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.5);
}

.page-header p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Modern Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin: 60px 0;
}

.card {
    background: var(--background-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

/* Clinic Facilities */
.facility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    margin: 60px 0;
}

.facility-card {
    background: var(--background-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

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

.facility-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.facility-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.facility-card:hover .facility-image img {
    transform: scale(1.05);
}

.facility-info {
    padding: 20px;
}

.facility-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.facility-info p {
    color: var(--text-light);
    line-height: 1.6;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: var(--transition);
}

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

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

.card.clickable {
    cursor: pointer;
}

.card.clickable:hover {
    transform: translateY(-8px) scale(1.02);
}

.card-content {
    padding: 32px;
}

.card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-bottom: 20px;
}

.card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-list {
    list-style: none;
}

.card-list li {
    padding: 8px 0;
    color: var(--text-light);
    position: relative;
    padding-left: 24px;
}

.card-list li::before {
    content: '🌸';
    position: absolute;
    left: 0;
    top: 8px;
    font-size: 14px;
}

/* Hours and Location Section */
.hours-location {
    background: var(--background-light);
    padding: 80px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.info-card {
    background: var(--background-white);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.info-card h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-card h2::before {
    content: '';
    width: 4px;
    height: 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

/* Modern Schedule Table */
.schedule-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--background-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.schedule-table th,
.schedule-table td {
    padding: 16px 12px;
    text-align: center;
    font-size: 14px;
}

.schedule-table th {
    background: var(--background-light);
    font-weight: 600;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-light);
}

.schedule-table td {
    border-bottom: 1px solid var(--border-light);
    color: var(--text-light);
}

.schedule-table td:first-child {
    font-weight: 500;
    color: var(--text-dark);
    text-align: left;
}

.schedule-table .available {
    color: var(--success-color);
    font-weight: 600;
}

.schedule-table .closed {
    color: var(--text-muted);
}

.schedule-table .limited {
    color: var(--warning-color);
    font-weight: 600;
}

/* Location Card */
.location-details {
    margin-bottom: 24px;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    padding: 12px 0;
}

.location-icon {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
    margin-top: 2px;
    flex-shrink: 0;
    font-size: 16px;
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.map-container iframe {
    width: 100%;
    height: 280px;
    border: none;
}

/* Clinic Philosophy */
.clinic-philosophy {
    padding: 80px 0;
    background: var(--background-white);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
    padding: 0 20px;
}

.philosophy-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 2px solid rgba(248, 187, 217, 0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(248, 187, 217, 0.2);
    height: auto;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.philosophy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(248, 187, 217, 0.3);
    border-color: var(--primary-color);
}

.philosophy-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.philosophy-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 16px;
    line-height: 1.4;
}

.philosophy-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #555555;
    margin: 0;
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
}

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

.section-header h2 {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Staff Section */
.staff {
    background: var(--background-light);
    padding: 80px 0;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.staff-card {
    background: var(--background-white);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

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

.staff-card.clickable {
    cursor: pointer;
}

.staff-card.clickable:hover {
    transform: translateY(-8px) scale(1.02);
}

.staff-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--background-lighter), var(--border-light));
    border: 4px solid var(--background-white);
    box-shadow: var(--shadow-md);
}

.staff-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.staff-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.staff-role {
    color: var(--primary-dark);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
}

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

/* FAQ Section */
.faq {
    padding: 80px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--background-white);
    border-radius: var(--border-radius);
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

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

.faq-question:hover {
    background: var(--primary-light);
    color: var(--primary-dark);
}

.faq-question::after {
    content: '+';
    font-size: 20px;
    font-weight: 300;
    transition: var(--transition);
    color: var(--primary-color);
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 24px;
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Reservation Form */
.reservation-section {
    background: var(--background-light);
    padding: 80px 0;
}

.reservation-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--background-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.reservation-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 40px;
    text-align: center;
}

.reservation-header h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.reservation-header p {
    font-size: 16px;
    opacity: 0.9;
}

.reservation-form {
    padding: 40px;
}

.form-section {
    margin-bottom: 40px;
}

.form-section-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary-light);
    position: relative;
}

.form-section-title::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--primary-color);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

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

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

.required {
    color: var(--error-color);
    margin-left: 4px;
}

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

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(248, 187, 217, 0.2);
}

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

/* Calendar Styles */
.calendar-container {
    border: 2px solid var(--border-light);
    border-radius: var(--border-radius);
    background: var(--background-white);
    overflow: hidden;
}

.calendar-header {
    background: var(--primary-light);
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.calendar-nav {
    background: none;
    border: none;
    color: var(--primary-dark);
    font-size: 18px;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: var(--transition);
}

.calendar-nav:hover {
    background: var(--primary-color);
    color: white;
}

.calendar-month {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0;
}

.calendar-weekday {
    background: var(--background-light);
    padding: 12px;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-light);
}

.calendar-date {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-light);
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
    color: var(--text-dark);
}

.calendar-date:hover {
    background: var(--primary-light);
    color: var(--primary-dark);
}

.calendar-date.selected {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

.calendar-date.disabled {
    color: var(--text-muted);
    cursor: not-allowed;
    background: var(--background-lighter);
}

.calendar-date.other-month {
    color: var(--text-muted);
    opacity: 0.4;
}

.calendar-date.today {
    background: var(--accent-color);
    color: white;
    font-weight: 700;
}

/* Time Selection */
.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.time-slot {
    padding: 12px 16px;
    border: 2px solid var(--border-light);
    border-radius: var(--border-radius);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
    background: var(--background-white);
}

.time-slot:hover {
    border-color: var(--primary-color);
    background: var(--primary-light);
}

.time-slot.selected {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-dark);
}

.time-slot.disabled {
    background: var(--background-lighter);
    color: var(--text-muted);
    cursor: not-allowed;
    border-color: var(--text-muted);
}

/* Form Submit */
.form-submit {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.form-submit-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    padding: 18px 48px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

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

.form-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Footer */
footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 30px;
}

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

.footer-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-section p,
.footer-section li {
    color: #CBD5E0;
    line-height: 1.6;
    margin-bottom: 8px;
}

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

.footer-section a {
    color: #CBD5E0;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-divider {
    height: 1px;
    background: #374151;
    margin: 40px 0 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: #9CA3AF;
    font-size: 14px;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #CBD5E0;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }

.mt-0 { margin-top: 0; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }

/* Responsive Design */
@media (max-width: 1100px) {
    .container {
        padding: 0 20px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    .hamburger {
        display: flex;
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    header .container {
        position: relative;
    }
    
    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        border-top: 1px solid var(--border-light);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
    }
    
    nav.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }
    
    nav li {
        border-bottom: 1px solid var(--border-light);
    }
    
    nav li:last-child {
        border-bottom: none;
    }
    
    nav a {
        display: block;
        padding: 16px 0;
        font-size: 16px;
        color: var(--text-dark);
        border-radius: 0;
    }
    
    .cta-button {
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        color: white;
        margin-top: 12px;
        border-radius: var(--border-radius);
        padding: 12px 24px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        width: 32px;
        height: 32px;
        padding: 6px;
    }
    
    .hamburger span {
        width: 16px;
        height: 1.5px;
    }
    
    .hamburger span:nth-child(1) {
        transform: translateX(-50%) translateY(-4px);
    }

    .hamburger span:nth-child(2) {
        transform: translateX(-50%) translateY(-50%);
    }

    .hamburger span:nth-child(3) {
        transform: translateX(-50%) translateY(2.5px);
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateX(-50%) translateY(-50%) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    }
    
    header .container {
        padding: 12px 16px;
        min-height: 70px;
        position: relative;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .logo-text h1 {
        font-size: 18px;
    }
    
    .logo-text p {
        font-size: 11px;
    }
    
    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        border-top: 1px solid var(--border-light);
        box-shadow: var(--shadow-xl);
        z-index: 1000;
        opacity: 0;
        transform: translateY(-20px);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    nav.active {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }
    
    nav ul {
        flex-direction: column;
        padding: 24px;
        gap: 0;
    }
    
    nav li {
        width: 100%;
        border-bottom: 1px solid rgba(248, 187, 217, 0.2);
        opacity: 0;
        transform: translateX(-20px);
        animation: slideInLeft 0.4s ease forwards;
    }
    
    nav li:nth-child(1) { animation-delay: 0.1s; }
    nav li:nth-child(2) { animation-delay: 0.15s; }
    nav li:nth-child(3) { animation-delay: 0.2s; }
    nav li:nth-child(4) { animation-delay: 0.25s; }
    nav li:nth-child(5) { animation-delay: 0.3s; }
    nav li:nth-child(6) { animation-delay: 0.35s; }
    nav li:nth-child(7) { animation-delay: 0.4s; }
    
    nav li:last-child {
        border-bottom: none;
        margin-top: 12px;
    }
    
    nav a {
        display: block;
        padding: 16px 12px;
        width: 100%;
        font-size: 16px;
        border-radius: 12px;
        margin: 4px 0;
        background: transparent;
        transition: var(--transition);
    }
    
    nav a:hover {
        background: var(--primary-light);
        transform: translateX(8px);
    }
    
    .cta-button {
        text-align: center;
        margin-top: 8px;
    }
    
    /* Animation for mobile menu items */
    @keyframes slideInLeft {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    .hero {
        min-height: 60vh;
        padding: 40px 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .card-grid {
        grid-template-columns: 1fr;
    }
    
    .staff-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .reservation-form {
        padding: 24px;
    }
    
    .reservation-header {
        padding: 24px;
    }
    
    .time-slots {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    }
    
    .flow-steps {
        flex-direction: column;
        gap: 24px;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
        margin: 0;
    }
    
    .step-card {
        max-width: none;
        width: 100%;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
    
    .doctor-header {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    
    .staff-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .history-timeline {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    header .container {
        padding: 10px 12px;
        min-height: 65px;
    }
    
    .logo-icon {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
    
    .logo-text h1 {
        font-size: 16px;
    }
    
    .logo-text p {
        font-size: 10px;
    }
    
    .hamburger {
        width: 44px;
        height: 44px;
        padding: 10px;
    }
    
    .hamburger span {
        width: 20px;
    }
    
    nav ul {
        padding: 20px;
    }
    
    nav a {
        padding: 14px 10px;
        font-size: 15px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .page-header {
        padding: 100px 0 60px;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    .card-content,
    .staff-card {
        padding: 24px;
    }
    
    .info-card {
        padding: 28px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .reservation-container {
        margin: 0 16px;
    }
    
    .philosophy-card,
    .doctor-profile-card,
    .staff-profile-card,
    .timeline-card {
        padding: 24px;
    }
    
    .doctor-content {
        padding: 24px;
    }
    
    .doctor-header {
        padding: 24px;
    }
    
    .doctor-avatar {
        width: 120px;
        height: 120px;
    }
    
    .badges-grid {
        justify-content: center;
    }
    
    .price-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .price-row {
        grid-template-columns: 1.5fr 1fr 1fr;
        font-size: 14px;
    }
    
    .payment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
    }
    
    .blog-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .category-tabs-modern {
        justify-content: stretch;
        gap: 8px;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 0 4px;
    }
    
    .tab-button-modern {
        flex: 1;
        justify-content: center;
        min-width: 0;
        flex-direction: column;
        text-align: center;
        padding: 12px 8px;
        font-size: 12px;
        gap: 4px;
    }
    
    .tab-button-modern .tab-icon {
        font-size: 18px;
        margin-bottom: 2px;
    }
    
    .tab-button-modern span:not(.tab-icon) {
        white-space: nowrap;
        font-size: 11px;
        line-height: 1.2;
    }
    
    .form-input-group {
        flex-direction: column;
    }
    
    .newsletter-submit-btn {
        width: 100%;
    }
}

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

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth scroll offset for fixed header */
html {
    scroll-padding-top: 100px;
}

/* Treatment Flow */
.treatment-flow {
    padding: 80px 0;
    background: var(--background-light);
}

.flow-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 60px;
}

.step-card {
    background: var(--background-white);
    border-radius: var(--border-radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    flex: 1;
    min-width: 180px;
    max-width: 220px;
}

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

.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.step-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

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

.flow-arrow {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 600;
    margin: 0 10px;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--background-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Profile Page Styles */

/* Philosophy Section */
.clinic-philosophy {
    padding: 80px 0;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.philosophy-card {
    background: var(--background-white);
    border-radius: var(--border-radius-lg);
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

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

.philosophy-icon {
    font-size: 48px;
    margin-bottom: 24px;
}

.philosophy-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.philosophy-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Doctor Profile Cards */
.doctors-profile {
    padding: 80px 0;
}

.doctors-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-top: 60px;
}

.doctor-profile-card {
    background: var(--background-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: var(--transition);
}

.doctor-profile-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.doctor-header {
    background: linear-gradient(135deg, rgba(252, 228, 236, 0.4), rgba(255, 255, 255, 0.9));
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 32px;
    border-bottom: 2px solid rgba(248, 187, 217, 0.3);
}

.doctor-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--background-white);
    box-shadow: var(--shadow-md);
    flex-shrink: 0;
}

.doctor-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.doctor-title h3 {
    font-size: 28px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 12px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    white-space: nowrap;
}

.specialty {
    font-size: 16px;
    color: #B91372;
    font-weight: 600;
    margin-bottom: 16px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    white-space: nowrap;
}

.experience-badge {
    background: linear-gradient(135deg, #E91E63, #B91372);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.4);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.doctor-content {
    padding: 40px;
}

.credentials-section,
.certifications-section,
.message-section {
    margin-bottom: 40px;
}

.doctor-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 2px solid #F8BBD9;
    padding-bottom: 8px;
}

.timeline-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--background-light);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.timeline-item .year {
    background: linear-gradient(135deg, #E91E63, #B91372);
    color: white;
    padding: 8px 16px;
    border-radius: 15px;
    font-size: 15px;
    font-weight: 700;
    min-width: 140px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(233, 30, 99, 0.3);
}

.timeline-item .event {
    color: #333333;
    font-weight: 600;
    font-size: 16px;
}

.badges-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.certification-badge {
    background: linear-gradient(135deg, #fff, #FCE4EC);
    color: #B91372;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid #F8BBD9;
    box-shadow: 0 2px 6px rgba(248, 187, 217, 0.3);
}

.message-box {
    background: var(--background-lighter);
    padding: 24px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-color);
}

.message-box p {
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 16px;
}

/* Staff Introduction */
.staff-introduction {
    padding: 80px 0;
}

.staff-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.staff-profile-card {
    background: var(--background-white);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.staff-profile-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.staff-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--background-light);
    box-shadow: var(--shadow-sm);
}

.staff-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.staff-details h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.staff-role {
    color: var(--primary-dark);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
}

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

/* Clinic History */
.clinic-history {
    padding: 80px 0;
}

.history-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.timeline-card {
    background: var(--background-white);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    position: relative;
}

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

.timeline-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.timeline-year {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    font-size: 20px;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 25px;
    display: inline-block;
    margin-bottom: 20px;
}

.timeline-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Menu Page Styles */

/* Insurance Info */
.insurance-info {
    padding: 80px 0;
}

.info-card-modern {
    background: var(--background-white);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.info-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.info-icon {
    font-size: 32px;
}

.info-card-modern h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.info-card-modern p {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 24px;
}

.insurance-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.insurance-badge {
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid var(--primary-color);
}

/* Menu Section */
.menu-section {
    padding: 80px 0;
}

.price-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.price-card {
    background: var(--background-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: var(--transition);
}

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

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

.price-card.premium::before {
    content: '✨ Premium';
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
}

.price-card-header {
    background: linear-gradient(135deg, var(--primary-light), var(--background-lighter));
    padding: 32px 24px;
    text-align: center;
}

.price-card-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.price-card-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

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

.price-table-modern {
    padding: 24px;
}

.price-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
    align-items: center;
}

.price-row:last-child {
    border-bottom: none;
}

.price-row.header-row {
    background: var(--background-light);
    padding: 12px 16px;
    border-radius: var(--border-radius);
    margin-bottom: 16px;
    font-weight: 600;
    color: var(--text-dark);
    border-bottom: none;
}

.price-row span:first-child {
    font-weight: 500;
    color: var(--text-dark);
}

.price {
    font-weight: 600;
    color: var(--primary-dark);
    text-align: right;
}

.price.highlighted {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 14px;
    text-align: center;
}

/* Payment Section */
.payment-section {
    padding: 80px 0;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.payment-card {
    background: var(--background-white);
    border-radius: var(--border-radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

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

.payment-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.payment-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

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

/* Notes Section */
.notes-section {
    padding: 80px 0;
}

.notes-card {
    background: var(--background-white);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    max-width: 900px;
    margin: 0 auto;
}

.notes-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.notes-icon {
    font-size: 32px;
}

.notes-card h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.notes-grid {
    display: grid;
    gap: 20px;
}

.note-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: var(--background-light);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.note-bullet {
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.note-item p {
    color: var(--text-dark);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Consultation CTA */
.consultation-cta {
    padding: 80px 0;
}

.cta-card {
    background: var(--background-white);
    border-radius: var(--border-radius-lg);
    padding: 48px 40px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    max-width: 800px;
    margin: 0 auto;
}

.cta-card h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.cta-card p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Blog Page Styles */

/* Blog Categories */
.blog-categories {
    padding: 60px 0 40px;
    background: var(--background-light);
}

.category-tabs-modern {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.tab-button-modern {
    background: var(--background-white);
    border: 2px solid var(--border-light);
    border-radius: var(--border-radius-lg);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

.tab-button-modern:hover {
    border-color: var(--primary-color);
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.tab-button-modern.active {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-color: var(--primary-dark);
    box-shadow: var(--shadow-md);
}

.tab-icon {
    font-size: 16px;
}

/* Blog List */
.blog-list-modern {
    padding: 80px 0;
}

.blog-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.blog-card {
    background: var(--background-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.blog-card-header {
    padding: 20px 24px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-light);
}

.blog-card-header.news {
    background: linear-gradient(135deg, #FFF3E0, #FFE0B2);
}

.blog-card-header.dental {
    background: linear-gradient(135deg, #E8F5E8, #C8E6C9);
}

.blog-card-header.dermatology {
    background: linear-gradient(135deg, #F3E5F5, #E1BEE7);
}

.blog-date {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
    background: var(--background-white);
    padding: 6px 12px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.blog-category-badge {
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 16px;
    color: white;
}

.blog-category-badge.news {
    background: linear-gradient(135deg, #FF9800, #F57C00);
}

.blog-category-badge.dental {
    background: linear-gradient(135deg, #4CAF50, #388E3C);
}

.blog-category-badge.dermatology {
    background: linear-gradient(135deg, #9C27B0, #7B1FA2);
}

.blog-card-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card-content p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.blog-card-footer {
    margin-top: auto;
}

.read-more-btn {
    color: var(--primary-dark);
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
}

.read-more-btn:hover {
    color: var(--primary-color);
    transform: translateX(4px);
}

/* Pagination */
.pagination-modern {
    display: flex;
    justify-content: center;
    gap: 12px;
    align-items: center;
}

.page-link-modern {
    padding: 12px 16px;
    border: 2px solid var(--border-light);
    border-radius: var(--border-radius);
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
    background: var(--background-white);
}

.page-link-modern:hover {
    border-color: var(--primary-color);
    background: var(--primary-light);
    color: var(--primary-dark);
}

.page-link-modern.active {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-color: var(--primary-dark);
}

.page-link-modern.next {
    background: var(--primary-light);
    color: var(--primary-dark);
    border-color: var(--primary-color);
}

/* Newsletter */
.newsletter-modern {
    padding: 80px 0;
}

.newsletter-card {
    background: var(--background-white);
    border-radius: var(--border-radius-lg);
    padding: 48px 40px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-header {
    margin-bottom: 32px;
}

.newsletter-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.newsletter-card h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

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

.newsletter-form-modern {
    margin-bottom: 16px;
}

.form-input-group {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.form-input-group input {
    flex: 1;
    padding: 16px;
    border: 2px solid var(--border-light);
    border-radius: var(--border-radius);
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition);
}

.form-input-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(248, 187, 217, 0.2);
}

.newsletter-submit-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: var(--border-radius);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    white-space: nowrap;
}

.newsletter-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.newsletter-note {
    color: var(--text-muted);
    font-size: 12px;
    margin: 0;
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--border-light);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Contact Page Modern Styles */

/* Contact Methods Section */
.contact-methods-modern {
    padding: 80px 0;
    background: var(--background-light);
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.contact-method-card {
    background: var(--background-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    padding: 40px 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.contact-method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: var(--transition);
}

.contact-method-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.contact-method-card:hover::before {
    opacity: 1;
}

.contact-method-card.phone .method-header {
    background: linear-gradient(135deg, #E8F5E8, #C8E6C9);
}

.contact-method-card.web .method-header {
    background: linear-gradient(135deg, var(--primary-light), var(--background-lighter));
}

.method-header {
    text-align: center;
    padding: 24px 0;
    border-radius: var(--border-radius);
    margin-bottom: 32px;
    position: relative;
}

.method-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.phone .method-icon {
    color: #4CAF50;
}

.web .method-icon {
    color: var(--primary-dark);
}

.method-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

/* Phone Display */
.phone-display {
    text-align: center;
    margin-bottom: 32px;
}

.phone-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: 1px;
    display: block;
}

.phone-display p {
    color: var(--text-light);
    font-size: 16px;
    margin: 0;
}

/* Contact Hours */
.contact-hours-card {
    background: var(--background-lighter);
    border-radius: var(--border-radius);
    padding: 24px;
    margin-bottom: 24px;
}

.contact-hours-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 14px;
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item .day {
    font-weight: 500;
    color: var(--text-dark);
}

.hours-item .hours {
    color: var(--text-light);
}

.hours-item.today {
    background: var(--primary-light);
    padding: 12px 16px;
    border-radius: var(--border-radius);
    margin: 4px -16px;
    border: none;
}

.hours-item.today .day {
    color: var(--primary-dark);
    font-weight: 600;
}

/* Web Reservation Content */
.web-reservation-content {
    text-align: center;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--text-dark);
    font-size: 15px;
}

.feature-item::before {
    content: '✨';
    font-size: 16px;
    flex-shrink: 0;
}

.web-reservation-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 16px 32px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    text-decoration: none;
    display: inline-block;
    margin: 16px 0;
}

.web-reservation-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    color: white;
}

.reservation-note {
    color: var(--text-muted);
    font-size: 12px;
    margin-top: 8px;
}

/* Contact Form Section */
.contact-form-section-modern {
    padding: 80px 0;
    background: var(--background-white);
}

.contact-form-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--background-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    overflow: hidden;
}

.contact-form-modern {
    padding: 48px 40px;
}

.form-section-modern {
    margin-bottom: 40px;
}

.form-section-title-modern {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-light);
    position: relative;
}

.form-section-title-modern::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.form-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.form-group-modern {
    margin-bottom: 24px;
}

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

.required-modern {
    color: var(--error-color);
    margin-left: 4px;
}

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

.form-input-modern:focus,
.form-select-modern:focus,
.form-textarea-modern:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(248, 187, 217, 0.2);
}

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

.checkbox-group-modern {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 24px;
}

.checkbox-group-modern input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label-modern {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.5;
    cursor: pointer;
    margin: 0;
}

.checkbox-label-modern a {
    color: var(--primary-dark);
    text-decoration: underline;
}

.checkbox-label-modern a:hover {
    color: var(--primary-color);
}

.privacy-note {
    margin-top: 8px;
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
}

.form-submit-modern {
    text-align: center;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border-light);
}

.contact-submit-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    padding: 18px 48px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

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

.contact-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Clinic Info Section */
.clinic-info-modern {
    padding: 80px 0;
    background: var(--background-light);
}

.clinic-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.clinic-details-card {
    background: var(--background-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: var(--transition);
}

.clinic-details-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.card-header-modern {
    background: linear-gradient(135deg, var(--primary-light), var(--background-lighter));
    padding: 32px;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
}

.header-icon {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.card-header-modern h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.details-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-item-modern {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 32px;
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}

.detail-item-modern:last-child {
    border-bottom: none;
}

.detail-item-modern:hover {
    background: var(--background-lighter);
}

.detail-icon {
    font-size: 18px;
    color: var(--primary-color);
    margin-top: 2px;
    flex-shrink: 0;
}

.detail-content {
    flex: 1;
}

.detail-content strong {
    color: var(--text-dark);
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.detail-content span {
    color: var(--text-light);
    font-size: 14px;
}

/* Map Card */
.map-card-modern {
    grid-column: 1 / -1;
}

.map-container-modern {
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    background: var(--background-light);
    border: 1px solid var(--border-light);
}

.map-container-modern iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-info {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 16px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    max-width: 280px;
}

.map-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.map-info p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.4;
}

/* Emergency Info Section */
.emergency-info-modern {
    padding: 80px 0;
    background: var(--background-white);
}

.emergency-card {
    background: linear-gradient(135deg, #FFEBEE, #FFCDD2);
    border-radius: var(--border-radius-lg);
    padding: 48px 40px;
    text-align: center;
    border: 2px solid #FFCDD2;
    box-shadow: var(--shadow-lg);
    max-width: 800px;
    margin: 0 auto 32px;
}

.emergency-header {
    margin-bottom: 32px;
}

.emergency-icon {
    font-size: 56px;
    color: #D32F2F;
    margin-bottom: 16px;
}

.emergency-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #D32F2F;
    margin-bottom: 12px;
}

.emergency-content p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

.emergency-contact-card {
    background: var(--background-white);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.emergency-phone-display {
    margin-bottom: 24px;
}

.emergency-phone {
    font-size: 36px;
    font-weight: 700;
    color: #D32F2F;
    margin-bottom: 8px;
    letter-spacing: 1px;
    display: block;
}

.emergency-note {
    color: var(--text-light);
    font-size: 14px;
    margin: 0;
}

/* Modal Styles */
.modal-modern {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

.modal-modern.show {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content-modern {
    background: var(--background-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideInUp 0.3s ease;
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-light), var(--background-lighter));
    padding: 24px 32px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.modal-header h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.close-modern {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-light);
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.close-modern:hover {
    background: var(--background-light);
    color: var(--text-dark);
}

.modal-body {
    padding: 32px;
}

/* Policy Sections */
.policy-section {
    margin-bottom: 32px;
}

.policy-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary-light);
}

.policy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.policy-list li {
    padding: 12px 0;
    color: var(--text-dark);
    font-size: 15px;
    line-height: 1.6;
    position: relative;
    padding-left: 24px;
}

.policy-list li::before {
    content: '•';
    color: var(--primary-color);
    font-size: 18px;
    position: absolute;
    left: 0;
    top: 12px;
}

/* Modal Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Contact Page Responsive Design */
@media (max-width: 1024px) {
    .contact-methods-grid,
    .clinic-info-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .form-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .map-container-modern {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .contact-method-card,
    .clinic-details-card,
    .emergency-card,
    .emergency-contact-card {
        padding: 32px 24px;
    }
    
    .contact-form-modern {
        padding: 32px 24px;
    }
    
    .phone-number {
        font-size: 28px;
    }
    
    .emergency-phone {
        font-size: 32px;
    }
    
    .modal-content-modern {
        margin: 20px;
        max-height: calc(100vh - 40px);
    }
    
    .modal-body {
        padding: 24px;
    }
    
    .map-info {
        position: static;
        margin: 16px;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .contact-methods-modern,
    .contact-form-section-modern,
    .clinic-info-modern,
    .emergency-info-modern {
        padding: 60px 0;
    }
    
    .contact-method-card,
    .clinic-details-card,
    .emergency-card,
    .emergency-contact-card {
        padding: 24px 20px;
    }
    
    .contact-form-modern {
        padding: 24px 20px;
    }
    
    .phone-number {
        font-size: 24px;
    }
    
    .emergency-phone {
        font-size: 28px;
    }
    
    .method-header h3 {
        font-size: 20px;
    }
    
    .card-header-modern h3 {
        font-size: 20px;
    }
    
    .emergency-header h2 {
        font-size: 24px;
    }
    
    .modal-header {
        padding: 20px 24px;
    }
    
    .modal-header h2 {
        font-size: 20px;
    }
    
    /* Timeline mobile styles */
    .timeline-item {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding: 20px;
    }
    
    .timeline-item .year {
        min-width: auto;
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
        font-size: 14px;
        padding: 10px 16px;
    }
    
    .timeline-item .event {
        font-size: 15px;
        text-align: center;
        line-height: 1.5;
    }
    
    /* Doctor profile cards mobile */
    .doctor-profile-card {
        margin-bottom: 40px;
    }
    
    .doctor-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .doctor-avatar {
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }
    
    .experience-badge {
        font-size: 12px;
        padding: 6px 12px;
    }
}