/* ============================================
   DENTAL WELLNESS - LANDING PAGE LUXURY CSS
   Book Appointment Dentist in Bathinda
   Separate Stylesheet with Premium Animations
   ============================================ */

:root {
    --lp-gold: #D4AF37;
    --lp-gold-light: #E8C547;
    --lp-gold-dark: #B8960B;
    --lp-primary: #5C5030;
    --lp-primary-dark: #3D3522;
    --lp-primary-light: #7A6B45;
    --lp-text-dark: #2C2416;
    --lp-text: #4A4235;
    --lp-text-light: #6B6050;
    --lp-text-muted: #8A8070;
    --lp-bg-light: #FAF8F5;
    --lp-bg-cream: #F5F2EC;
    --lp-bg-white: #FFFFFF;
    --lp-bg-dark: #2D2518;
    --lp-border: #E5E0D5;
    --lp-white: #FFFFFF;
    --lp-black: #000000;
    --lp-shadow-sm: 0 2px 4px rgba(44, 36, 22, 0.06);
    --lp-shadow-md: 0 4px 15px rgba(44, 36, 22, 0.1);
    --lp-shadow-lg: 0 10px 30px rgba(44, 36, 22, 0.15);
    --lp-shadow-xl: 0 20px 50px rgba(44, 36, 22, 0.2);
    --lp-shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.3);
    --lp-font: 'Poppins', sans-serif;
    --lp-font-display: 'Playfair Display', serif;
    --lp-transition: 0.3s ease;
    --lp-radius-sm: 6px;
    --lp-radius-md: 12px;
    --lp-radius-lg: 20px;
    --lp-radius-xl: 30px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--lp-font);
    font-size: 16px;
    line-height: 1.7;
    color: var(--lp-text);
    background-color: var(--lp-bg-white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--lp-transition);
}

ul, ol {
    list-style: none;
}

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

.lp-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.lp-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--lp-bg-cream), var(--lp-bg-white));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s, visibility 0.5s;
}

.lp-preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.lp-loader {
    text-align: center;
}

.lp-tooth-pulse {
    font-size: 60px;
    color: var(--lp-gold);
    animation: lpPulse 1.5s infinite;
}

@keyframes lpPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
}

.lp-loader p {
    margin-top: 15px;
    color: var(--lp-text-light);
    font-size: 14px;
    letter-spacing: 2px;
}

.lp-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    background: transparent;
    transition: var(--lp-transition);
}

.lp-navbar.scrolled {
    background: var(--lp-bg-white);
    box-shadow: var(--lp-shadow-md);
    padding: 10px 0;
}

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

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

.lp-logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.lp-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.lp-logo-text span:first-child {
    font-size: 18px;
    font-weight: 700;
    color: var(--lp-primary);
}

.lp-logo-text span:last-child {
    font-size: 12px;
    font-weight: 500;
    color: var(--lp-gold);
    letter-spacing: 2px;
}

.lp-nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.lp-nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--lp-text-dark);
    position: relative;
}

.lp-nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--lp-gold);
    transition: var(--lp-transition);
}

.lp-nav-links a:hover::after {
    width: 100%;
}

.lp-navbar.scrolled .lp-nav-links a {
    color: var(--lp-text-dark);
}

.lp-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.lp-hamburger span {
    width: 25px;
    height: 2px;
    background: var(--lp-text-dark);
    transition: var(--lp-transition);
}

.lp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--lp-radius-xl);
    cursor: pointer;
    transition: var(--lp-transition);
    border: none;
}

.lp-btn-primary {
    background: linear-gradient(135deg, var(--lp-gold), var(--lp-gold-dark));
    color: var(--lp-white);
    box-shadow: var(--lp-shadow-gold);
}

.lp-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.lp-btn-gold {
    background: linear-gradient(135deg, var(--lp-gold), var(--lp-gold-dark));
    color: var(--lp-white);
    box-shadow: var(--lp-shadow-gold);
}

.lp-btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.lp-btn-outline {
    background: transparent;
    color: var(--lp-primary);
    border: 2px solid var(--lp-primary);
}

.lp-btn-outline:hover {
    background: var(--lp-primary);
    color: var(--lp-white);
}

.lp-btn-outline-gold {
    background: transparent;
    color: var(--lp-gold);
    border: 2px solid var(--lp-gold);
}

.lp-btn-outline-gold:hover {
    background: var(--lp-gold);
    color: var(--lp-white);
}

.lp-btn-white {
    background: var(--lp-white);
    color: var(--lp-gold);
}

.lp-btn-white:hover {
    transform: translateY(-3px);
    box-shadow: var(--lp-shadow-lg);
}

.lp-btn-outline-white {
    background: transparent;
    color: var(--lp-white);
    border: 2px solid var(--lp-white);
}

.lp-btn-outline-white:hover {
    background: var(--lp-white);
    color: var(--lp-gold);
}

.lp-btn-full {
    width: 100%;
    justify-content: center;
}

.lp-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.lp-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.lp-hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--lp-bg-cream) 0%, var(--lp-bg-white) 50%, rgba(212, 175, 55, 0.1) 100%);
}

.lp-floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.lp-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
}

.lp-shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation: lpFloat 15s infinite ease-in-out;
}

.lp-shape-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(92, 80, 48, 0.1) 0%, transparent 70%);
    bottom: 10%;
    left: -50px;
    animation: lpFloat 12s infinite ease-in-out reverse;
}

.lp-shape-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    top: 40%;
    right: 30%;
    animation: lpFloat 18s infinite ease-in-out;
}

@keyframes lpFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -20px) rotate(5deg); }
    50% { transform: translate(-10px, 15px) rotate(-3deg); }
    75% { transform: translate(15px, 10px) rotate(2deg); }
}

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

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

.lp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--lp-gold), var(--lp-gold-dark));
    color: var(--lp-white);
    padding: 8px 20px;
    border-radius: var(--lp-radius-xl);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.lp-hero-content h1 {
    font-family: var(--lp-font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--lp-text-dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.lp-hero-content p {
    font-size: 17px;
    color: var(--lp-text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.lp-inline-link {
    color: var(--lp-gold);
    font-weight: 500;
    border-bottom: 1px dashed var(--lp-gold);
}

.lp-inline-link:hover {
    color: var(--lp-gold-dark);
}

.lp-hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.lp-hero-stats {
    display: flex;
    gap: 40px;
}

.lp-stat {
    text-align: center;
}

.lp-stat-num {
    font-size: 36px;
    font-weight: 700;
    color: var(--lp-gold);
    display: inline;
}

.lp-stat-plus {
    font-size: 24px;
    color: var(--lp-gold);
}

.lp-stat-label {
    display: block;
    font-size: 13px;
    color: var(--lp-text-muted);
    margin-top: 5px;
}

.lp-hero-image {
    position: relative;
}

.lp-hero-img-wrapper {
    position: relative;
    border-radius: var(--lp-radius-xl);
    overflow: hidden;
    box-shadow: var(--lp-shadow-xl);
}

.lp-hero-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.lp-hero-badge-float {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: var(--lp-white);
    padding: 15px 25px;
    border-radius: var(--lp-radius-lg);
    box-shadow: var(--lp-shadow-lg);
    animation: lpBounce 3s infinite ease-in-out;
}

@keyframes lpBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.lp-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.lp-rating i {
    color: #FFD700;
    font-size: 14px;
}

.lp-rating span {
    font-size: 14px;
    font-weight: 600;
    color: var(--lp-text-dark);
    margin-left: 5px;
}

.lp-hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.lp-hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

.lp-hero-wave path {
    fill: var(--lp-bg-white);
}

.lp-trust-strip {
    background: var(--lp-bg-white);
    padding: 40px 0;
    border-bottom: 1px solid var(--lp-border);
}

.lp-trust-items {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.lp-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lp-trust-item i {
    font-size: 24px;
    color: var(--lp-gold);
}

.lp-trust-item span {
    font-size: 14px;
    font-weight: 600;
    color: var(--lp-text-dark);
}

.lp-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--lp-gold);
    padding: 8px 18px;
    border-radius: var(--lp-radius-xl);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.lp-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.lp-section-header h2 {
    font-family: var(--lp-font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--lp-text-dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.lp-section-header p {
    color: var(--lp-text-light);
    font-size: 16px;
}

.lp-section-header.lp-light h2,
.lp-section-header.lp-light p {
    color: var(--lp-white);
}

.lp-heading-link {
    color: var(--lp-gold);
    border-bottom: 2px solid transparent;
}

.lp-heading-link:hover {
    border-bottom-color: var(--lp-gold);
}

.lp-heading-link-light {
    color: var(--lp-gold-light);
    border-bottom: 2px solid transparent;
}

.lp-heading-link-light:hover {
    border-bottom-color: var(--lp-gold-light);
}

.lp-content-link {
    color: var(--lp-gold);
    font-weight: 500;
}

.lp-content-link:hover {
    text-decoration: underline;
}

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

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

.lp-about-image {
    position: relative;
}

.lp-about-img-main {
    border-radius: var(--lp-radius-xl);
    overflow: hidden;
    box-shadow: var(--lp-shadow-xl);
}

.lp-about-img-main img {
    width: 100%;
    height: auto;
}

.lp-experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--lp-gold), var(--lp-gold-dark));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--lp-white);
    box-shadow: var(--lp-shadow-gold);
}

.lp-experience-badge .lp-years {
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.lp-experience-badge .lp-text {
    font-size: 11px;
    text-align: center;
    margin-top: 5px;
}

.lp-about-content .lp-section-tag {
    display: inline-flex;
}

.lp-about-content h2 {
    font-family: var(--lp-font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    color: var(--lp-text-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.lp-lead {
    font-size: 17px;
    color: var(--lp-text);
    font-weight: 500;
}

.lp-about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
}

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

.lp-feature i {
    color: var(--lp-gold);
    font-size: 18px;
}

.lp-feature span {
    font-size: 14px;
    font-weight: 500;
    color: var(--lp-text-dark);
}

.lp-why-choose {
    padding: 100px 0;
    background: var(--lp-bg-white);
}

.lp-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.lp-feature-card {
    background: var(--lp-bg-white);
    padding: 40px 30px;
    border-radius: var(--lp-radius-lg);
    text-align: center;
    box-shadow: var(--lp-shadow-md);
    border: 1px solid var(--lp-border);
    transition: var(--lp-transition);
}

.lp-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--lp-shadow-xl);
    border-color: var(--lp-gold);
}

.lp-feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.lp-feature-icon i {
    font-size: 32px;
    color: var(--lp-gold);
}

.lp-feature-card h3 {
    font-size: 18px;
    color: var(--lp-text-dark);
    margin-bottom: 12px;
}

.lp-feature-card p {
    color: var(--lp-text-light);
    font-size: 14px;
    line-height: 1.7;
}

.lp-services {
    padding: 100px 0;
    background: var(--lp-bg-light);
}

.lp-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.lp-service-card {
    background: var(--lp-bg-white);
    padding: 40px 30px;
    border-radius: var(--lp-radius-lg);
    text-align: center;
    box-shadow: var(--lp-shadow-md);
    transition: var(--lp-transition);
    position: relative;
    border: 1px solid var(--lp-border);
}

.lp-service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--lp-shadow-xl);
}

.lp-service-card.lp-featured {
    background: linear-gradient(135deg, var(--lp-primary), var(--lp-primary-dark));
    border-color: var(--lp-primary);
}

.lp-service-card.lp-featured h3,
.lp-service-card.lp-featured p {
    color: var(--lp-white);
}

.lp-service-card.lp-featured .lp-service-icon {
    background: rgba(255, 255, 255, 0.2);
}

.lp-service-card.lp-featured .lp-service-icon i {
    color: var(--lp-white);
}

.lp-service-card.lp-featured .lp-service-link {
    color: var(--lp-gold-light);
}

.lp-popular-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--lp-gold);
    color: var(--lp-white);
    padding: 5px 15px;
    border-radius: var(--lp-radius-sm);
    font-size: 12px;
    font-weight: 600;
}

.lp-service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.lp-service-icon i {
    font-size: 28px;
    color: var(--lp-gold);
}

.lp-service-card h3 {
    font-size: 18px;
    color: var(--lp-text-dark);
    margin-bottom: 10px;
}

.lp-service-card p {
    color: var(--lp-text-light);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.lp-service-link {
    color: var(--lp-gold);
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.lp-service-link:hover {
    gap: 10px;
}

.lp-services-more {
    text-align: center;
    margin-top: 50px;
}

.lp-treatments {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.lp-treatments-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--lp-primary-dark), var(--lp-primary));
    z-index: -1;
}

.lp-treatments-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.lp-treatment-item {
    display: flex;
    gap: 25px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--lp-radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--lp-transition);
}

.lp-treatment-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.lp-treatment-num {
    font-size: 48px;
    font-weight: 700;
    color: var(--lp-gold);
    line-height: 1;
    opacity: 0.5;
}

.lp-treatment-content h3 {
    font-size: 18px;
    color: var(--lp-white);
    margin-bottom: 8px;
}

.lp-treatment-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.7;
}

.lp-cta-banner {
    background: linear-gradient(135deg, var(--lp-gold), var(--lp-gold-dark));
    padding: 60px 0;
}

.lp-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.lp-cta-text h2 {
    font-family: var(--lp-font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--lp-white);
    margin-bottom: 10px;
}

.lp-cta-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
}

.lp-cta-link {
    color: var(--lp-white);
    text-decoration: underline;
}

.lp-cta-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.lp-doctors {
    padding: 100px 0;
    background: var(--lp-bg-white);
}

.lp-doctors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.lp-doctor-card {
    background: var(--lp-bg-white);
    border-radius: var(--lp-radius-xl);
    overflow: hidden;
    box-shadow: var(--lp-shadow-lg);
    transition: var(--lp-transition);
}

.lp-doctor-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--lp-shadow-xl);
}

.lp-doctor-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.lp-doctor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--lp-transition);
}

.lp-doctor-card:hover .lp-doctor-image img {
    transform: scale(1.05);
}

.lp-doctor-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 30px 20px 20px;
    display: flex;
    gap: 15px;
    justify-content: center;
    transform: translateY(100%);
    transition: var(--lp-transition);
}

.lp-doctor-card:hover .lp-doctor-overlay {
    transform: translateY(0);
}

.lp-doctor-overlay a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lp-white);
}

.lp-doctor-overlay a:hover {
    background: var(--lp-gold);
}

.lp-doctor-info {
    padding: 25px;
    text-align: center;
}

.lp-doctor-info h3 {
    font-size: 20px;
    color: var(--lp-text-dark);
    margin-bottom: 5px;
}

.lp-specialty {
    display: inline-block;
    background: linear-gradient(135deg, var(--lp-gold), var(--lp-gold-dark));
    color: var(--lp-white);
    padding: 5px 15px;
    border-radius: var(--lp-radius-xl);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.lp-doctor-info p {
    color: var(--lp-text-light);
    font-size: 14px;
    line-height: 1.7;
}

.lp-gallery {
    padding: 100px 0;
    background: var(--lp-bg-light);
}

.lp-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.lp-gallery-item {
    position: relative;
    border-radius: var(--lp-radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.lp-gallery-item.lp-large {
    grid-column: span 2;
    grid-row: span 2;
}

.lp-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--lp-transition);
}

.lp-gallery-item:hover img {
    transform: scale(1.1);
}

.lp-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--lp-transition);
    color: var(--lp-white);
}

.lp-gallery-item:hover .lp-gallery-overlay {
    opacity: 1;
}

.lp-gallery-overlay i {
    font-size: 30px;
    margin-bottom: 10px;
}

.lp-gallery-overlay span {
    font-weight: 600;
}

.lp-process {
    padding: 100px 0;
    background: var(--lp-bg-white);
}

.lp-process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.lp-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
}

.lp-step-num {
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 60px;
    font-weight: 700;
    color: rgba(212, 175, 55, 0.1);
    line-height: 1;
}

.lp-step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--lp-gold), var(--lp-gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--lp-shadow-gold);
}

.lp-step-icon i {
    font-size: 28px;
    color: var(--lp-white);
}

.lp-step h3 {
    font-size: 16px;
    color: var(--lp-text-dark);
    margin-bottom: 10px;
}

.lp-step p {
    color: var(--lp-text-light);
    font-size: 14px;
}

.lp-step-connector {
    flex: 0 0 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--lp-gold), transparent);
    margin-top: 40px;
}

.lp-testimonials {
    padding: 100px 0;
    background: var(--lp-bg-light);
}

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

.lp-testimonial {
    display: none;
    background: var(--lp-bg-white);
    padding: 50px;
    border-radius: var(--lp-radius-xl);
    box-shadow: var(--lp-shadow-lg);
    text-align: center;
}

.lp-testimonial.active {
    display: block;
    animation: lpFadeIn 0.5s ease;
}

@keyframes lpFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.lp-quote-icon {
    color: var(--lp-gold);
    font-size: 40px;
    opacity: 0.3;
    margin-bottom: 20px;
}

.lp-testimonial-text {
    font-size: 18px;
    color: var(--lp-text);
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
}

.lp-testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-author-info h4 {
    font-size: 16px;
    color: var(--lp-text-dark);
    margin-bottom: 3px;
}

.lp-author-info span {
    color: var(--lp-text-muted);
    font-size: 14px;
}

.lp-author-info .lp-rating {
    margin-top: 8px;
    justify-content: center;
}

.lp-author-info .lp-rating i {
    font-size: 12px;
}

.lp-testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.lp-dot {
    width: 12px;
    height: 12px;
    background: var(--lp-border);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--lp-transition);
}

.lp-dot.active {
    background: var(--lp-gold);
    width: 30px;
    border-radius: 6px;
}

.lp-pricing {
    padding: 100px 0;
    background: var(--lp-bg-white);
}

.lp-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.lp-pricing-card {
    background: var(--lp-bg-white);
    border-radius: var(--lp-radius-xl);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--lp-shadow-md);
    border: 1px solid var(--lp-border);
    transition: var(--lp-transition);
    position: relative;
}

.lp-pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--lp-shadow-xl);
}

.lp-pricing-card.lp-featured {
    background: linear-gradient(135deg, var(--lp-primary), var(--lp-primary-dark));
    border-color: var(--lp-primary);
    transform: scale(1.05);
}

.lp-pricing-card.lp-featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.lp-popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--lp-gold);
    color: var(--lp-white);
    padding: 5px 20px;
    border-radius: var(--lp-radius-xl);
    font-size: 12px;
    font-weight: 600;
}

.lp-pricing-header h3 {
    font-size: 20px;
    color: var(--lp-text-dark);
    margin-bottom: 15px;
}

.lp-pricing-card.lp-featured .lp-pricing-header h3 {
    color: var(--lp-white);
}

.lp-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 25px;
}

.lp-currency {
    font-size: 20px;
    color: var(--lp-gold);
}

.lp-amount {
    font-size: 40px;
    font-weight: 700;
    color: var(--lp-text-dark);
}

.lp-period {
    color: var(--lp-text-muted);
    font-size: 14px;
}

.lp-pricing-card.lp-featured .lp-currency,
.lp-pricing-card.lp-featured .lp-amount {
    color: var(--lp-white);
}

.lp-pricing-card.lp-featured .lp-period {
    color: rgba(255, 255, 255, 0.7);
}

.lp-pricing-features {
    margin-bottom: 30px;
}

.lp-pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--lp-border);
    font-size: 14px;
    color: var(--lp-text);
}

.lp-pricing-card.lp-featured .lp-pricing-features li {
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.1);
}

.lp-pricing-features li:last-child {
    border-bottom: none;
}

.lp-pricing-features i {
    color: var(--lp-gold);
}

.lp-pricing-card.lp-featured .lp-pricing-features i {
    color: var(--lp-gold-light);
}

.lp-pricing-note {
    text-align: center;
    color: var(--lp-text-muted);
    font-size: 14px;
    margin-top: 40px;
}

.lp-faq {
    padding: 100px 0;
    background: var(--lp-bg-light);
}

.lp-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.lp-faq-item {
    background: var(--lp-bg-white);
    border-radius: var(--lp-radius-lg);
    margin-bottom: 15px;
    box-shadow: var(--lp-shadow-sm);
    overflow: hidden;
}

.lp-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    cursor: pointer;
    transition: var(--lp-transition);
}

.lp-faq-question:hover {
    background: rgba(212, 175, 55, 0.05);
}

.lp-faq-question h3 {
    font-size: 16px;
    color: var(--lp-text-dark);
    margin: 0;
    flex: 1;
    padding-right: 20px;
}

.lp-faq-question i {
    color: var(--lp-gold);
    font-size: 18px;
    transition: var(--lp-transition);
}

.lp-faq-item.active .lp-faq-question i {
    transform: rotate(45deg);
}

.lp-faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.lp-faq-item.active .lp-faq-answer {
    padding: 0 25px 20px;
    max-height: 300px;
}

.lp-faq-answer p {
    color: var(--lp-text-light);
    font-size: 15px;
    line-height: 1.7;
}

.lp-faq-link {
    color: var(--lp-gold);
    font-weight: 500;
}

.lp-appointment {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--lp-primary), var(--lp-primary-dark));
}

.lp-appointment-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.lp-appointment-info {
    color: var(--lp-white);
}

.lp-appointment-info .lp-section-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--lp-gold-light);
}

.lp-appointment-info h2 {
    font-family: var(--lp-font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    color: var(--lp-white);
    margin-bottom: 15px;
    line-height: 1.3;
}

.lp-appointment-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.lp-appt-features {
    margin-bottom: 40px;
}

.lp-appt-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.lp-appt-feature i {
    color: var(--lp-gold-light);
    font-size: 18px;
}

.lp-appt-feature span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
}

.lp-quick-contact {
    display: flex;
    gap: 30px;
}

.lp-quick-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lp-quick-item i {
    font-size: 24px;
    color: var(--lp-gold);
}

.lp-quick-item div {
    display: flex;
    flex-direction: column;
}

.lp-quick-item span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.lp-quick-item a {
    color: var(--lp-white);
    font-weight: 600;
    font-size: 15px;
}

.lp-quick-item a:hover {
    color: var(--lp-gold-light);
}

.lp-appointment-form-wrapper {
    background: var(--lp-bg-white);
    padding: 40px;
    border-radius: var(--lp-radius-xl);
    box-shadow: var(--lp-shadow-xl);
}

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

.lp-appointment-form label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--lp-text-dark);
    margin-bottom: 8px;
}

.lp-appointment-form input,
.lp-appointment-form select,
.lp-appointment-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-md);
    font-size: 15px;
    transition: var(--lp-transition);
    background: var(--lp-bg-white);
}

.lp-appointment-form input:focus,
.lp-appointment-form select:focus,
.lp-appointment-form textarea:focus {
    border-color: var(--lp-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    outline: none;
}

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

.lp-form-note {
    font-size: 12px;
    color: var(--lp-text-muted);
    margin-top: 15px;
    text-align: center;
}

.lp-form-success {
    text-align: center;
    padding: 40px;
}

.lp-form-success i {
    font-size: 60px;
    color: #4CAF50;
    margin-bottom: 20px;
}

.lp-form-success h3 {
    font-size: 24px;
    color: var(--lp-text-dark);
    margin-bottom: 10px;
}

.lp-form-success p {
    color: var(--lp-text-light);
}

.lp-map {
    padding: 100px 0;
    background: var(--lp-bg-white);
}

.lp-map-wrapper {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 30px;
    border-radius: var(--lp-radius-xl);
    overflow: hidden;
    box-shadow: var(--lp-shadow-xl);
}

.lp-map-info {
    background: var(--lp-bg-light);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lp-map-card {
    background: var(--lp-bg-white);
    padding: 20px;
    border-radius: var(--lp-radius-md);
    text-align: center;
}

.lp-map-card i {
    font-size: 28px;
    color: var(--lp-gold);
    margin-bottom: 10px;
}

.lp-map-card h4 {
    font-size: 16px;
    color: var(--lp-text-dark);
    margin-bottom: 8px;
}

.lp-map-card p {
    font-size: 14px;
    color: var(--lp-text-light);
    line-height: 1.6;
}

.lp-directions-link {
    color: var(--lp-gold);
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.lp-directions-link:hover {
    text-decoration: underline;
}

.lp-map-embed {
    min-height: 400px;
}

.lp-map-embed iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
}

.lp-contact {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--lp-primary-dark), var(--lp-primary));
}

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

.lp-contact-content {
    color: var(--lp-white);
}

.lp-contact-content .lp-section-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--lp-gold-light);
}

.lp-contact-content h2 {
    font-family: var(--lp-font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    color: var(--lp-white);
    margin-bottom: 15px;
}

.lp-contact-content > p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.lp-contact-details {
    margin-bottom: 30px;
}

.lp-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.lp-contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lp-contact-icon i {
    font-size: 20px;
    color: var(--lp-gold);
}

.lp-contact-text h4 {
    font-size: 16px;
    color: var(--lp-white);
    margin-bottom: 5px;
}

.lp-contact-text a,
.lp-contact-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    display: block;
    line-height: 1.6;
}

.lp-contact-text a:hover {
    color: var(--lp-gold-light);
}

.lp-social-links {
    display: flex;
    gap: 15px;
}

.lp-social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lp-white);
    font-size: 18px;
    transition: var(--lp-transition);
}

.lp-social-links a:hover {
    background: var(--lp-gold);
    transform: translateY(-3px);
}

.lp-contact-image {
    border-radius: var(--lp-radius-xl);
    overflow: hidden;
    box-shadow: var(--lp-shadow-xl);
}

.lp-contact-image img {
    width: 100%;
    height: auto;
}

.lp-footer {
    background: var(--lp-bg-dark);
    color: var(--lp-white);
}

.lp-footer-top {
    padding: 80px 0 50px;
}

.lp-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.lp-footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.lp-footer-logo img {
    width: 50px;
    height: 50px;
}

.lp-footer-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.lp-footer-logo-text span:first-child {
    font-size: 16px;
    font-weight: 700;
}

.lp-footer-logo-text span:last-child {
    font-size: 11px;
    color: var(--lp-gold);
    letter-spacing: 2px;
}

.lp-footer-col > p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.lp-footer-social {
    display: flex;
    gap: 12px;
}

.lp-footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lp-white);
    transition: var(--lp-transition);
}

.lp-footer-social a:hover {
    background: var(--lp-gold);
}

.lp-footer-col h4 {
    font-size: 16px;
    color: var(--lp-white);
    margin-bottom: 25px;
    position: relative;
}

.lp-footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--lp-gold);
}

.lp-footer-col ul li {
    margin-bottom: 12px;
}

.lp-footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: var(--lp-transition);
}

.lp-footer-col ul li a:hover {
    color: var(--lp-gold);
    padding-left: 5px;
}

.lp-footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.lp-footer-contact li i {
    color: var(--lp-gold);
    font-size: 14px;
    margin-top: 3px;
}

.lp-footer-contact li span,
.lp-footer-contact li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.lp-footer-contact li a:hover {
    color: var(--lp-gold);
}

.lp-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    text-align: center;
}

.lp-footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin-bottom: 8px;
}

.lp-footer-bottom a {
    color: var(--lp-gold);
}

.lp-footer-bottom a:hover {
    text-decoration: underline;
}

.lp-seo-links {
    font-size: 12px !important;
}

.lp-back-to-top {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: var(--lp-gold);
    color: var(--lp-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--lp-shadow-gold);
    opacity: 0;
    visibility: hidden;
    transition: var(--lp-transition);
    z-index: 99;
}

.lp-back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.lp-back-to-top:hover {
    transform: translateY(-3px);
}

.lp-whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 20px;
    width: 55px;
    height: 55px;
    background: #25D366;
    color: var(--lp-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 99;
    animation: lpWaPulse 2s infinite;
}

@keyframes lpWaPulse {
    0%, 100% { box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 5px 30px rgba(37, 211, 102, 0.6); }
}

.lp-whatsapp-float:hover {
    transform: scale(1.1);
}

@media (max-width: 1024px) {
    .lp-hero .lp-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .lp-hero-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .lp-hero-content {
        text-align: center;
        max-width: 100%;
    }
    
    .lp-hero-btns {
        justify-content: center;
    }
    
    .lp-hero-stats {
        justify-content: center;
    }
    
    .lp-about-grid,
    .lp-appointment-wrapper,
    .lp-contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .lp-features-grid,
    .lp-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .lp-treatments-grid {
        grid-template-columns: 1fr;
    }
    
    .lp-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .lp-pricing-card.lp-featured {
        transform: none;
    }
    
    .lp-map-wrapper {
        grid-template-columns: 1fr;
    }
    
    .lp-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .lp-nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--lp-bg-white);
        flex-direction: column;
        padding: 80px 30px 30px;
        box-shadow: var(--lp-shadow-xl);
        transition: var(--lp-transition);
        z-index: 1001;
    }
    
    .lp-nav-links.active {
        right: 0;
    }
    
    .lp-nav-links a {
        font-size: 16px;
        padding: 10px 0;
    }
    
    .lp-hamburger {
        display: flex;
        z-index: 1002;
    }
    
    .lp-hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .lp-hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .lp-hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .lp-navbar .lp-btn-gold {
        display: none;
    }
    
    .lp-hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .lp-hero-badge-float {
        left: 10px;
        bottom: 20px;
    }
    
    .lp-hero-stats {
        gap: 25px;
    }
    
    .lp-stat-num {
        font-size: 28px;
    }
    
    .lp-trust-items {
        justify-content: center;
    }
    
    .lp-trust-item {
        flex: 0 0 45%;
    }
    
    .lp-experience-badge {
        width: 100px;
        height: 100px;
        bottom: -20px;
        right: -10px;
    }
    
    .lp-experience-badge .lp-years {
        font-size: 28px;
    }
    
    .lp-features-grid,
    .lp-services-grid {
        grid-template-columns: 1fr;
    }
    
    .lp-doctors-grid {
        grid-template-columns: 1fr;
    }
    
    .lp-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .lp-gallery-item.lp-large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .lp-process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .lp-step-connector {
        width: 2px;
        height: 40px;
        flex: 0 0 40px;
        background: linear-gradient(180deg, var(--lp-gold), transparent);
        margin: 0;
    }
    
    .lp-cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .lp-form-row {
        grid-template-columns: 1fr;
    }
    
    .lp-quick-contact {
        flex-direction: column;
        gap: 20px;
    }
    
    .lp-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .lp-footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .lp-footer-logo {
        justify-content: center;
    }
    
    .lp-footer-social {
        justify-content: center;
    }
    
    .lp-footer-contact {
        display: inline-block;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .lp-container {
        padding: 0 15px;
    }
    
    .lp-hero-content h1 {
        font-size: 2rem;
    }
    
    .lp-section-header h2 {
        font-size: 1.5rem;
    }
    
    .lp-testimonial {
        padding: 30px 20px;
    }
    
    .lp-testimonial-text {
        font-size: 16px;
    }
    
    .lp-appointment-form-wrapper {
        padding: 25px 20px;
    }
}
