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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #5D4037;
    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.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 138, 128, 0.15);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.99);
    backdrop-filter: blur(25px);
    padding: 0.7rem 0;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12);
    border-bottom: 1px solid rgba(255, 138, 128, 0.2);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-image {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid rgba(255, 138, 128, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, #FF8A80, #FF6B6B);
    padding: 2px;
    box-shadow: 0 4px 15px rgba(255, 138, 128, 0.15);
    position: relative;
    overflow: hidden;
}

.logo-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.logo-image:hover::before {
    left: 100%;
}

.logo-image:hover {
    transform: scale(1.1);
    border-color: #FF6B6B;
    box-shadow: 0 8px 25px rgba(255, 138, 128, 0.3);
    background: linear-gradient(135deg, #FF6B6B, #FF5252);
}

.logo-image:not([src]), .logo-image[src=""] {
    background: linear-gradient(135deg, #FF8A80, #FF6B6B);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.logo-image:not([src])::after, .logo-image[src=""]::after {
    content: 'BD';
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.logo-text h2 {
    color: #2C3E50;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -0.5px;
    white-space: nowrap;
    line-height: 1.2;
}

.logo-text h2:hover {
    color: #FF6B6B;
    transform: scale(1.02);
}

.logo-text span {
    color: #FF8A80;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: 5px;
    text-shadow: 1px 1px 3px rgba(255, 138, 128, 0.3);
    position: relative;
}

.logo-text span::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #FF8A80, #FF6B6B);
    border-radius: 1px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.logo-text span:hover {
    color: #FF6B6B;
    transform: translateY(-1px);
    text-shadow: 1px 1px 4px rgba(255, 138, 128, 0.5);
}

.logo-text span:hover::after {
    transform: scaleX(1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #8D6E63;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    background: transparent;
    overflow: hidden;
    margin: 0 0.2rem;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 138, 128, 0.1), transparent);
    transition: left 0.4s ease;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    color: #FF8A80;
    background: rgba(255, 138, 128, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 138, 128, 0.2);
}

/* Override general hover for specific links to prevent conflicts */
.nav-link[href="#home"]:hover,
.nav-link[href="#about"]:hover,
.nav-link[href="#services"]:hover,
.nav-link[href="#treatment-gallery"]:hover,
.nav-link[href="#clinic-gallery"]:hover,
.nav-link[href="#testimonials"]:hover,
.nav-link[href="#faq"]:hover,
.nav-link[href="#contact"]:hover {
    /* These styles are defined in the specific sections above */
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 50%;
    background: linear-gradient(90deg, #FF8A80, #FF6B6B);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover::after {
    width: 80%;
}

/* Special Effects for Different Navigation Links */
.nav-link[href="#home"]:hover {
    background: rgba(255, 138, 128, 0.15);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 138, 128, 0.25);
    color: #FF8A80;
}

.nav-link[href="#home"]:hover::after {
    background: linear-gradient(90deg, #FF8A80, #FF6B6B);
    width: 90%;
    height: 4px;
}

.nav-link[href="#about"]:hover {
    background: rgba(255, 138, 128, 0.15);
    transform: translateY(-3px) rotate(2deg);
    box-shadow: 0 6px 20px rgba(255, 138, 128, 0.25);
    color: #FF8A80;
}

.nav-link[href="#about"]:hover::after {
    background: linear-gradient(90deg, #FF8A80, #FF6B6B);
    width: 90%;
    height: 4px;
}

.nav-link[href="#services"]:hover {
    background: rgba(255, 138, 128, 0.15);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 138, 128, 0.25);
    color: #FF8A80;
}

.nav-link[href="#services"]:hover::after {
    background: linear-gradient(90deg, #FF8A80, #FF6B6B);
    width: 90%;
    height: 4px;
}

.nav-link[href="#treatment-gallery"]:hover {
    background: rgba(255, 138, 128, 0.15);
    transform: translateY(-3px) rotate(-2deg);
    box-shadow: 0 6px 20px rgba(255, 138, 128, 0.25);
    color: #FF8A80;
}

.nav-link[href="#treatment-gallery"]:hover::after {
    background: linear-gradient(90deg, #FF8A80, #FF6B6B);
    width: 90%;
    height: 4px;
}

.nav-link[href="#clinic-gallery"]:hover {
    background: rgba(255, 138, 128, 0.15);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 138, 128, 0.25);
    color: #FF8A80;
}

.nav-link[href="#clinic-gallery"]:hover::after {
    background: linear-gradient(90deg, #FF8A80, #FF6B6B);
    width: 90%;
    height: 4px;
}

.nav-link[href="#testimonials"]:hover {
    background: rgba(255, 138, 128, 0.15);
    transform: translateY(-3px) rotate(2deg);
    box-shadow: 0 6px 20px rgba(255, 138, 128, 0.25);
    color: #FF8A80;
}

.nav-link[href="#testimonials"]:hover::after {
    background: linear-gradient(90deg, #FF8A80, #FF6B6B);
    width: 90%;
    height: 4px;
}

.nav-link[href="#faq"]:hover {
    background: rgba(255, 138, 128, 0.15);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 138, 128, 0.25);
    color: #FF8A80;
}

.nav-link[href="#faq"]:hover::after {
    background: linear-gradient(90deg, #FF8A80, #FF6B6B);
    width: 90%;
    height: 4px;
}

.nav-link[href="#contact"]:hover {
    background: rgba(255, 138, 128, 0.15);
    transform: translateY(-3px) rotate(-2deg);
    box-shadow: 0 6px 20px rgba(255, 138, 128, 0.25);
    color: #FF8A80;
}

.nav-link[href="#contact"]:hover::after {
    background: linear-gradient(90deg, #FF8A80, #FF6B6B);
    width: 90%;
    height: 4px;
}

/* Active State Effects */
.nav-link.active {
    background: rgba(255, 138, 128, 0.15);
    color: #FF8A80;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 138, 128, 0.2);
}

.nav-link.active::after {
    width: 80%;
    background: linear-gradient(90deg, #FF8A80, #FF6B6B);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

.nav-toggle:hover {
    background: rgba(255, 138, 128, 0.1);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 138, 128, 0.2);
}

.bar {
    width: 28px;
    height: 3px;
    background: linear-gradient(90deg, #8D6E63, #FF8A80);
    margin: 4px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(255, 138, 128, 0.2);
}

.nav-toggle:hover .bar {
    background: linear-gradient(90deg, #FF8A80, #FF6B6B);
    box-shadow: 0 2px 6px rgba(255, 138, 128, 0.3);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(255, 179, 186, 0.1) 0%, rgba(255, 138, 128, 0.08) 50%, rgba(255, 204, 188, 0.1) 100%), url('hero-background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 138, 128, 0.03) 0%, rgba(255, 107, 107, 0.02) 50%, rgba(255, 179, 186, 0.03) 100%);
    backdrop-filter: blur(0.2px);
    z-index: 1;
}



.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 3;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    color: #5D4037;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 3px 3px 12px rgba(255, 255, 255, 0.9), 1px 1px 4px rgba(255, 138, 128, 0.3);
    position: relative;
    z-index: 3;
    letter-spacing: -1px;
}

.hero-content h1 .highlight-clinic {
    color: #2C3E50;
    font-weight: 900;
    text-shadow: 3px 3px 12px rgba(255, 255, 255, 0.9), 1px 1px 4px rgba(44, 62, 80, 0.3);
    position: relative;
    display: inline-block;
}

.hero-content h1 .highlight-clinic::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #2C3E50, #34495E);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.4);
}

.hero-content p {
    font-size: 1.2rem;
    color: #5D4037;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 3;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 3;
}

/* Treatment Keywords */
.treatment-keywords {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    margin: 1.5rem 0;
    position: relative;
    z-index: 3;
}

.keyword {
    background: rgba(255, 255, 255, 0.9);
    color: #8D6E63;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid rgba(255, 138, 128, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(255, 138, 128, 0.1);
}

.keyword:hover {
    background: rgba(255, 255, 255, 1);
    color: #FF8A80;
    border-color: #FF8A80;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 138, 128, 0.2);
}

/* Highlight Text */
.highlight {
    color: #FF8A80;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #FF8A80, #FF6B6B);
    border-radius: 1px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.highlight:hover::after {
    transform: scaleX(1);
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #FF8A80, #FF6B6B);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 138, 128, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #FF6B6B, #FF5252);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 138, 128, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #8D6E63;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 1);
    color: #5D4037;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}



/* Stats Section */
.stats {
    background: linear-gradient(135deg, #FFF8F0 0%, #FFF3E0 100%);
    padding: 4rem 0;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(255, 138, 128, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 138, 128, 0.1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 138, 128, 0.1), transparent);
    transition: left 0.6s ease;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 50px rgba(255, 138, 128, 0.3);
    background: rgba(255, 255, 255, 1);
    border-color: rgba(255, 138, 128, 0.4);
}

.stat-item i {
    font-size: 3rem;
    color: #FF8A80;
    margin-bottom: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.stat-item:hover i {
    transform: scale(1.2) rotate(5deg);
    color: #FF6B6B;
    text-shadow: 0 4px 15px rgba(255, 138, 128, 0.4);
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8D6E63;
    margin-bottom: 0.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.stat-item:hover h3 {
    transform: scale(1.1);
    color: #FF8A80;
    text-shadow: 0 2px 8px rgba(255, 138, 128, 0.3);
}

.stat-item p {
    color: #A1887F;
    font-weight: 500;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 900;
    color: #5D4037;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 12px rgba(255, 255, 255, 0.9), 1px 1px 4px rgba(255, 138, 128, 0.3);
    position: relative;
    z-index: 3;
    letter-spacing: -1px;
    line-height: 1.2;
    text-transform: uppercase;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FF8A80, #FF6B6B);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(255, 138, 128, 0.4);
}

.section-header p {
    font-size: 1.3rem;
    color: #5D4037;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 4px rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 3;
    font-weight: 600;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: linear-gradient(135deg, #FFF8F0 0%, #FFF3E0 100%);
}

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

.about-text h3 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #5D4037;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.8);
    letter-spacing: -0.5px;
    line-height: 1.2;
    text-transform: uppercase;
}

.qualifications {
    color: #FF8A80;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #5D4037;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.specializations h4 {
    color: #5D4037;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    text-shadow: 1px 1px 4px rgba(255, 255, 255, 0.6);
    letter-spacing: -0.3px;
    text-transform: uppercase;
}

.specializations ul {
    list-style: none;
}

.specializations li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #5D4037;
}

.specializations i {
    color: #FF8A80;
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.about-image img {
    width: 100%;
    height: auto;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(255, 138, 128, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.8);
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Services Section */
.services {
    padding: 6rem 0;
    background: linear-gradient(135deg, #FFF8F0 0%, #FFF3E0 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(255, 138, 128, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    border: 2px solid rgba(255, 138, 128, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    height: fit-content;
    min-height: 450px;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 138, 128, 0.1), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(255, 138, 128, 0.3);
    background: rgba(255, 255, 255, 1);
    border-color: rgba(255, 138, 128, 0.3);
}

.service-image {
    width: 100%;
    height: 180px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 12px 25px rgba(255, 138, 128, 0.2);
    position: relative;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 138, 128, 0.1), rgba(255, 107, 107, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-image::after {
    opacity: 1;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-card:hover .service-image {
    box-shadow: 0 18px 35px rgba(255, 138, 128, 0.3);
    transform: translateY(-5px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF8A80, #FF6B6B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-title-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 138, 128, 0.9), rgba(255, 107, 107, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(5px);
}

.service-card:hover .service-title-overlay {
    opacity: 1;
}

.service-title-overlay h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0;
}

.service-card:hover .service-title-overlay h3 {
    transform: translateY(0);
}

.service-card ul {
    list-style: none;
    text-align: left;
    position: relative;
    flex-grow: 1;
    margin: 0;
}

.service-card li {
    padding: 0.6rem 0;
    color: #5D4037;
    border-bottom: 1px solid rgba(255, 138, 128, 0.15);
    transition: all 0.3s ease;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

.service-card li::before {
    content: '✦';
    position: absolute;
    left: 0;
    top: 0.8rem;
    color: #FF8A80;
    font-size: 0.9rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.service-card li:hover {
    color: #FF8A80;
    padding-left: 2rem;
    background: rgba(255, 138, 128, 0.05);
    border-radius: 8px;
    margin: 0 -0.5rem;
    padding-left: 1.5rem;
}

.service-card li:hover::before {
    opacity: 1;
    transform: scale(1.2);
    color: #FF6B6B;
}

.service-card li:last-child {
    border-bottom: none;
}

/* Service Card Floating Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

.service-card {
    animation: float 6s ease-in-out infinite;
}

.service-card:nth-child(2) {
    animation-delay: 1s;
}

.service-card:nth-child(3) {
    animation-delay: 2s;
}

.service-card:nth-child(4) {
    animation-delay: 3s;
}

.service-card:hover {
    animation-play-state: paused;
}

/* Treatment Gallery Section */
.treatment-gallery {
    padding: 6rem 0;
    background: linear-gradient(135deg, #FFF8F0 0%, #FFF3E0 100%);
    position: relative;
}

.treatment-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,138,128,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.treatment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
    align-items: start;
}

.treatment-item {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(255, 138, 128, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    transform: translateY(0);
    height: 450px;
    display: flex;
    flex-direction: column;
}

.treatment-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 138, 128, 0.1), rgba(255, 107, 107, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.treatment-item:hover::before {
    opacity: 1;
}

.treatment-item:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 20px 40px rgba(255, 138, 128, 0.25);
    border-color: rgba(255, 138, 128, 0.4);
}

/* Image Items */
.image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    flex: 1;
}

.image-item:hover img {
    transform: scale(1.03);
}

/* Video Items */
.video-item {
    background: linear-gradient(135deg, rgba(255, 138, 128, 0.05), rgba(255, 107, 107, 0.05));
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 22px;
    margin: 0;
    cursor: pointer;
    flex: 1;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.video-container:hover video {
    transform: scale(1.02);
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(255, 138, 128, 0.95), rgba(255, 107, 107, 0.9));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    border: 4px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 30px rgba(255, 138, 128, 0.4);
    z-index: 3;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.video-play-button:hover {
    background: linear-gradient(135deg, rgba(255, 138, 128, 1), rgba(255, 107, 107, 1));
    transform: translate(-50%, -50%) scale(1.08);
    box-shadow: 0 15px 35px rgba(255, 138, 128, 0.5);
    border-color: rgba(255, 255, 255, 1);
}

.video-play-button i {
    color: white;
    font-size: 2rem;
    margin-left: 4px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Enhanced Overlay */
.treatment-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(141, 110, 99, 0.98));
    color: white;
    padding: 2.5rem 2rem 2rem;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    z-index: 3;
}

.treatment-item:hover .treatment-overlay {
    transform: translateY(0);
}

.overlay-content {
    text-align: center;
}

.treatment-overlay h4 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    letter-spacing: 0.5px;
}

.treatment-overlay p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    font-weight: 500;
}

.treatment-type {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.25);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.treatment-type:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.treatment-type i {
    font-size: 1.2rem;
}

/* Video Item Specific Styles */
.video-item .treatment-overlay {
    background: linear-gradient(transparent, rgba(255, 138, 128, 0.95));
}

.video-item .treatment-type {
    background: rgba(255, 255, 255, 0.3);
    color: #FF8A80;
    font-weight: 700;
    border-color: rgba(255, 138, 128, 0.5);
}

.video-item .treatment-type:hover {
    background: rgba(255, 255, 255, 0.4);
    color: #FF6B6B;
    border-color: rgba(255, 138, 128, 0.7);
}

/* Before and After Treatment Items */
.before-after-item {
    background: linear-gradient(135deg, rgba(255, 138, 128, 0.05), rgba(255, 107, 107, 0.05));
}

.before-after-container {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
    gap: 0;
}

.before-section,
.after-section {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    min-height: 400px;
}

.before-section {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.after-section {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.before-section img,
.after-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.before-after-container:hover .before-section img,
.before-after-container:hover .after-section img {
    transform: scale(1.02);
}

.before-label,
.after-label {
    position: absolute;
    top: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 3;
}

.before-label {
    left: 15px;
    background: linear-gradient(135deg, rgba(255, 138, 128, 0.9), rgba(255, 107, 107, 0.8));
}

.after-label {
    right: 15px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.9), rgba(69, 160, 73, 0.8));
}

/* Before and After Item Specific Styles */
.before-after-item .treatment-overlay {
    background: linear-gradient(transparent, rgba(255, 138, 128, 0.95));
}

.before-after-item .treatment-type {
    background: rgba(255, 255, 255, 0.3);
    color: #FF8A80;
    font-weight: 700;
    border-color: rgba(255, 138, 128, 0.5);
}

.before-after-item .treatment-type:hover {
    background: rgba(255, 255, 255, 0.4);
    color: #FF6B6B;
    border-color: rgba(255, 138, 128, 0.7);
}

/* Treatment Items Floating Animation */
@keyframes treatmentFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

.treatment-item {
    animation: treatmentFloat 8s ease-in-out infinite;
}

.treatment-item:nth-child(2) {
    animation-delay: 1.5s;
}

.treatment-item:nth-child(3) {
    animation-delay: 3s;
}

.treatment-item:nth-child(4) {
    animation-delay: 4.5s;
}

.treatment-item:nth-child(5) {
    animation-delay: 6s;
}

.treatment-item:nth-child(6) {
    animation-delay: 7.5s;
}

.treatment-item:nth-child(7) {
    animation-delay: 9s;
}

.treatment-item:nth-child(8) {
    animation-delay: 10.5s;
}

.treatment-item:hover {
    animation-play-state: paused;
}

/* Clinic Gallery Section */
.clinic-gallery {
    padding: 6rem 0;
    background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
}

.clinic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.clinic-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(255, 138, 128, 0.15);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.clinic-item:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 45px rgba(255, 138, 128, 0.25);
}

.clinic-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.clinic-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(141, 110, 99, 0.9));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.clinic-item:hover .clinic-overlay {
    transform: translateY(0);
}

.clinic-overlay h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(255, 248, 240, 0.3) 0%, rgba(255, 243, 224, 0.3) 100%), url('Testimonial/osmatology happy cutomer.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 138, 128, 0.02) 0%, rgba(255, 107, 107, 0.01) 100%);
    backdrop-filter: blur(1px);
    z-index: 1;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    z-index: 2;
}

.testimonial-card {
    display: none;
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(255, 138, 128, 0.1);
    text-align: center;
    border: 1px solid rgba(255, 138, 128, 0.1);
}

.testimonial-card.active {
    display: block;
}

.testimonial-content p {
    font-size: 1.2rem;
    color: #5D4037;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.testimonial-author h4 {
    color: #8D6E63;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: #FF8A80;
    font-weight: 500;
}

.testimonial-dots {
    text-align: center;
    margin-top: 2rem;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: rgba(255, 138, 128, 0.3);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active, .dot:hover {
    background-color: #FF8A80;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, #FFF8F0 0%, #FFF3E0 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #FF8A80;
    margin-right: 1rem;
    margin-top: 0.2rem;
}

.contact-item h4 {
    color: #5D4037;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    font-weight: 800;
    text-shadow: 1px 1px 4px rgba(255, 255, 255, 0.6);
    letter-spacing: -0.2px;
    text-transform: uppercase;
}

.contact-item p {
    color: #5D4037;
    line-height: 1.6;
}

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

.contact-item a:hover {
    color: #FF6B6B;
}

/* Address link styling */
.contact-item a[href*="maps.google.com"] {
    color: #FF8A80;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.contact-item a[href*="maps.google.com"]:hover {
    color: #FF6B6B;
    border-bottom: 1px solid #FF6B6B;
    text-shadow: 0 1px 2px rgba(255, 138, 128, 0.2);
}

.social-links {
    margin-top: 1.5rem;
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF8A80, #FF6B6B);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    margin-right: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 138, 128, 0.3);
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.social-links a:hover::before {
    left: 100%;
}

.social-links a:hover {
    background: linear-gradient(135deg, #FF6B6B, #FF5252);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 138, 128, 0.4);
}

.social-links a i {
    font-size: 1.3rem;
    z-index: 1;
    position: relative;
}

/* WhatsApp specific styling */
.social-links a[href*="wa.me"] {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.social-links a[href*="wa.me"]:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
}

/* Phone specific styling */
.social-links a[href*="tel:"] {
    background: linear-gradient(135deg, #4CAF50, #45A049);
}

.social-links a[href*="tel:"]:hover {
    background: linear-gradient(135deg, #45A049, #388E3C);
}

/* Email specific styling */
.social-links a[href*="mailto:"] {
    background: linear-gradient(135deg, #2196F3, #1976D2);
}

.social-links a[href*="mailto:"]:hover {
    background: linear-gradient(135deg, #1976D2, #1565C0);
}

/* Map specific styling */
.social-links a[href*="maps.google.com"] {
    background: linear-gradient(135deg, #FF5722, #E64A19);
}

.social-links a[href*="maps.google.com"]:hover {
    background: linear-gradient(135deg, #E64A19, #D84315);
}

/* Instagram specific styling */
.social-links a[href*="instagram"] {
    background: linear-gradient(135deg, #E4405F, #C13584);
}

.social-links a[href*="instagram"]:hover {
    background: linear-gradient(135deg, #C13584, #833AB4);
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 138, 128, 0.1);
    box-shadow: 0 10px 30px rgba(255, 138, 128, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 138, 128, 0.2);
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.8);
}

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

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

/* Footer */
.footer {
    background: linear-gradient(135deg, #8D6E63 0%, #6D4C41 100%);
    color: #FFCCBC;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #FFB3BA;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    font-weight: 900;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.footer-section h4 {
    color: #FFB3BA;
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
    font-weight: 800;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.3px;
    text-transform: uppercase;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #FFE0B2;
    font-size: 0.95rem;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.footer-section ul li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #FF8A80;
    font-size: 0.8rem;
    top: 1px;
}

.footer-section ul li a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: #FFA500;
}

/* Footer address link styling */
.footer-section a[href*="maps.google.com"] {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-section a[href*="maps.google.com"]:hover {
    color: #FFA500;
}

/* Email link styling for better visibility */
.footer-section a[href^="mailto:"] {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
    font-size: 1.05rem;
}

.footer-section a[href^="mailto:"]:hover {
    color: #FFA500;
    text-shadow: 0 1px 3px rgba(255, 215, 0, 0.4);
}

/* Contact section email link styling */
.contact-item a[href^="mailto:"] {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
    font-size: 1.1rem;
}

.contact-item a[href^="mailto:"]:hover {
    color: #FFA500;
    text-shadow: 0 1px 3px rgba(255, 215, 0, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 179, 186, 0.2);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: #FFE0B2;
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .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: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-logo {
        gap: 0.5rem;
    }

    .logo-image {
        width: 45px;
        height: 45px;
        object-fit: contain;
        padding: 2px;
    }

    .logo-text h2 {
        font-size: 1.5rem;
    }

    .logo-text span {
        font-size: 0.8rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .treatment-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
    }
    
    .treatment-item {
        height: 400px;
    }
    
    .before-section,
    .after-section {
        min-height: 350px;
    }

    .video-play-button {
        width: 60px;
        height: 60px;
    }

    .video-play-button i {
        font-size: 1.4rem;
    }

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

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-buttons {
        justify-content: center;
    }
    
    /* Footer Social Links Responsive */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 1.5rem;
    }
    
    /* Footer Responsive Enhancements */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-section {
        padding: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .footer-section h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .footer-section ul li {
        margin-bottom: 0.6rem;
        padding-left: 1.2rem;
    }
    
    .footer-section ul li::before {
        font-size: 0.7rem;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 1.2rem;
    }


}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 1.5rem;
        min-height: 400px;
    }

    .testimonial-card {
        padding: 2rem;
    }

    .treatment-keywords {
        gap: 0.5rem;
        margin: 1rem 0;
    }

    .keyword {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    .nav-logo {
        gap: 0.3rem;
    }

    .logo-image {
        width: 40px;
        height: 40px;
        object-fit: contain;
        padding: 2px;
    }

    .logo-text h2 {
        font-size: 1.1rem;
        white-space: nowrap;
    }

    .logo-text span {
        font-size: 0.7rem;
        font-weight: 700;
        display: inline;
        margin-left: 3px;
        color: #FF8A80;
        text-shadow: 1px 1px 2px rgba(255, 138, 128, 0.3);
    }
}



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

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Button Hover Effects */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

/* Floating Call Button */
.floating-call-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.call-btn {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FF8A80, #FF6B6B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(255, 138, 128, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: callPulse 2s ease-in-out infinite;
}

.call-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.call-btn:hover::before {
    left: 100%;
}

.call-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 138, 128, 0.6);
    background: linear-gradient(135deg, #FF6B6B, #FF5252);
}

.call-btn i {
    font-size: 1.8rem;
    position: relative;
    z-index: 2;
    animation: phoneShake 3s ease-in-out infinite;
}

.call-tooltip {
    background: rgba(141, 110, 99, 0.95);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.floating-call-btn:hover .call-tooltip {
    opacity: 1;
    transform: translateY(0);
}

/* Call Button Animations */
@keyframes callPulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(255, 138, 128, 0.4);
    }
    50% {
        box-shadow: 0 8px 25px rgba(255, 138, 128, 0.6), 0 0 0 10px rgba(255, 138, 128, 0.1);
    }
}

@keyframes phoneShake {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: rotate(-2deg);
    }
    20%, 40%, 60%, 80% {
        transform: rotate(2deg);
    }
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: linear-gradient(135deg, #FFF8F0 0%, #FFF3E0 100%);
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="faq-dots" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1.5" fill="rgba(255,138,128,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23faq-dots)"/></svg>');
    opacity: 0.6;
}

.faq-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    margin-bottom: 2rem;
    box-shadow: 0 15px 35px rgba(255, 138, 128, 0.15);
    border: 2px solid rgba(255, 138, 128, 0.1);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(10px);
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 138, 128, 0.05), rgba(255, 107, 107, 0.02));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.faq-item:hover::before {
    opacity: 1;
}

.faq-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(255, 138, 128, 0.25);
    border-color: rgba(255, 138, 128, 0.3);
}

.faq-question {
    padding: 2.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 240, 0.95));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.faq-question::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 138, 128, 0.15), transparent);
    transition: left 0.8s ease;
}

.faq-question:hover::before {
    left: 100%;
}

.faq-question:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(255, 248, 240, 1));
    transform: translateX(15px);
    box-shadow: inset 0 0 0 2px rgba(255, 138, 128, 0.2);
}

.faq-question h3 {
    font-size: 1.3rem;
    color: #5D4037;
    margin: 0;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 3;
    letter-spacing: -0.3px;
}

.faq-question:hover h3 {
    color: #FF8A80;
    transform: scale(1.03);
    text-shadow: 0 2px 8px rgba(255, 138, 128, 0.2);
}

.faq-question i {
    font-size: 1.4rem;
    color: #FF8A80;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 3;
    background: rgba(255, 138, 128, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 138, 128, 0.2);
}

.faq-question:hover i {
    color: #FF6B6B;
    transform: scale(1.15) rotate(180deg);
    background: rgba(255, 138, 128, 0.2);
    border-color: rgba(255, 138, 128, 0.4);
    box-shadow: 0 4px 15px rgba(255, 138, 128, 0.3);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 248, 240, 0.8));
    position: relative;
    z-index: 2;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 138, 128, 0.3), transparent);
}

.faq-answer p {
    padding: 0 2.5rem 2.5rem;
    color: #5D4037;
    line-height: 1.8;
    margin: 0;
    font-size: 1.05rem;
    font-weight: 500;
    position: relative;
    z-index: 3;
}

/* FAQ Floating Animation */
@keyframes faqFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

.faq-item {
    animation: faqFloat 6s ease-in-out infinite;
}

.faq-item:nth-child(2) {
    animation-delay: 1s;
}

.faq-item:nth-child(3) {
    animation-delay: 2s;
}

.faq-item:nth-child(4) {
    animation-delay: 3s;
}

.faq-item:nth-child(5) {
    animation-delay: 4s;
}

.faq-item:hover {
    animation-play-state: paused;
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-content {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .faq-question {
        padding: 2rem;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-answer p {
        padding: 0 2rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-question i {
        width: 35px;
        height: 35px;
    }
    
    /* Social Links Mobile Responsive */
    .social-links {
        justify-content: center;
        gap: 0.8rem;
    }
    
    .social-links a {
        width: 45px;
        height: 45px;
    }
    
        .social-links a i {
        font-size: 1.2rem;
    }
}
    
    .faq-answer p {
        padding: 0 1.5rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* Responsive Floating Call Button */
@media (max-width: 768px) {
    .floating-call-btn {
        bottom: 20px;
        right: 20px;
    }
    
    .call-btn {
        width: 60px;
        height: 60px;
    }
    
    .call-btn i {
        font-size: 1.5rem;
    }
    
    .call-tooltip {
        font-size: 0.8rem;
        padding: 6px 10px;
    }
}

@media (max-width: 480px) {
    .floating-call-btn {
        bottom: 15px;
        right: 15px;
    }
    
    .call-btn {
        width: 55px;
        height: 55px;
    }
    
    .call-btn i {
        font-size: 1.3rem;
    }
}
