/* ===== LANDING PAGE STYLES - CLEANED & OPTIMIZED ===== */

/* --- Base & Layout --- */
.landing-page-wrapper {
    overflow-x: hidden;
}

/* Header */
.landing-custom-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 40px;
    background: transparent;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.landing-custom-header.scrolled {
    background: rgba(10, 43, 62, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 40px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
}

.landing-header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.landing-header-logo .custom-logo {
    max-height: 50px;
    width: auto;
}

.landing-logo-text {
    font-size: 28px;
    font-weight: 800;
    color: white;
    text-decoration: none;
}

.landing-header-btn {
    background: #8c255e;
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.landing-header-btn:hover {
    background: #6a1a46;
    transform: translateY(-2px);
}

/* Hero Section */
.landing-hero {
    min-height: 90vh;
    background: #0A2B3E;
    display: flex;
    align-items: center;
    padding: 120px 40px 80px;
    position: relative;
}

.landing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url('https://images.unsplash.com/photo-1629909613654-28e377c37b09?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') no-repeat center center/cover;
    opacity: 0.15;
    z-index: 0;
}

.landing-hero-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

.landing-hero h1 {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.landing-hero p {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
}

.landing-hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-landing-primary, .btn-landing-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-landing-primary {
    background: #8c255e;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-landing-primary:hover {
    background: #6a1a46;
    transform: translateY(-2px);
}

.btn-landing-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-landing-secondary:hover {
    background: white;
    color: #0A2B3E;
    transform: translateY(-2px);
}

/* Hero Right Side Content */
.landing-hero-right {
    position: relative;
    z-index: 2;
}

.hero-video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.hero-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.hero-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

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

.hero-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.hero-form-wrapper .wpcf7-form {
    margin: 0;
}

.hero-form-wrapper input[type="text"],
.hero-form-wrapper input[type="email"],
.hero-form-wrapper input[type="tel"],
.hero-form-wrapper textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 14px;
}

.hero-form-wrapper input[type="submit"] {
    width: 100%;
    background: #8c255e;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.hero-form-wrapper input[type="submit"]:hover {
    background: #6a1a46;
}


/* Responsive */
@media (max-width: 968px) {
    .landing-hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .landing-hero h1 {
        font-size: 42px;
    }
}

/* Trust Section */
.landing-trust {
    padding: 60px 40px;
    background: #f8f9fa;
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr 1.5fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.trust-rating {
    text-align: center;
}

.trust-stars {
    font-size: 28px;
    color: #fbbf24;
    margin-bottom: 8px;
}

.trust-number {
    font-size: 44px;
    font-weight: 800;
    color: #0A2B3E;
    margin: 6px 0;
}

.trust-label {
    color: #6b7280;
    font-size: 13px;
}

.testimonial-mini {
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e8e8ef;
}

.testimonial-mini p {
    font-size: 14px;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 12px;
}

.testimonial-author {
    font-weight: 700;
    color: #0A2B3E;
    font-size: 13px;
}

/* Trust Contact Form Button */
.trust-contact-form {
    text-align: center;
    grid-column: span 2;
    margin-top: 10px;
}

.trust-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trust-contact-primary {
    background: #3A7B6E;
    color: white;
    box-shadow: 0 4px 12px rgba(58, 123, 110, 0.3);
}

.trust-contact-primary:hover {
    background: #2d5f56;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(58, 123, 110, 0.4);
}

.trust-contact-secondary {
    background: transparent;
    color: #3A7B6E;
    border: 2px solid #3A7B6E;
}

.trust-contact-secondary:hover {
    background: #3A7B6E;
    color: white;
    transform: translateY(-2px);
}

.trust-contact-link {
    background: transparent;
    color: #3A7B6E;
    font-weight: 600;
    text-transform: none;
    letter-spacing: normal;
    text-decoration: underline;
    padding: 8px 16px;
}

.trust-contact-link:hover {
    color: #2d5f56;
    text-decoration: none;
}

/* Inline CTA Bar */
.landing-inline-cta {
    background: linear-gradient(135deg, #1a5c4b 0%, #1a4a3e 100%);
    padding: 28px 40px;
}

.inline-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
}

.inline-cta-container h3 {
    color: white;
    font-size: 20px;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
}

.inline-cta-container input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-bottom: 2px solid rgba(255,255,255,0.3);
    background: transparent;
    color: white;
    font-size: 15px;
    outline: none;
    min-width: 0;
}

.inline-cta-container input::placeholder {
    color: rgba(255,255,255,0.6);
}

.inline-cta-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: white;
    color: #1a5c4b;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
}

.inline-cta-submit:hover {
    background: #f0fdf4;
    transform: translateY(-2px);
}

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

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #0A2B3E;
    margin-bottom: 15px;
}

.section-header p {
    color: #6b7280;
    font-size: 18px;
}

/* Services Grid (Problem Awareness) */
.landing-services {
    padding: 80px 40px;
    background: #f9fafb;
}

.landing-services.alt-bg {
    background: #f9fafb;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #f9fafb;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #8c255e;
}

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

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0A2B3E;
    margin-bottom: 12px;
}

.service-card p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
}

/* Why Us / Benefits / Doctors */
.landing-why-us {
    padding: 80px 40px;
    background: #f0f9ff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 20px;
    transition: all 0.3s ease;
}

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

.benefit-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0A2B3E;
    margin-bottom: 10px;
}

.benefit-item p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
}

/* Before After / Doctor Cards */
.landing-before-after {
    padding: 80px 40px;
    background: white;
}

.before-after-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.transformation-card {
    background: #f9fafb;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.transformation-card img{
height:auto!important;
}

.transformation-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: #e5e7eb;
    position: relative;
}

.transformation-images img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.transformation-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.transformation-label.after {
    left: auto;
    right: 10px;
}

.transformation-info {
    padding: 20px;
    text-align: center;
}

.transformation-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0A2B3E;
    margin-bottom: 8px;
}

.transformation-info p {
    color: #6b7280;
    font-size: 13px;
}

/* Treatments - Image Text Layout */
.services-image-text-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

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

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

.service-row.reverse > * {
    direction: ltr;
}

.service-image-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.service-image-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.service-image-wrapper:hover img {
    transform: scale(1.05);
}

.service-badge-tag {
    display: inline-block;
    background: #e0f2e9;
    color: #3A7B6E;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.service-content-wrapper h3 {
    font-size: 36px;
    font-weight: 700;
    color: #1C1C1C;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.service-content-wrapper p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 15px;
    color: #4b5563;
}

.service-features li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #e0f2e9;
    color: #3A7B6E;
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
}

.service-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #3A7B6E;
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-cta-btn:hover {
    background: #2d6156;
    transform: translateY(-2px);
}

/* Accordion Services Section */
.landing-accordion-services {
    padding: 80px 40px;
    background: #e3ccfc;
}

.accordion-services-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.accordion-services-title {
    font-size: 48px;
    font-weight: 600;
    color: #1C1C1C;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.accordion-services-subtitle {
    font-size: 16px;
    color: #6b7280;
    max-width: 900px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.services-badges {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.service-badge {
    background: rgba(255, 255, 255, 0.8);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    color: #1C1C1C;
}

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

.accordion-item {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 16px;
}

.accordion-header {
    width: 100%;
    padding: 24px 28px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 20px;
    font-weight: 600;
    color: #1C1C1C;
    text-align: left;
    transition: all 0.2s;
}

.accordion-header:hover {
    background: rgba(0, 0, 0, 0.02);
    color: #3A7B6E;
}

.accordion-icon {
    font-size: 28px;
    font-weight: 300;
    transition: transform 0.3s;
}

.accordion-item.active .accordion-header {
    color: #3A7B6E;
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 28px;
}

.accordion-item.active .accordion-body {
    max-height: 300px;
    padding: 0 28px 24px;
}

.accordion-body p {
    font-size: 15px;
    line-height: 1.7;
    color: #6b7280;
}

.accordion-service-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: opacity 0.3s ease;
}

.accordion-service-image.fade {
    opacity: 0.5;
}

/* Mid Page CTA */
.landing-mid-cta {
    margin: 80px 40px;
    background: linear-gradient(135deg, #1a5c4b 0%, #0A2B3E 100%);
    border-radius: 32px;
    overflow: hidden;
}

.mid-cta-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 400px;
}

.mid-cta-left {
    padding: 60px;
    color: white;
    position: relative;
    z-index: 2;
}

.mid-cta-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.mid-cta-left h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.mid-cta-left p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    line-height: 1.6;
}

.mid-cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-mid-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #0A2B3E;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-mid-cta-primary:hover {
    transform: translateY(-2px);
    background: #f0f0f0;
}

.btn-mid-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-mid-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

.mid-cta-right {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.mid-cta-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mid-cta-right::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #1a5c4b 0%, transparent 50%);
    z-index: 1;
}

.mid-cta-stats {
    display: flex;
    gap: 40px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.mid-cta-stat-number {
    font-size: 32px;
    font-weight: 800;
    color: white;
    margin-bottom: 4px;
    letter-spacing: -1px;
}

.mid-cta-stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Video Testimonials */
.landing-video-testimonials {
    padding: 80px 40px;
    background: #1a1a2e;
    overflow: hidden;
}

.landing-video-testimonials .section-header h2 {
    color: white;
}

.landing-video-testimonials .section-header p {
    color: rgba(255,255,255,0.7);
}

.video-testi-scroll {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 10px 0 20px;
    scroll-snap-type: x mandatory;
}

.video-testi-card {
    min-width: 280px;
    max-width: 280px;
    border-radius: 20px;
    overflow: hidden;
    background: #222244;
    scroll-snap-align: start;
    flex-shrink: 0;
    position: relative;
}

.video-testi-thumb {
    position: relative;
    width: 100%;
    height: 360px;
    cursor: pointer;
    overflow: hidden;
}

.video-testi-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-testi-thumb::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
    z-index: 1;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: rgba(255, 0, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: transform 0.3s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.video-play-btn::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 0 12px 22px;
    border-color: transparent transparent transparent white;
    margin-left: 4px;
}

.video-testi-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 16px;
    z-index: 2;
    color: white;
}

.video-testi-caption h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.video-testi-info {
    padding: 16px;
    text-align: center;
}

.video-testi-info h4 {
    color: white;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.video-testi-info p {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
}

.video-testi-tag {
    display: inline-block;
    background: rgba(139, 92, 246, 0.2);
    color: #a78bfa;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 8px;
}

/* Video Modal */
.video-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.video-modal-overlay.active {
    display: flex;
}

.video-modal-content {
    width: 90%;
    max-width: 400px;
    aspect-ratio: 9/16;
    position: relative;
}

.video-modal-content iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 16px;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
}

/* Text Testimonials Slider */
.landing-text-testimonials {
    padding: 100px 40px;
    background: #ffffff;
    overflow: hidden;
}

.text-testi-slider {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.text-testi-track {
    display: flex;
    gap: 28px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.text-testi-card {
    width: calc(33.333% - 19px);
    min-width: calc(33.333% - 19px);
    background: white;
    border-radius: 16px;
    padding: 36px 30px 30px;
    border: 1px solid #e8e8ef;
    border-left-width: 4px;
    flex-shrink: 0;
}

.text-testi-card:nth-child(1) { border-left-color: #8c255e; }
.text-testi-card:nth-child(2) { border-left-color: #3b82f6; }
.text-testi-card:nth-child(3) { border-left-color: #10b981; }
.text-testi-card:nth-child(4) { border-left-color: #f59e0b; }
.text-testi-card:nth-child(5) { border-left-color: #8b5cf6; }

.text-testi-card .review-text {
    font-size: 15px;
    line-height: 1.75;
    color: #4b5563;
    margin-bottom: 28px;
}

.text-testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f5;
}

.text-testi-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.reviewer-name {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 2px;
}

.reviewer-service {
    font-size: 13px;
    color: #9ca3af;
    font-weight: 500;
}

.testi-slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 50px;
}

.testi-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #e5e7eb;
    background: white;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s;
}

.testi-nav-btn:hover {
    background: #1a1a2e;
    border-color: #1a1a2e;
    color: white;
}

.testi-dots {
    display: flex;
    gap: 8px;
}

.testi-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    padding: 0;
}

.testi-dot.active {
    background: #8c255e;
    width: 28px;
    border-radius: 10px;
}

/* CTA Form Section */
.landing-cta-form {
    padding: 100px 40px;
    background: #ffffff;
    position: relative;
}

.form-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.form-left h2 {
    font-size: 44px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 16px;
    line-height: 1.15;
}

.form-left > p {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea {
    width: 100%;
    padding: 16px 20px;
    margin-bottom: 20px;
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    background: #fff;
    color: #1a1a2e;
}

.appointment-form input:focus,
.appointment-form select:focus {
    outline: none;
    border-color: #1a1a2e;
    box-shadow: 0 0 0 3px rgba(26, 26, 46, 0.06);
}

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

.form-row input,
.form-row select {
    margin-bottom: 20px;
}

.btn-submit-landing {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 40px;
    background: #1a1a2e;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit-landing:hover {
    background: #2d2d4e;
    transform: translateY(-2px);
}

.form-cta-group {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 8px;
}

.btn-cta-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    background: transparent;
    color: #1a1a2e;
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-cta-call:hover {
    border-color: #1a1a2e;
    background: #f9fafb;
    transform: translateY(-2px);
}

.btn-cta-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-cta-whatsapp:hover {
    background: #1fb855;
    transform: translateY(-2px);
}

.form-right-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    min-height: 480px;
}

.form-right-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form-location-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.85);
    backdrop-filter: blur(10px);
    padding: 20px 28px;
    display: flex;
    align-items: center;
    gap: 16px;
}

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

.form-location-label {
    font-size: 15px;
    font-weight: 700;
    color: white;
}

.form-location-address {
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    line-height: 1.4;
}

/* Sticky CTA */
.sticky-cta-landing {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    gap: 12px;
}

.sticky-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.sticky-btn:hover {
    transform: translateY(-3px);
}

.sticky-call {
    background: #10b981;
    color: white;
}

.sticky-whatsapp {
    background: #25D366;
    color: white;
}

/* Footer */
.landing-simple-footer {
    background: #1a5c4b;
    color: white;
    padding: 20px 40px;
}

.landing-simple-footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.landing-simple-footer-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

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

.landing-simple-footer-social a {
    width: 36px;
    height: 36px;
    background: #f97316;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.landing-simple-footer-social a:hover {
    transform: translateY(-2px);
}

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

.landing-hero,
.landing-trust,
.landing-services,
.landing-why-us,
.landing-before-after,
.landing-cta-form {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive */
@media (max-width: 968px) {
    .landing-hero h1 { font-size: 40px; }
    .trust-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .form-container { grid-template-columns: 1fr; gap: 40px; }
    .form-right-image { min-height: 300px; }
    .section-header h2 { font-size: 32px; }
    .mid-cta-container { grid-template-columns: 1fr; }
    .mid-cta-left { padding: 40px 30px; }
    .mid-cta-left h2 { font-size: 32px; }
    .accordion-services-content { grid-template-columns: 1fr; gap: 40px; }
    .accordion-service-image { height: 400px; }
    .services-image-text-layout { gap: 60px; }
    .service-row { grid-template-columns: 1fr; gap: 40px; }
    .service-row.reverse { direction: ltr; }
    .service-image-wrapper img { height: 300px; }
    .service-content-wrapper h3 { font-size: 28px; }
    .text-testi-card { width: calc(50% - 14px); min-width: calc(50% - 14px); }
}

@media (max-width: 768px) {
    .landing-custom-header { padding: 16px 20px; }
    .landing-hero { min-height: 70vh; padding: 100px 20px 60px; }
    .landing-hero h1 { font-size: 32px; }
    .landing-hero p { font-size: 16px; }
    .landing-hero-buttons { flex-direction: column; }
    .landing-hero-buttons a { text-align: center; justify-content: center; }
    .landing-trust, .landing-services, .landing-why-us, .landing-before-after { padding: 60px 20px; }
    .trust-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .trust-contact-form { grid-column: span 2; margin-top: 20px; }
    .trust-contact-btn { padding: 12px 24px; font-size: 13px; }
    .services-grid, .benefits-grid, .before-after-grid { grid-template-columns: 1fr; }
    .mid-cta-left h2 { font-size: 28px; }
    .mid-cta-buttons { flex-direction: column; }
    .mid-cta-buttons a { text-align: center; justify-content: center; width: 100%; }
    .mid-cta-stats { flex-wrap: wrap; gap: 20px; }
    .mid-cta-stat { flex: 1; text-align: center; }
    .accordion-services-title { font-size: 32px; }
    .accordion-header { font-size: 18px; padding: 20px; }
    .accordion-service-image { height: 300px; }
    .video-testi-card { min-width: 240px; max-width: 240px; }
    .video-testi-thumb { height: 300px; }
    .landing-text-testimonials { padding: 60px 20px; }
    .text-testi-card { width: 100%; min-width: 100%; }
    .landing-cta-form { padding: 60px 20px; }
    .form-left h2 { font-size: 32px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .sticky-cta-landing { bottom: 15px; right: 15px; gap: 8px; }
    .sticky-btn { padding: 10px 18px; font-size: 12px; }
    .landing-simple-footer { padding: 16px 20px; }
    .landing-simple-footer-container { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 480px) {
    .accordion-services-title { font-size: 28px; }
    .accordion-header { font-size: 16px; padding: 18px 16px; }
    .service-content-wrapper h3 { font-size: 24px; }
    .service-cta-btn { width: 100%; justify-content: center; }
    .mid-cta-left h2 { font-size: 24px; }
    .trust-grid { grid-template-columns: 1fr; }
    .trust-contact-form { grid-column: span 1; }
    .trust-contact-btn { width: 100%; justify-content: center; }
  .landing-custom-header{
 	padding:12px 4px!important;
  }
  .landing-header-logo, .landing-header-right {width:50%;}
}



/* ===== VIDEO MODAL ===== */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /* height: 100%; */
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.video-modal-content {
    position: relative;
    width: 100%;
    max-width: 1000px;
    animation: slideUp 0.4s ease;
}

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

.video-modal-close {
    position: absolute;
    top: 0px;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
}

.video-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.video-modal-iframe-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-modal-iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Video Testimonials Cards - Add cursor pointer */
.video-testi-thumb {
    cursor: pointer;
    position: relative;
}

.video-testi-thumb:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.15);
    background: rgba(255, 0, 0, 1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .video-modal-content {
        max-width: 95%;
    }
    
    .video-modal-close {
        top: 0px;
        width: 40px;
        height: 40px;
    }
    
    .video-modal-iframe-wrapper {
        border-radius: 8px;
    }
}
/* ========================================
   HERO SECTION - TWO BOX SYSTEM
======================================== */

/* Hero Right Side - Two Column Grid */
.landing-hero-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
}

/* Individual Hero Box */
.hero-box {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Video Wrapper with Thumbnail */
.hero-video-card {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    background: #000;
    cursor: pointer;
    overflow: hidden;
	height:450px;
}

.hero-video-card img.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hero-video-card:hover img.video-thumbnail {
    transform: scale(1.05);
}

/* Legacy support for old class name */
.hero-video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #000;
    cursor: pointer;
    overflow: hidden;
}

.hero-video-wrapper img.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hero-video-wrapper:hover img.video-thumbnail {
    transform: scale(1.05);
}

/* Video Play Button Overlay */
.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
    transition: transform 0.3s ease, opacity 0.3s ease;
    padding: 0;
}

.video-play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.9;
}

.video-play-button svg {
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

/* Video iframe (after click) */
.hero-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Image Wrapper */
.hero-image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
}

.hero-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Form Wrapper */
.hero-form-wrapper {
    padding: 25px;
    background: #f9f9f9;
}

.hero-form-wrapper form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-form-wrapper input,
.hero-form-wrapper textarea,
.hero-form-wrapper select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
}

.hero-form-wrapper input:focus,
.hero-form-wrapper textarea:focus,
.hero-form-wrapper select:focus {
    outline: none;
    border-color: #3A7B6E;
}

.hero-form-wrapper button[type="submit"],
.hero-form-wrapper input[type="submit"] {
    background: #3A7B6E;
    color: #fff;
    border: none;
    padding: 14px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.hero-form-wrapper button[type="submit"]:hover,
.hero-form-wrapper input[type="submit"]:hover {
    background: #2d6156;
    transform: translateY(-2px);
}

/* ========================================
   RESPONSIVE - MOBILE
======================================== */

@media (max-width: 768px) {
    /* Stack boxes vertically on mobile */
    .landing-hero-right {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .hero-box {
        border-radius: 10px;
    }
    
    .video-play-button svg {
        width: 60px;
        height: 60px;
    }
    
    .hero-form-wrapper {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .landing-hero-right {
        gap: 12px;
    }
    
    .video-play-button svg {
        width: 50px;
        height: 50px;
    }
    
    .hero-form-wrapper {
        padding: 15px;
    }
    
    .hero-form-wrapper input,
    .hero-form-wrapper textarea,
    .hero-form-wrapper select {
        padding: 10px 12px;
        font-size: 13px;
    }
}
