/* ==========================================
   AURORA DENTAL - MAIN STYLESHEET
   Design: Modern Minimalist with Lime Green Accent
   ========================================== */

/* ==========================================
   RESET & BASE STYLES
   ========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
    background-color: #ffffff;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: #313131;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #37465C;
}

/* ==========================================
   CONTAINER & LAYOUT
   ========================================== */

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

/* ==========================================
   NAVIGATION BAR
   ========================================== */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    border-bottom: 1px solid #f0f0f0;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 24px;
    font-weight: bold;
	width: 17%;
}

.logo-text {
    color: #1a1a1a;
}

.logo-accent {
    color: #22C55E;
}

.logo img {
	width: 100%;
	height: auto;
}

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

.nav-link {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #37465C;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

.phone-icon {
    font-size: 18px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* ==========================================
   BUTTONS
   ========================================== */

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: #313131;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #FFF;
	color: #313131;
	border: 1px solid #313131;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #313131;
    color: #313131;
}

.btn-outline:hover {
    background-color: #313131;
	color: #FFF;
}


.btn-white {
    background-color: #ffffff;
    color: #22C55E;
}

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

.btn-small {
    padding: 8px 16px;
    font-size: 12px;
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
    margin-top: 80px;
    padding: 60px 0;
    background: linear-gradient(to bottom, #f9f9f9, #ffffff);
}

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

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.badge {
    display: inline-block;
    background-color: #313131;
    color: #FFF;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    width: fit-content;
}

.hero-title {
    font-size: 56px;
    color: #1a1a1a;
    line-height: 1.2;
}

.hero-description {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
}

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

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* ==========================================
   SERVICES SECTION
   ========================================== */

.services {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.section-header h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.section-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.section-footer {
	margin-top:1rem;
    text-align: center;
}

.link-arrow {
    font-size: 16px;
    font-weight: 600;
    color: #313131;
    transition: all 0.3s ease;
}

.link-arrow:hover {
    gap: 10px;
}

/* ==========================================
   DOCTORS SECTION
   ========================================== */

.doctors {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.doctors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.doctor-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.doctor-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.doctor-card img {
    width: 100%;
    /*height: 250px;*/
    height: 560px;
    object-fit: cover;
}

.doctor-info {
    padding: 30px;
}

.doctor-info h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.specialty {
    color: #37465C;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 15px;
}

.bio {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* ==========================================
   CTA SECTION
   ========================================== */

.cta {
	background: #37465C;
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.cta h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta p {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.95);
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    background-color: #F2F2F2;
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #313131;
}

.footer-section p {
    font-size: 14px;
    color: #313131;
    line-height: 1.8;
	margin-bottom:0;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #313131;
    font-size: 14px;
}

.footer-section a:hover {
    color: #313131;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #666;
    font-size: 14px;
}

/* ==========================================
   PAGE HEADER
   ========================================== */

.page-header {
    margin-top: 80px;
    padding: 60px 0;
    background: linear-gradient(to bottom, #f9f9f9, #ffffff);
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.page-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================
   DOCTORS DETAIL PAGE
   ========================================== */

.doctors-detail {
    padding: 60px 0;
}

.doctor-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid #f0f0f0;
}

.doctor-detail-card:last-child {
    border-bottom: none;
}

.doctor-detail-card:nth-child(even) {
    grid-template-columns: 1fr 1fr;
}

.doctor-detail-card:nth-child(even) .doctor-detail-image {
    order: 2;
}

.doctor-detail-card:nth-child(even) .doctor-detail-info {
    order: 1;
}

.doctor-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.doctor-detail-info h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.bio-text {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.qualifications,
.expertise {
    margin-bottom: 30px;
}

.qualifications h3,
.expertise h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.qualifications ul {
    list-style: none;
    padding-left: 0;
}

.qualifications li {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.qualifications li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #22C55E;
    font-weight: bold;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background-color: #37465C;
    color: #FFF;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.why-choose {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.why-choose h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.why-card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.why-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.why-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.why-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* ==========================================
   SERVICES DETAIL PAGE
   ========================================== */

.services-detail {
    padding: 60px 0;
}

.services-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-card-large {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.service-card-large:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-icon-large {
    font-size: 48px;
    margin-bottom: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.service-icon-large img {
	height: 100px;
}

.service-card-large h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-card-large p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-list {
    list-style: none;
    margin-bottom: 20px;
}

.service-list li {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.service-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #22C55E;
    font-weight: bold;
}

.service-highlights {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.service-highlights h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.highlight-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.highlight-reverse {
    grid-template-columns: 1fr 1fr;
}

.highlight-reverse .highlight-image {
    order: -1;
}

.highlight-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.highlight-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.highlight-list {
    list-style: none;
    margin-bottom: 30px;
}

.highlight-list li {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.highlight-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #22C55E;
    font-weight: bold;
}

.highlight-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* ==========================================
   CONTACT PAGE
   ========================================== */

.contact-section {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
}

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

.info-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.info-card a,
.info-card p {
    font-size: 14px;
    color: #666;
}

.contact-form-wrapper {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #22C55E;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.map-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.map-section h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

#our-service {
	margin-bottom: 25px;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 768px) {
    .navbar-content {
        flex-wrap: wrap;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        gap: 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        padding: 15px 20px;
        border-bottom: 1px solid #f0f0f0;
    }

    .menu-toggle {
        display: block;
    }

    .nav-right {
        display: none;
    }

    .hero {
        margin-top: 100px;
        padding: 40px 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .services,
    .doctors,
    .cta,
    .why-choose,
    .service-highlights,
    .contact-section,
    .map-section {
        padding: 40px 0;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .services-grid,
    .doctors-grid,
    .services-grid-large,
    .why-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .doctor-detail-card {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .doctor-detail-card:nth-child(even) .doctor-detail-image {
        order: 0;
    }

    .doctor-detail-card:nth-child(even) .doctor-detail-info {
        order: 0;
    }

    .highlight-card {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }

    .highlight-reverse .highlight-image {
        order: 0;
    }

    .cta h2 {
        font-size: 32px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .phone-link {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
	
	.logo {
		width: 20%;
	}
	
	.doctor-detail-card:nth-child(even) {
		grid-template-columns: none;
	}
	
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 28px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .cta h2 {
        font-size: 24px;
    }

    .page-header h1 {
        font-size: 24px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 12px;
    }

    .service-card,
    .info-card,
    .contact-form-wrapper {
        padding: 20px;
    }

    .doctor-detail-info {
        padding: 20px;
    }

    .contact-form-wrapper {
        padding: 20px;
    }
	
	.logo {
		width: 37%;
	}
}

@media (max-width: 425px) {
	.logo {
		width: 46%;
	}	
}
