* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #219EFF 0%, #1a7acc 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* Main Content */
main {
    padding-top: 100px;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 0 6rem;
    color: white;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
}

.hero .subtitle {
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.2s both;
    font-weight: 300;
    font-style: italic;
}

.hero .cta {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease 0.4s both;
    opacity: 0.9;
}

.hero .location-text {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.5s both;
    opacity: 0.85;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.btn {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: white;
    color: #219EFF;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Services Section */
.services {
    background: white;
    padding: 6rem 0;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: white;
    clip-path: ellipse(100% 100% at 50% 0%);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.6));
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(33, 158, 255, 0.1);
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(33, 158, 255, 0.2);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #219EFF;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

/* Location Section */
.location {
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    padding: 6rem 0;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.location-text h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
}

.location-areas {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.area-tag {
    background: #219EFF;
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
}

.area-tag:hover {
    background: #1a7acc;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(33, 158, 255, 0.3);
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #219EFF 0%, #1a7acc 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.contact-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.location-visual {
    background: linear-gradient(135deg, #219EFF, #1a7acc);
    height: 300px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(33, 158, 255, 0.3);
}

/* Footer */
footer {
    background: #2c2c2c;
    color: white;
    padding: 3rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 2rem;
}

.footer-social h3 {
    margin-bottom: 1rem;
    color: #219EFF;
    font-size: 1.2rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(33, 158, 255, 0.1);
    border: 2px solid rgba(33, 158, 255, 0.3);
    border-radius: 50%;
    color: #219EFF;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background: #219EFF;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(33, 158, 255, 0.4);
}

.social-icons svg {
    width: 20px;
    height: 20px;
}

.footer-info {
    text-align: right;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .subtitle {
        font-size: 1.5rem;
    }

    .hero .cta {
        font-size: 1.1rem;
    }

    .hero .location-text {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .location-areas {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-info {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    /* Header styles now handled by arc-header component */
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, #219EFF 0%, #1a7acc 100%);
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
    margin-top: 100px; /* Add space for fixed header */
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.about-hero .subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    background: white;
    padding: 4rem 0; /* Reduced padding for better spacing */
}

.doctor-profile {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem; /* Reduced gap */
    align-items: start;
    margin-bottom: 3rem; /* Reduced margin */
}

.doctor-images {
    display: grid;
    gap: 1.5rem;
}

.main-photo {
    width: 100%;
    max-width: 400px;
    height: 400px;
    object-fit: cover;
    object-position: center top; /* Focus on head/face area */
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(33, 158, 255, 0.2);
    border: 4px solid rgba(33, 158, 255, 0.1);
}

.secondary-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.secondary-photo {
    width: 100%;
    height: 180px;
    object-fit: cover;
    object-position: center; /* Center the image content */
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(33, 158, 255, 0.15);
    border: 2px solid rgba(33, 158, 255, 0.1);
    transition: all 0.3s ease;
}

.secondary-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(33, 158, 255, 0.25);
}

.placeholder-photo {
    width: 100%;
    max-width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #219EFF, #1a7acc);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(33, 158, 255, 0.2);
}

.placeholder-secondary {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, rgba(33, 158, 255, 0.8), rgba(26, 122, 204, 0.8));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    text-align: center;
    box-shadow: 0 10px 20px rgba(33, 158, 255, 0.15);
}

.doctor-info h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.doctor-title {
    font-size: 1.3rem;
    color: #219EFF;
    font-weight: 600;
    margin-bottom: 2rem;
}

.doctor-bio {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}

.doctor-bio p {
    margin-bottom: 1.5rem;
}

.credentials {
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    padding: 4rem 0; /* Reduced padding */
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.credential-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(33, 158, 255, 0.1);
    border: 1px solid rgba(33, 158, 255, 0.1);
}

.credential-icon {
    font-size: 3rem;
    color: #219EFF;
    margin-bottom: 1rem;
}

.credential-card h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
}

.philosophy {
    background: white;
    padding: 4rem 0; /* Reduced padding */
}

.philosophy-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.philosophy h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
}

.philosophy-quote {
    font-size: 1.4rem;
    font-style: italic;
    color: #219EFF;
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(33, 158, 255, 0.05);
    border-left: 4px solid #219EFF;
    border-radius: 10px;
}

.philosophy p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

.specialties {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8eaff 100%);
    padding: 4rem 0; /* Reduced padding */
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.specialty-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 5px 15px rgba(33, 158, 255, 0.1);
    transition: all 0.3s ease;
}

.specialty-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(33, 158, 255, 0.15);
}

.specialty-icon {
    font-size: 2rem;
    color: #219EFF;
    min-width: 50px;
}

.cta-section {
    background: linear-gradient(135deg, #219EFF 0%, #1a7acc 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Photo placeholder styles */
.photo-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.photo-label {
    font-size: 1rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

.secondary-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.secondary-label {
    font-size: 0.8rem;
}

/* Beyond the Clinic section */
.beyond-clinic {
    background: white;
    padding: 4rem 0; /* Reduced padding */
}

.beyond-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.beyond-title {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 2rem;
}

.hobbies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.hobby-item {
    text-align: center;
}

.hobby-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hobby-name {
    color: #219EFF;
    margin-bottom: 0.5rem;
}

.hobby-desc {
    color: #666;
}

.fun-facts {
    background: rgba(33, 158, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    margin: 3rem 0;
}

.fun-facts-title {
    color: #219EFF;
    margin-bottom: 1rem;
}

.fun-fact {
    color: #666;
    margin-bottom: 1rem;
}

.fun-fact:last-child {
    margin-bottom: 0;
}
/* Mobile menu styles are now handled by arc-header component */

/* About Page Mobile Responsive */
@media (max-width: 768px) {
    .about-hero {
        padding: 6rem 0 3rem;
        margin-top: 80px; /* Reduced for mobile */
    }
    
    .about-hero h1 {
        font-size: 2.2rem;
    }

    .doctor-profile {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .main-photo,
    .placeholder-photo {
        max-width: 300px;
        height: 300px;
        margin: 0 auto;
    }

    .secondary-photos {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }

    .secondary-photo,
    .placeholder-secondary {
        height: 200px;
    }

    .credentials-grid {
        grid-template-columns: 1fr;
    }

    .specialties-grid {
        grid-template-columns: 1fr;
    }

    .about-content,
    .credentials,
    .philosophy,
    .specialties,
    .beyond-clinic {
        padding: 3rem 0; /* Further reduced padding on mobile */
    }

    
}