/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    overflow-x: hidden;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography - Minimalist */
h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.5rem;
    font-weight: 300;
    color: #1a1a1a;
}

h2 {
    font-size: 2.8rem;
    color: #1a1a1a;
    font-weight: 300;
}

h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    font-weight: 400;
}

p {
    margin-bottom: 1.5rem;
    color: #6b7280;
    font-weight: 300;
    font-size: 1.1rem;
}

/* Buttons - Minimalist */
.btn {
    display: inline-block;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 0;
    font-weight: 400;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-primary {
    background: #1a1a1a;
    color: white;
    border: 1px solid #1a1a1a;
}

.btn-primary:hover {
    background: transparent;
    color: #1a1a1a;
    border: 1px solid #1a1a1a;
}

.btn-secondary {
    background: transparent;
    color: #1a1a1a;
    border: 1px solid #1a1a1a;
}

.btn-secondary:hover {
    background: #1a1a1a;
    color: white;
}

/* Header - Minimalist */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid #f3f4f6;
}

.navbar {
    padding: 1.5rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 300;
    color: #1a1a1a;
    letter-spacing: 1px;
}

.nav-logo i {
    margin-right: 8px;
    font-size: 1.2rem;
    color: #6b7280;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-item {
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: #6b7280;
    font-weight: 300;
    font-size: 0.95rem;
    transition: color 0.2s ease;
    position: relative;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    color: #1a1a1a;
}

.nav-link.appointment-btn {
    background: #1a1a1a;
    color: white;
    padding: 12px 24px;
    border-radius: 0;
    transition: all 0.2s ease;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-link.appointment-btn:hover {
    background: transparent;
    color: #1a1a1a;
    border: 1px solid #1a1a1a;
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #2c5aa0;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section - Minimalist */
.hero {
    background: #ffffff;
    padding: 140px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.hero-content {
    animation: slideInLeft 1s ease-out;
}

.hero-title {
    font-size: 4rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
    line-height: 1.1;
    font-weight: 200;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #6b7280;
    margin-bottom: 3rem;
    line-height: 1.6;
    font-weight: 300;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: cover;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    display: block;
}

.hero-img:hover {
    border-color: #d1d5db;
    transform: translateY(-2px);
}

.hero-placeholder {
    background: #f9fafb;
    color: #6b7280;
    padding: 6rem 4rem;
    border: 1px solid #e5e7eb;
    text-align: center;
    width: 100%;
    max-width: 500px;
}

.hero-placeholder i {
    font-size: 4rem;
    margin-bottom: 2rem;
    color: #d1d5db;
}

.hero-placeholder p {
    font-size: 1.1rem;
    color: #6b7280;
    margin: 0;
    font-weight: 300;
}

/* Section Headers - Minimalist */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    margin-bottom: 1.5rem;
    font-weight: 200;
}

.section-header p {
    font-size: 1.2rem;
    color: #6b7280;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section - Minimalist */
.services {
    padding: 100px 0;
    background: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.service-card {
    background: #ffffff;
    padding: 3rem 2.5rem;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    border-color: #1a1a1a;
    transform: translateY(-2px);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.service-icon i {
    font-size: 1.5rem;
    color: #6b7280;
}

.service-card h3 {
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 400;
}

.service-card p {
    margin-bottom: 2rem;
    color: #6b7280;
    font-weight: 300;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    padding: 0.75rem 0;
    color: #6b7280;
    position: relative;
    padding-left: 2rem;
    font-weight: 300;
    border-bottom: 1px solid #f3f4f6;
}

.service-card li:last-child {
    border-bottom: none;
}

.service-card li:before {
    content: "—";
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: 300;
}

/* About Section - Minimalist */
.about {
    padding: 100px 0;
    background: #f9fafb;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 2rem;
    font-weight: 200;
}

.about-text p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    font-weight: 300;
}

.about-features {
    margin-top: 3rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.feature:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.feature i {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-size: 1.2rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.feature h4 {
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-weight: 400;
}

.feature p {
    margin: 0;
    color: #6b7280;
    font-weight: 300;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: cover;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    display: block;
}

.about-img:hover {
    border-color: #d1d5db;
    transform: translateY(-2px);
}

/* Team Section - Minimalist */
.team {
    padding: 100px 0;
    background: #ffffff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
}

.team-member {
    background: #ffffff;
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.team-member:hover {
    border-color: #1a1a1a;
    transform: translateY(-2px);
}

.member-image {
    margin-bottom: 2rem;
}

.member-placeholder {
    width: 120px;
    height: 120px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.member-placeholder i {
    font-size: 2.5rem;
    color: #d1d5db;
}

.team-member h3 {
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-weight: 400;
}

.member-role {
    color: #6b7280;
    font-weight: 300;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.member-bio {
    margin-bottom: 2rem;
    color: #6b7280;
    font-weight: 300;
    line-height: 1.6;
}

.member-credentials {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.member-credentials span {
    background: #f9fafb;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 300;
}

/* Appointment Section - Minimalist */
.appointment {
    padding: 100px 0;
    background: #1a1a1a;
    color: white;
}

.appointment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

.appointment-info h2 {
    color: white;
    margin-bottom: 2rem;
    font-weight: 200;
}

.appointment-info p {
    color: #d1d5db;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    font-weight: 300;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    padding-bottom: 2rem;
    border-bottom: 1px solid #374151;
}

.contact-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: #374151;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.contact-item p {
    color: #d1d5db;
    margin: 0;
    font-weight: 300;
}

.appointment-form {
    background: white;
    padding: 3rem;
    border: 1px solid #e5e7eb;
}

.appointment-form h3 {
    color: #1a1a1a;
    margin-bottom: 2.5rem;
    text-align: center;
    font-weight: 300;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 0;
    border: none;
    border-bottom: 1px solid #e5e7eb;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: 'Poppins', sans-serif;
    background: transparent;
    color: #1a1a1a;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: #1a1a1a;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    border: 1px solid #e5e7eb;
    padding: 16px;
}

.form-group textarea:focus {
    border-color: #1a1a1a;
}

/* Contact Section - Minimalist */
.contact {
    padding: 100px 0;
    background: #f9fafb;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: #ffffff;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: #1a1a1a;
    transform: translateY(-2px);
}

.contact-card i {
    width: 60px;
    height: 60px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.contact-card h3 {
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 400;
}

.contact-card p {
    color: #6b7280;
    margin: 0;
    font-weight: 300;
}

.map-container {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.map-container:hover {
    border-color: #d1d5db;
    transform: translateY(-2px);
}

.map-iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.map-iframe:hover {
    filter: grayscale(0%);
}

/* Footer - Minimalist */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.footer-logo i {
    margin-right: 8px;
    font-size: 1.2rem;
    color: #6b7280;
}

.footer-section p {
    color: #d1d5db;
    margin-bottom: 2rem;
    font-weight: 300;
    line-height: 1.6;
}

.footer-section h3 {
    color: #ffffff;
    margin-bottom: 2rem;
    font-weight: 400;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 300;
}

.footer-section a:hover {
    color: #ffffff;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #374151;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d1d5db;
    transition: all 0.3s ease;
    border: 1px solid #374151;
}

.social-links a:hover {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.contact-details p {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: #d1d5db;
    font-weight: 300;
}

.contact-details i {
    margin-right: 12px;
    color: #6b7280;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
    font-weight: 300;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design - Minimalist */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        border-top: 1px solid #e5e7eb;
        padding: 3rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 1.5rem 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 4rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .appointment-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .contact-info {
        align-items: center;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .contact-item i {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .hero {
        padding: 120px 0 80px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .service-card,
    .appointment-form,
    .contact-card {
        padding: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .services,
    .about,
    .team,
    .appointment,
    .contact {
        padding: 60px 0;
    }

    .footer {
        padding: 60px 0 20px;
    }
}

/* Utility Classes - Minimalist */
.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* Minimalist Enhancements */
.hero-placeholder,
.about-placeholder,
.map-placeholder {
    transition: all 0.3s ease;
}

.hero-placeholder:hover,
.about-placeholder:hover,
.map-placeholder:hover {
    border-color: #d1d5db;
}

/* Subtle animations for minimalist feel */
.service-card,
.team-member,
.contact-card {
    transition: all 0.2s ease;
}

/* Clean focus states */
input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: 2px solid #1a1a1a;
    outline-offset: 2px;
}

/* Minimalist scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #f9fafb;
}

::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Success/Error Messages */
.message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-weight: 500;
}

.message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
