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

:root {
    /* Brand Colors - Based on Loyal Home Nursing Care Logo */
    --primary-purple: #8B3F99;
    --secondary-purple: #A855C2;
    --primary-teal: #0891B2;
    --secondary-teal: #06B6D4;
    --accent-blue: #0EA5E9;
    
    /* Supporting Colors */
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-gradient-light: #e0f2fe;
    --white: #ffffff;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-teal);
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.nav-logo:hover {
    opacity: 0.8;
    text-decoration: none;
}

.nav-logo:visited,
.nav-logo:link {
    color: var(--primary-teal);
    text-decoration: none;
}

.nav-logo img {
    margin-right: 10px;
    margin-bottom: 2px;
    height: 28px;
    width: auto;
    object-fit: contain;
}

.logo-subtitle {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-purple);
    letter-spacing: 0.5px;
    margin-top: -2px;
}

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

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-teal);
}

.book-appointment-btn {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.book-appointment-btn:hover {
    background: linear-gradient(135deg, var(--secondary-purple), var(--primary-purple));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 63, 153, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: 
        linear-gradient(
            135deg, 
            rgba(139, 63, 153, 0.8) 0%, 
            rgba(8, 145, 178, 0.7) 50%, 
            rgba(139, 63, 153, 0.6) 100%
        ),
        url('images/main_banner.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 80px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg, 
        rgba(248, 250, 252, 0.1) 0%, 
        rgba(224, 242, 254, 0.1) 100%
    );
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    margin-left: 170px;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-height: calc(100vh - 160px);
}

.hero-text {
    max-width: 600px;
    color: white;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-text p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    line-height: 1.7;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature i {
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.feature span {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-teal), var(--secondary-teal));
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background: linear-gradient(135deg, var(--secondary-teal), var(--primary-teal));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(8, 145, 178, 0.4);
}

/* Remove the old hero-image styles */

/* Services Section */
.services {
    padding: 100px 0;
    background: #fff;
}

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

.section-subtitle {
    display: inline-block;
    background: linear-gradient(135deg, #f0f4ff, #e0f2fe);
    color: var(--primary-teal);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    border: 1px solid var(--secondary-teal);
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.highlight {
    color: var(--primary-purple);
}

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

.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
}

.service-card:nth-child(1) {
    background: linear-gradient(135deg, #f3e8ff, #e9d5ff);
    border: 1px solid rgba(139, 63, 153, 0.2);
}

.service-card:nth-child(2) {
    background: linear-gradient(135deg, #e6fffa, #a7f3d0);
    border: 1px solid rgba(8, 145, 178, 0.2);
}

.service-card:nth-child(3) {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.service-card:nth-child(4) {
    background: linear-gradient(135deg, #e0f2fe, #bae6fd);
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.service-card:nth-child(5) {
    background: linear-gradient(135deg, #e0f2fe, #c8ffa8);
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.service-card:nth-child(6) {
    background: linear-gradient(135deg, #e0f2fe, #e3a5f1);
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
}

.service-icon.medication {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    color: white;
}

.service-icon.nursing {
    background: linear-gradient(135deg, var(--primary-teal), var(--secondary-teal));
    color: white;
}

.service-icon.chronic {
    background: linear-gradient(135deg, var(--warning), #f59e0b);
    color: white;
}

.service-icon.rehabilitation {
    background: linear-gradient(135deg, var(--accent-blue), #0ea5e9);
    color: white;
}

.service-icon.wound-care {
    background: linear-gradient(135deg, var(--success), #10b981);
    color: white;
}

.service-icon.physiotherapy {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    color: white;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

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

.service-link {
    color: var(--primary-teal);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: var(--primary-purple);
}

/* Why Choose Section */
.why-choose {
    padding: 100px 0;
    background: #f8fafc;
}

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

.why-choose-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

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

.why-choose-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Community Section */
.community {
    padding: 80px 0;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    text-align: center;
}

.community-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.community-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.community-btn {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.community-btn:hover {
    background: linear-gradient(135deg, var(--secondary-purple), var(--primary-purple));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 63, 153, 0.3);
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.02);
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 25px;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.stat-badge {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    flex: 1;
    transition: transform 0.3s ease;
}

.stat-badge:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-teal);
    margin-bottom: 5px;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.about-btn {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.about-btn:hover {
    background: linear-gradient(135deg, var(--secondary-purple), var(--primary-purple));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 63, 153, 0.3);
}

/* Location Section */
.location {
    padding: 100px 0;
    background: #f8fafc;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.location-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(8, 145, 178, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(8, 145, 178, 0.15);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-teal);
    margin-top: 5px;
    min-width: 24px;
}

.contact-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

.map-container {
    margin-top: 80px;
    background: var(--white);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(8, 145, 178, 0.1);
    overflow: hidden;
}

.map-container iframe {
    border-radius: 15px;
    width: 100%;
    height: 400px;
    transition: all 0.3s ease;
}

.map-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(8, 145, 178, 0.15);
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 10px;
}

.stat-item p {
    color: var(--text-light);
    font-weight: 500;
}

/* Booking Section */
.booking {
    padding: 100px 0;
    background: #fff;
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.booking-form {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(8, 145, 178, 0.1);
}

.booking-form h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.booking-form input,
.booking-form textarea {
    padding: 15px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.booking-form input:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.1);
}

.booking-form textarea {
    resize: vertical;
    min-height: 100px;
    margin-bottom: 20px;
    grid-column: 1 / -1;
}

.booking-form button {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    color: white;
    border: none;
    padding: 16px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.booking-form button:hover {
    background: linear-gradient(135deg, var(--secondary-purple), var(--primary-purple));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 63, 153, 0.3);
}

.how-we-work h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.work-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.work-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-teal), var(--secondary-teal));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.work-step h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

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

/* Footer */
.footer {
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
    color: #e2e8f0;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-teal) 0%, var(--primary-purple) 50%, var(--secondary-teal) 100%);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
    gap: 40px;
}


.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-teal);
    line-height: 1.2;
    max-width: 280px;
}

.footer-logo i {
    margin-right: 12px;
    font-size: 32px;
    color: var(--primary-purple);
    margin-bottom: 5px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.footer-logo .logo-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-purple);
    letter-spacing: 1px;
    margin-top: 2px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    max-width: 320px;
}

.footer-contact a {
    text-decoration: none;
    color: #e2e8f0;
    transition: color 0.3s ease;
}

.footer-contact h3 {
    color: var(--primary-teal);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    position: relative;
}

.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-purple), var(--secondary-purple));
    border-radius: 1px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #e2e8f0;
    font-size: 15px;
    margin: 8px 0;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.footer-contact p:hover {
    color: var(--primary-teal);
}

.footer-contact p i {
    color: var(--primary-purple);
    width: 18px;
    font-size: 16px;
    flex-shrink: 0;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 180px;
}

.footer-links h3 {
    color: var(--primary-teal);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    position: relative;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-purple), var(--secondary-purple));
    border-radius: 1px;
}

.footer-links a {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 2px 0;
    transition: all 0.3s ease;
    position: relative;
    border-left: 3px solid transparent;
    padding-left: 15px;
}

.footer-links a:hover {
    color: var(--primary-teal);
    border-left-color: var(--primary-purple);
    padding-left: 20px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.footer-social {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    max-width: 200px;
}

.footer-social h3 {
    color: var(--primary-teal);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    position: relative;
}

.footer-social h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-purple), var(--secondary-purple));
    border-radius: 1px;
}

.social-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #374151, #4b5563);
    color: #e2e8f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(139, 63, 153, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.footer-social a:hover {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(139, 63, 153, 0.4);
    border-color: var(--primary-purple);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 20px;
    border-top: 2px solid rgba(139, 63, 153, 0.2);
    color: #cbd5e1;
    font-size: 14px;
    position: relative;
}

.footer-bottom a {
    color: var(--primary-teal);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-purple), var(--primary-teal));
    border-radius: 1px;
}

.footer-bottom p {
    margin: 0;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        margin-left: 80px;
        padding: 0 20px;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero-container {
        margin: 0 auto;
        padding: 0 20px;
    }

    .book-appointment-btn {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero {
        background-attachment: scroll;
        min-height: 90vh;
    }
    
    .hero-content {
        justify-content: center;
        text-align: center;
        min-height: calc(80vh - 120px);
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }
    
    .why-choose-content,
    .about-content,
    .location-content,
    .booking-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about {
        padding: 60px 0;
    }
    
    .about-content {
        text-align: center;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-badge {
        padding: 15px;
    }
    
    .services-grid {
        grid-template-columns: 1fr; 
    }
    
    .contact-details {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
        align-items: center;
    }
    
    .footer-logo,
    .footer-contact,
    .footer-links,
    .footer-social {
        max-width: 100%;
        text-align: center;
        align-items: center;
    }
    
    .footer-links {
        order: 2;
    }
    
    .footer-social {
        order: 3;
    }
    
    .footer-contact p,
    .footer-links a {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-container {
        margin: 0 auto;
        padding: 0 15px;
    }
    
    .hero {
        min-height: 90vh;
        padding-top: 60px;
    }
    
    .hero-content {
        min-height: calc(70vh - 100px);
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .why-choose-text h2,
    .about-text h2,
    .location-info h3 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    .hero-container {
        padding: 0 10px;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .hero-text p {
        font-size: 0.95rem;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    .hero-features {
        gap: 10px;
        margin-bottom: 30px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

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

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    background: rgba(139, 63, 153, 0.15);
    backdrop-filter: blur(2px);
    justify-content: center;
    align-items: center;
}
.modal.show {
    display: flex;
}
.modal-content {
    background: var(--white);
    margin: auto;
    border-radius: 18px;
    padding: 32px 28px 24px 28px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 8px 32px rgba(139, 63, 153, 0.18), 0 1.5px 8px rgba(8, 145, 178, 0.10);
    position: relative;
    animation: modalFadeIn 0.3s;
}
@keyframes modalFadeIn {
    from { transform: translateY(40px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.close-modal {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 1.5rem;
    color: var(--primary-purple);
    cursor: pointer;
    transition: color 0.2s;
}
.close-modal:hover {
    color: var(--primary-teal);
}
.modal-title {
    color: var(--primary-purple);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 18px;
    text-align: center;
}
.modal-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.modal-form label {
    font-weight: 500;
    color: var(--primary-teal);
    margin-bottom: 2px;
}
.modal-form input,
.modal-form textarea {
    padding: 10px 12px;
    border: 1.5px solid var(--primary-purple);
    border-radius: 8px;
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--bg-light);
    transition: border-color 0.2s;
}
.modal-form input:focus,
.modal-form textarea:focus {
    border-color: var(--primary-teal);
    outline: none;
}
.modal-form textarea {
    min-height: 60px;
    resize: vertical;
}
.modal-submit {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-teal));
    color: #fff;
    border: none;
    padding: 12px 0;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 8px;
    cursor: pointer;
}
.modal-submit:hover {
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-purple));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(8, 145, 178, 0.18);
}

/* Join Page Styles */
.join-page-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-gradient-light) 100%);
    min-height: 100vh;
}

.join-page-content {
    max-width: 900px;
    margin: 0 auto;
}

.join-page-header {
    text-align: center;
    margin-bottom: 50px;
}

.join-page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.join-page-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.join-form-container {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(8, 145, 178, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.detailed-join-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-teal);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.1);
}

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

.form-group input[type="date"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 400 !important;
    cursor: pointer;
    padding: 12px 15px;
    background: #f8fafc;
    border-radius: 8px;
    transition: background 0.3s ease;
    border: 2px solid transparent;
}

.checkbox-label:hover {
    background: #e0f2fe;
    border-color: var(--primary-teal);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-teal);
    margin: 0;
    padding: 0;
    background: transparent;
}

.consent-group {
    background: #f8fafc;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.consent-label {
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    font-size: 0.95rem;
    line-height: 1.5;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #e2e8f0;
}

.btn-primary,
.btn-secondary {
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    min-width: 150px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-teal));
    color: var(--white);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-purple));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(8, 145, 178, 0.25);
}

.btn-secondary {
    background: var(--white);
    color: var(--text-dark);
    border: 2px solid #e2e8f0;
}

.btn-secondary:hover {
    background: #f8fafc;
    border-color: var(--primary-teal);
    color: var(--primary-teal);
}

.success-message {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.success-content {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    margin: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.success-content i {
    font-size: 4rem;
    color: var(--success);
    margin-bottom: 20px;
}

.success-content h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.success-content p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Service Detail Page Styles */
.service-detail-page {
    margin-top: 80px;
    background: #ffffff;
}

/* Service Hero Section */
.service-detail-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.service-detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
}

.service-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.breadcrumb {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-link {
    cursor: pointer;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #fff;
}

.breadcrumb-separator {
    margin: 0 10px;
}

.breadcrumb-current {
    color: #fff;
    font-weight: 600;
}

.service-detail-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out;
}

.service-hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.service-hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.85);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.service-hero-actions {
    display: inline-flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.service-hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInRight 0.8s ease-out 0.3s both;
}

.service-hero-icon {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    backdrop-filter: blur(10px);
    animation: pulse 2s ease-in-out infinite;
}

.service-hero-icon i {
    font-size: 2rem;
    color: #fff;
}

#service-main-image {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

#service-main-image:hover {
    transform: scale(1.02);
}

/* Image Placeholder */
.image-placeholder {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #f0f4ff, #e0f2fe);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

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

/* Service Overview Section */
.service-overview {
    padding: 100px 0;
    background: #f8fafc;
}

.service-detail-card {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
    animation: fadeInUp 0.8s ease-out;
}

.overview-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4a5568;
    text-align: center;
}

/* Benefits Section */
.service-benefits {
    padding: 100px 0;
    background: white;
}

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

.benefit-item {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    animation: fadeInUp 0.8s ease-out;
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #667eea;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: transform 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-icon i {
    font-size: 1.8rem;
    color: white;
}

.benefit-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2d3748;
}

.benefit-item p {
    color: #4a5568;
    line-height: 1.6;
}

/* Process Section */
.service-process {
    padding: 100px 0;
    background: #f8fafc;
}

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

.process-step {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
}

.process-step:hover {
    transform: translateY(-5px);
}

.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.process-step h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2d3748;
}

.process-step p {
    color: #4a5568;
    line-height: 1.6;
}

/* Features Section */
.service-features {
    padding: 100px 0;
    background: white;
}

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



.feature-item {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}



.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: transform 0.3s ease;
}

.feature-icon i {
    font-size: 1.8rem;
    color: white;
}

.feature-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2d3748;
    margin: 0;
}

.feature-item p {
    color: #4a5568;
    line-height: 1.6;
    margin-top: 20px;
}

/* FAQ Section */
.service-faq {
    padding: 100px 0;
    background: #f8fafc;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #667eea;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2d3748;
}

.faq-question i {
    color: #667eea;
}

.faq-answer {
    color: #4a5568;
    line-height: 1.7;
    margin-left: 30px;
}

/* Reviews Section */
.service-reviews {
    padding: 100px 0;
    background: white;
}

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

.review-item {
    background: #f8fafc;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
}

.review-item:hover {
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.review-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.review-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2d3748;
    margin: 0 0 5px 0;
}

.review-rating {
    color: #ffd700;
    font-size: 1rem;
}

.review-text {
    color: #4a5568;
    line-height: 1.7;
    font-style: italic;
}

/* CTA Section */
.service-detail-cta {
    padding: 100px 0;
    background: #f8fafc;
    text-align: center;
}

.service-detail-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2d3748;
    animation: fadeInUp 0.8s ease-out;
}

.service-detail-cta p {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Common Styles */
.section-header {
    text-align: center;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out;
}

.section-subtitle {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 8px 24px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
}

.highlight {
    background: #ffff;
    color: var(--primary-purple);
    -webkit-background-clip: text;
    background-clip: text;
}

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-secondary:hover {
    background: #667eea;
    color: white;
    transform: translateY(-3px);
}



/* Tablet styles */
@media (max-width: 768px) {
    .features-section {
        padding: 40px 15px;
    }
    
    .features-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}

/* Mobile styles */
@media (max-width: 480px) {
    .features-section {
        padding: 30px 10px;
    }
    
    .features-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-item {
        padding: 15px;
    }
}

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

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-detail-hero {
        padding: 60px 0;
    }
    
    .service-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .service-detail-hero h1 {
        font-size: 2.5rem;
    }
    
    .service-hero-actions {
        justify-content: center;
    }
    
    .benefits-grid,
    .process-grid,
    .features-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .service-detail-card {
        padding: 30px;
    }
    
    .benefit-item,
    .feature-item,
    .review-item {
        padding: 30px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .service-detail-cta h2 {
        font-size: 2rem;
    }
    
    .service-overview,
    .service-benefits,
    .service-process,
    .service-features,
    .service-faq,
    .service-reviews,
    .service-detail-cta {
        padding: 60px 0;
    }

    #service-main-image {
        width: 100%;
        max-width: 400px;
        height: 400px;
        object-fit: cover;
        border-radius: 20px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease;
    }
}

@media (max-width: 480px) {
    .service-detail-hero h1 {
        font-size: 2rem;
    }
    
    .service-hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
    }
    
    .image-placeholder {
        height: 300px;
    }
}

/* Enhanced Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.modal.show .modal-content {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-light);
    transition: color 0.3s ease;
    background: none;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    color: var(--primary-teal);
    background: #f8fafc;
}

.modal-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
    text-align: center;
}

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

/* Choice Modal Styles */
.choice-modal-content {
    max-width: 700px;
    padding: 50px 40px;
}

.join-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.join-option {
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.join-option:hover {
    border-color: var(--primary-teal);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(8, 145, 178, 0.15);
}

.join-option:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-purple));
    opacity: 0.05;
    z-index: 0;
}

.join-option * {
    position: relative;
    z-index: 1;
}

.option-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.join-option:hover .option-icon {
    transform: scale(1.1);
}

.option-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.join-option h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.join-option p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 1rem;
}

.option-btn {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-teal));
    color: var(--white);
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    width: 100%;
}

.option-btn:hover {
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-purple));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(8, 145, 178, 0.25);
}

/* Responsive Design for Join Page */
@media (max-width: 768px) {
    .join-page-header h1 {
        font-size: 2.5rem;
    }
    
    .highlight {
        color: var(--secondary-purple);
    }

    .join-page-header p {
        font-size: 1.1rem;
    }
    
    .join-form-container {
        padding: 25px;
        margin: 0 15px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
    
    .choice-modal-content {
        padding: 35px 25px;
    }
    
    .join-options {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .join-page-header h1 {
        font-size: 2rem;
    }
    
    .join-form-container {
        padding: 20px;
    }
    
    .success-content {
        padding: 30px 20px;
    }
    
    .choice-modal-content {
        padding: 30px 20px;
    }
    
    .join-options {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .join-option {
        padding: 25px 20px;
    }
    
    .option-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .option-icon i {
        font-size: 2rem;
    }
    
    .join-option h3 {
        font-size: 1.3rem;
    }
}

/* About Page Styles */
.about-hero {
    margin-top: 80px;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-gradient-light) 100%);
}

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

.about-hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--primary-purple);
    font-weight: 600;
    margin-bottom: 25px;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.6;
}

.about-hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(8, 145, 178, 0.15);
}

.our-story {
    padding: 80px 0;
    background: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 40px;
}

.story-text h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    margin-top: 30px;
}

.story-text h3:first-child {
    margin-top: 0;
}

.story-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 25px;
}

.story-image {
    position: relative;
}

.story-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.story-stats {
    position: absolute;
    bottom: -30px;
    left: 30px;
    right: 30px;
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.story-stats .stat-item {
    text-align: center;
}

.story-stats .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-teal);
    margin-bottom: 5px;
}

.story-stats .stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.mission-vision {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-gradient-light) 100%);
}

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

.mvv-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(8, 145, 178, 0.15);
    border-color: var(--primary-teal);
}

.mvv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mvv-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.mvv-card h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.mvv-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1.1rem;
}

.mvv-card ul {
    text-align: left;
    color: var(--text-light);
    line-height: 1.8;
}

.mvv-card li {
    margin-bottom: 10px;
}

.mvv-card li strong {
    color: var(--primary-teal);
    font-weight: 600;
}

.why-us-detailed {
    padding: 80px 0;
    background: var(--white);
}

.detailed-features {
    margin-top: 50px;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding: 40px 0;
}

.feature-row.reverse {
    direction: rtl;
}

.feature-row.reverse * {
    direction: ltr;
}

.feature-content {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.feature-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    color: white;
    border-radius: 50%;
    display: flex
;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.feature-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.feature-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.our-commitment {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-teal));
    color: var(--white);
}

.commitment-content h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--white);
}

.commitment-content .highlight {
    color: #ffd700;
}

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

.commitment-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;
}

.commitment-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.commitment-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.commitment-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.commitment-item h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.commitment-item p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.about-cta {
    padding: 80px 0;
    background: var(--bg-light);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
}

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

.nav-link.active {
    color: var(--primary-teal);
    font-weight: 600;
}

/* About Page Responsive Design */
@media (max-width: 768px) {
    .about-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-hero-text h1 {
        font-size: 2.5rem;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-stats {
        position: static;
        margin-top: 30px;
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .mvv-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-row {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .feature-row.reverse {
        direction: ltr;
    }
    
    .feature-content {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-number {
        align-self: center;
    }
    
    .commitment-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 280px;
    }
}

/* Service Detail Page Responsive Design */
@media (max-width: 768px) {
    .service-detail-hero {
        padding: 60px 0;
    }
    
    .service-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .service-detail-hero h1 {
        font-size: 2.5rem;
    }
    
    .service-hero-actions {
        justify-content: center;
    }
    
    .service-hero-image img,
    #service-main-image,
    .image-placeholder {
        width: 100% !important;
        max-width: 400px !important;
        height: 400px !important;
    }
    
    .service-detail-card {
        padding: 30px;
    }
    
    .benefits-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-item {
        padding: 30px;
    }
    
    .process-arrow {
        display: none;
    }
    
    .testimonial-content {
        padding: 40px 30px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .service-detail-cta h2 {
        font-size: 2rem;
    }
    
    .service-overview,
    .service-benefits,
    .service-process,
    .service-faq,
    .service-testimonial,
    .service-detail-cta {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 100px 0 60px;
    }
    
    .about-hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .mvv-card {
        padding: 30px 20px;
    }
    
    .feature-row {
        padding: 20px 0;
    }
    
    .feature-number {
        font-size: 1.8rem;
        min-width: 60px;
        border-radius: 50%;
        height: 60px;
    }
    
    /* Service Detail Page Mobile Styles */
    .service-detail-hero h1 {
        font-size: 2rem;
    }
    
    .service-hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .service-hero-image img,
    #service-main-image,
    .image-placeholder {
       width: 100% !important;
        max-width: 300px !important;
        height: 300px !important;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
    }
}
