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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    color: #2c3e50;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

ul {
    list-style: none;
}

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

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.primary-btn {
    background-color: #d4a5a5; /* Soft pink/rose */
    color: white;
}

.primary-btn:hover {
    background-color: #c08e8e;
}

.secondary-btn {
    background-color: transparent;
    border-color: #333;
    color: #333;
}

.secondary-btn:hover {
    background-color: #333;
    color: white;
}

.outline-btn {
    border-color: #333;
    color: #333;
}

.submit-btn {
    background-color: #333;
    color: white;
    width: 100%;
    margin-top: 1rem;
}

.submit-btn:hover {
    background-color: #555;
}

/* Top Bar */
.top-bar {
    background-color: #fff;
    padding: 10px 0;
    font-size: 0.8rem;
    border-bottom: 1px solid #eee;
}

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

.contact-links a {
    margin-right: 20px;
    font-weight: 500;
    color: #666;
}

.visit-btn a {
    background-color: #fce4ec;
    padding: 5px 15px;
    border-radius: 20px;
    color: #d4a5a5;
    font-weight: 700;
}

/* Navigation */
.main-nav {
    background-color: #fff;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.logo h1 {
    font-size: 1.8rem;
    margin-bottom: 0;
    letter-spacing: 1px;
}

.logo .medical {
    font-weight: 300;
}

.logo .skin {
    color: #d4a5a5;
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.tagline {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
}

.nav-links {
    display: flex;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
}

.nav-links a:hover {
    color: #d4a5a5;
}

/* Hero Section */
.hero {
    background-color: #f4f4f4; /* Placeholder for image */
    padding: 100px 0;
    background-image: linear-gradient(rgba(255,255,255,0.8), rgba(255,255,255,0.8)); /* Overlay */
    text-align: left;
}

.hero-content {
    max-width: 600px;
}

.hero h2 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero p {
    margin-bottom: 30px;
    color: #555;
}

/* Doctor Section */
.doctor-section {
    padding: 80px 0;
    background-color: #fff;
}

.doctor-profile {
    display: flex;
    align-items: center;
    gap: 50px;
}

.doctor-image {
    flex: 1;
}

.img-placeholder {
    width: 100%;
    height: 400px;
    background-color: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-weight: 600;
}

.doctor-info {
    flex: 1;
}

.credentials {
    display: block;
    margin-bottom: 20px;
    font-weight: 600;
    color: #d4a5a5;
}

/* Medical Services */
.medical-services {
    padding: 80px 0;
    background-image: url('https://images.unsplash.com/photo-1516549655169-df83a0774514?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80'); /* Subtle background */
    background-size: cover;
    color: white; /* Assuming dark overlay or change text color based on design */
    position: relative;
}

.medical-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.4); /* Dark overlay for text readability */
}

.medical-services .container {
    position: relative;
    z-index: 1;
    color: white;
}

.medical-services .section-header {
    max-width: 600px;
    margin-bottom: 50px;
}

.medical-services h2 {
    color: white;
    font-size: 2.5rem;
}

.service-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.service-card {
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
}

/* Skin Services */
.skin-services {
    padding: 80px 0;
    background-color: #f9f9f9;
}

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

.skin-card {
    background: white;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.skin-card:hover {
    transform: translateY(-5px);
}

.skin-card h3 {
    margin-bottom: 15px;
}

.learn-more {
    text-decoration: underline;
    font-size: 0.9rem;
    color: #d4a5a5;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    text-align: center;
    background-color: #fff;
}

.testimonial-content blockquote {
    font-size: 1.2rem;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto 40px;
    font-family: 'Playfair Display', serif;
    color: #555;
}

/* Mission */
.mission {
    padding: 80px 0;
    background-color: #f4f4f4;
}

.mission-content {
    max-width: 800px;
}

/* Contact / Form Section */
.contact-section {
    padding: 80px 0;
    background-color: #333; /* Dark background as in screenshot footer area */
    color: white;
}

.contact-section h2 {
    color: white;
}

.contact-wrapper {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-text {
    flex: 1;
}

.contact-info {
    margin-top: 40px;
}

.contact-info p {
    margin-bottom: 20px;
}

.form-container {
    flex: 1;
    background-color: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 5px;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 0.9rem;
    font-weight: 500;
}

.required {
    color: #d4a5a5;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255,255,255,0.2);
    background-color: transparent;
    color: white;
    border-radius: 4px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4a5a5;
    background-color: rgba(255,255,255,0.1);
}

.form-group select {
    background-color: #333; /* For dropdown options visibility */
    color: white; /* Ensure selected text is white */
}

.form-group select option {
    background-color: #333;
    color: white;
}

/* Checkbox specific styles */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 5px;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.consent-label {
    font-size: 0.8rem;
    line-height: 1.4;
    color: #ccc;
}

.consent-label a {
    text-decoration: underline;
    color: white;
}

/* Footer */
footer {
    background-color: #222;
    color: #777;
    padding: 40px 0;
    font-size: 0.8rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #333;
    padding-top: 20px;
}

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

/* Responsive */
@media (max-width: 768px) {
    .doctor-profile,
    .contact-wrapper {
        flex-direction: column;
    }
    
    .nav-links {
        display: none; /* Simplify for mobile for now */
    }
    
    .hero h2 {
        font-size: 2rem;
    }
}

