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

:root {
    --primary-color: #2c5f8d;
    --secondary-color: #1a3d5c;
    --accent-color: #4a90d9;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --gold: #d4af37;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.logo-horizontal {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-horizontal i {
    font-size: 28px;
    color: var(--primary-color);
}

.logo h1 {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}
.logo img {
    width: 40px;
}

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

.main-nav a {
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: var(--primary-color);
}

.header-contact {
    display: flex;
    gap: 20px;
    font-size: 14px;
}

.header-contact a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-color);
    transition: color 0.3s;
}

.header-contact a:hover {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(44, 95, 141, 0.60) 0%, rgba(26, 61, 92, 0.92) 100%), url('../images/bg.webp') center/cover no-repeat;
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.hero-title {
    font-size: 36px;
    margin-bottom: 40px;
    font-weight: 700;
    line-height: 1.3;
}

/* Form Container */
.form-container {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.form-steps {
    margin-bottom: 30px;
}

.step-indicator {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.step {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--text-color);
    transition: all 0.3s;
}

.step.active {
    background: var(--primary-color);
    color: var(--white);
}

.step-label {
    text-align: center;
    color: var(--text-color);
    font-weight: 500;
}

/* Form Steps */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.3s;
}

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

.form-step h3 {
    color: var(--text-color);
    margin-bottom: 25px;
    font-size: 20px;
}

.radio-group {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    justify-content: center;
}

.radio-btn {
    flex: 1;
    max-width: 150px;
}

.radio-btn input {
    display: none;
}

.radio-btn span {
    display: block;
    padding: 15px 30px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    font-weight: 500;
    color: var(--text-color);
}

.radio-btn input:checked + span {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.radio-btn span:hover {
    border-color: var(--primary-color);
}

/* Age Input */
.age-input {
    margin-bottom: 30px;
}

.age-input input[type="range"] {
    width: 100%;
    margin-bottom: 10px;
}

.age-input p {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}

/* Input Group */
.input-group {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.form-step input[type="text"],
.form-step input[type="tel"],
.form-step input[type="email"] {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-step input:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Buttons */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-next, .btn-submit {
    background: var(--primary-color);
    color: var(--white);
    width: 100%;
}

.btn-prev {
    background: var(--border-color);
    color: var(--text-color);
}

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

.form-buttons .btn {
    flex: 1;
}

/* Before & After Section */
.before-after {
    padding: 80px 0;
    background: var(--light-bg);
}

.section-title {
    text-align: center;
    font-size: 48px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.ba-gallery-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.ba-gallery {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: none;
}

.ba-gallery::-webkit-scrollbar {
    display: none;
}

.ba-item {
    flex: 0 0 350px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.ba-item:hover {
    transform: translateY(-10px);
}

.ba-item img {
    width: 100%;
    object-fit: cover;
    display: block;
}

.ba-nav-btn {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s;
    z-index: 10;
}

.ba-nav-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

/* Stats Counter */
.stats {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 0;
}

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

.stat-item h3 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 16px;
    opacity: 0.9;
}

/* Experience Section */
.experience {
    padding: 80px 0;
}

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

.experience-text h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.experience-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.video-placeholder {
    background: var(--light-bg);
    border-radius: 15px;
    padding: 100px 50px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.video-placeholder:hover {
    background: var(--border-color);
}

.video-placeholder i {
    font-size: 60px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* CTA Form */
.cta-form {
    background: var(--light-bg);
    padding: 80px 0;
    text-align: center;
}

.cta-form h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.cta-form p {
    margin-bottom: 40px;
    font-size: 18px;
}

.simple-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.simple-form input {
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    width: 100%;
}

.simple-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.simple-form .iti {
    display: block;
    width: 100%;
}

/* Video Testimonials */
.video-testimonials {
    padding: 80px 0;
    background: var(--white);
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 18px;
    line-height: 1.8;
}

.video-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 60px;
}

.video-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
    scrollbar-width: none;
}

.video-slider::-webkit-scrollbar {
    display: none;
}

.video-item {
    flex: 0 0 480px;
    cursor: pointer;
    position: relative;
}

.video-thumbnail {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    transition: all 0.3s;
}

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

.video-thumbnail img {
    width: 100%;
    object-fit: cover;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.play-button i {
    font-size: 28px;
    color: var(--primary-color);
    margin-left: 5px;
}

.video-thumbnail:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(255, 255, 255, 1);
}

.video-item.playing .video-thumbnail {
    display: none;
}

.video-item iframe {
    width: 100%;
    height: 320px;
    border-radius: 15px;
    border: none;
}

.video-nav-btn {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s;
    z-index: 10;
}

.video-nav-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

/* Review Ratings */
.review-ratings {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.rating-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.rating-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.rating-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.rating-header i {
    font-size: 32px;
    color: var(--primary-color);
}

.rating-header h4 {
    font-size: 16px;
    color: var(--text-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}
.rating-header img {
    width: 150px;
}

.rating-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.star-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-color);
}

.stars {
    color: var(--gold);
    font-size: 24px;
}

.rating-text {
    color: #666;
    font-size: 14px;
}

/* Services */
.services {
    padding: 80px 0;
    background: var(--light-bg);
}

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

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

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

.service-icon {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.service-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-card.featured {
    position: relative;
    border: 3px solid var(--gold);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

.best-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--gold);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.btn-info {
    background: var(--accent-color);
    color: var(--white);
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.btn-info:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: var(--light-bg);
}

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

.pricing-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured-package {
    border: 3px solid var(--primary-color);
    box-shadow: 0 10px 40px rgba(44, 95, 141, 0.3);
}

.pricing-header {
    background: var(--primary-color);
    color: var(--white);
    padding: 30px;
    text-align: center;
    position: relative;
}

.featured-package .pricing-header {
    background: var(--secondary-color);
}

.offer-badge {
    position: absolute;
    top: 15px;
    right: 20px;
    background: linear-gradient(135deg, #d4af37 0%, #f9d776 50%, #d4af37 100%);
    color: var(--secondary-color);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    border: 2px solid #f9d776;
}

.offer-badge.premium {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
    animation: shine 2s infinite;
}

@keyframes shine {
    0%, 100% { box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(255, 215, 0, 0.7); }
}

.pricing-header h3 {
    font-size: 26px;
    margin-bottom: 10px;
}

.package-subtitle {
    font-size: 14px;
    opacity: 0.9;
}

.pricing-body {
    padding: 40px 30px;
}

.price {
    text-align: center;
    margin-bottom: 30px;
}

.old-price {
    display: block;
    font-size: 24px;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 5px;
}

.current-price {
    display: block;
    font-size: 48px;
    color: var(--primary-color);
    font-weight: 700;
}

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

.features-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
}

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

.features-list i {
    color: var(--success-color);
    font-size: 16px;
    margin-top: 2px;
}

/* About Us */
.about-us {
    padding: 80px 0;
}

.about-us .section-title {
    text-align: center;
    margin-bottom: 50px;
}

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

.about-text p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: #666;
}

.about-video-wrapper {
    position: relative;
    cursor: pointer;
}

.about-video-thumbnail {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    transition: all 0.3s;
}

.about-video-thumbnail:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.25);
}

.about-video-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.video-play-btn i {
    font-size: 32px;
    color: var(--primary-color);
    margin-left: 6px;
}

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

.about-video-wrapper.playing .about-video-thumbnail {
    display: none;
}

.about-video-wrapper iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 15px;
    border: none;
}

/* Accreditations */
.accreditations {
    padding: 80px 0;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.accreditations .section-title {
    color: var(--white);
}

.accreditations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    margin-top: 50px;
    align-items: center;
}

.accreditation-item {
    transition: transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.accreditation-item img {
    max-width: 100%;
    object-fit: contain;
}

/* Journey Timeline */
.journey {
    padding: 80px 0;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-icon {
    flex: 0 0 120px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.timeline-icon span {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 700;
}

.timeline-content {
    flex: 1;
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 22px;
}

.timeline-content p {
    color: #666;
    line-height: 1.8;
}

/* Accreditations */

.accreditations h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin: 30px 0 20px;
}

.accreditations p {
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.8;
}

/* FAQ */
.faq {
    padding: 80px 0;
}

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

.faq-item {
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: var(--white);
    border: none;
    padding: 20px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--light-bg);
}

.faq-question i {
    transition: transform 0.3s;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: var(--light-bg);
}

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

.faq-answer p {
    padding: 20px;
    color: #666;
    line-height: 1.8;
}

/* WhatsApp Contact Section */
.whatsapp-contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
}

.whatsapp-box {
    display: flex;
    align-items: center;
    gap: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 50px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-icon {
    flex: 0 0 120px;
    width: 120px;
    height: 120px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.whatsapp-icon i {
    font-size: 70px;
    color: #25D366;
}

.whatsapp-content {
    flex: 1;
}

.whatsapp-content h2 {
    color: var(--white);
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
}

.whatsapp-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: var(--white);
    padding: 16px 35px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.btn-whatsapp i {
    font-size: 24px;
}

/* Why Choose Us */
.why-choose {
    padding: 80px 0;
    background: var(--light-bg);
}

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

.why-choose-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.why-choose-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.2;
}

.why-choose-slider {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.clinic-slide {
    display: none;
    animation: fadeIn 0.8s ease-in-out;
}

.clinic-slide.active {
    display: block;
}

.clinic-slide img {
    width: 100%;
    height: auto;
    display: block;
}

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

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.dot.active {
    background: var(--white);
    transform: scale(1.3);
}

.why-choose-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-box {
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

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

.feature-icon-box {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4af37 0%, #c9a635 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.feature-content {
    flex: 1;
}

.feature-content h3 {
    font-size: 20px;
    color: var(--text-color);
    margin-bottom: 8px;
    font-weight: 700;
}

.feature-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
    display: inline-block;
}

/* Contracted Institutions */
.contracted-institutions {
    padding: 80px 0;
    background: var(--white);
}

.contracted-institutions .section-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text-color);
}

.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

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

.institution-card {
    background: var(--light-bg);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.institution-card h3 {
    font-size: 20px;
    color: var(--text-color);
    font-weight: 600;
    line-height: 1.4;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 16px;
    transition: opacity 0.3s;
}

.footer-link:hover {
    opacity: 0.8;
}

.footer-link i {
    font-size: 20px;
    color: var(--white);
}

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.8;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 75px;
    height: 75px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 999;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* intlTelInput Custom Styles */
.iti {
    width: 100%;
    display: block;
}

.iti__flag-container {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    padding: 1px;
}

.iti__selected-flag {
    z-index: 1;
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 8px 0 15px;
    background: transparent;
    border: none;
}

.iti input[type="tel"] {
    padding-left: 60px !important;
}

.iti__country-list {
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    max-height: 200px;
    overflow-y: auto;
}

.iti__country:hover {
    background-color: var(--light-bg);
}

.iti__country.iti__highlight {
    background-color: var(--primary-color);
    color: var(--white);
}

.iti__flag-box, .iti__country-name{
    color: var(--text-color);
}

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

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-container {
    background: var(--white);
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: popupSlideIn 0.4s ease;
}

@keyframes popupSlideIn {
    from {
        transform: translateY(-50px) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light-bg);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
}

.popup-close:hover {
    background: #ff6b6b;
    color: var(--white);
    transform: rotate(90deg);
}

.popup-close i {
    font-size: 20px;
}

.popup-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 40px 30px 30px;
    text-align: center;
    color: var(--white);
    border-radius: 20px 20px 0 0;
}

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

.popup-icon i {
    font-size: 40px;
    color: var(--white);
}

.popup-header h3 {
    font-size: 26px;
    margin-bottom: 12px;
    font-weight: 700;
}

.popup-header p {
    font-size: 15px;
    opacity: 0.95;
    line-height: 1.6;
}

.popup-form {
    padding: 35px 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(44, 95, 141, 0.1);
}

.btn-full {
    width: 100%;
    padding: 16px;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.popup-note {
    text-align: center;
    font-size: 13px;
    color: #666;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.popup-note i {
    color: var(--success-color);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--white);
    box-shadow: -5px 0 20px rgba(0,0,0,0.2);
    z-index: 2000;
    transition: right 0.3s;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.close-menu {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
}

.mobile-menu nav ul {
    list-style: none;
    padding: 20px;
}

.mobile-menu nav li {
    margin-bottom: 20px;
}

.mobile-menu nav a {
    color: var(--text-color);
    font-size: 18px;
    font-weight: 500;
}

.mobile-contact {
    padding: 20px;
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-whatsapp-btn {
    background: #25D366;
    color: var(--white);
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 3px 10px rgba(37, 211, 102, 0.3);
}

.mobile-whatsapp-btn:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.mobile-whatsapp-btn i {
    font-size: 22px;
}

.mobile-contact-link {
    color: var(--primary-color);
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    padding: 10px 0;
}

.mobile-contact-link i {
    font-size: 18px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .main-nav, .header-contact {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

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

    .form-container {
        padding: 30px 20px;
    }

    .experience-content {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 40px;
    }

    .timeline-item {
        flex-direction: row !important;
    }

    .timeline-icon {
        flex: 0 0 80px;
    }

    .timeline-icon span {
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 24px;
    }

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

    .input-group {
        flex-direction: column;
    }

    .radio-group {
        flex-direction: column;
    }

    .radio-btn {
        max-width: 100%;
    }

    /* Before-After Mobile Fix */
    .before-after {
        overflow: hidden;
    }

    .before-after .section-title {
        padding: 0 20px;
    }

    .before-after .container {
        padding: 0;
        max-width: 100%;
    }

    .ba-gallery-wrapper {
        flex-direction: column;
        gap: 0;
    }

    .ba-gallery {
        overflow-x: scroll;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 20px;
        margin: 0;
        width: 100%;
    }

    .ba-gallery::-webkit-scrollbar {
        display: none;
    }

    .ba-nav-btn {
        display: none;
    }

    .ba-item {
        flex: 0 0 80vw;
        max-width: 350px;
        scroll-snap-align: center;
    }

    .ba-item img {
        height: auto;
        min-height: 280px;
        object-fit: cover;
    }

    .services-grid, .features-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    /* Video Testimonials Mobile Fix */
    .video-testimonials {
        overflow: hidden;
    }

    .video-testimonials .section-title,
    .video-testimonials .section-intro {
        padding: 0 20px;
    }

    .video-testimonials .container {
        padding: 0;
        max-width: 100%;
    }

    .video-slider-wrapper {
        flex-direction: column;
        gap: 0;
        margin-bottom: 40px;
    }

    .video-slider {
        overflow-x: scroll;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 10px 20px;
        margin: 0;
        width: 100%;
    }

    .video-slider::-webkit-scrollbar {
        display: none;
    }

    .video-nav-btn {
        display: none;
    }

    .video-item {
        flex: 0 0 80vw;
        max-width: 400px;
        scroll-snap-align: center;
    }

    .video-thumbnail img,
    .video-item iframe {
        height: auto;
        aspect-ratio: 16/9;
    }

    .review-ratings {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

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

    .stat-item h3 {
        font-size: 36px;
    }

    .accreditations {
        padding: 20px 0;
    }

    .accreditations .section-title {
        margin-bottom: 20px;
    }

    .accreditations-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 15px;
    }

    .accreditation-item {
        padding: 0;
    }

    .accreditation-item img {
        width: auto;
        height: auto;
        max-height: none;
    }

    .why-choose-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-choose-title {
        font-size: 32px;
    }

    .contracted-institutions .section-title {
        font-size: 32px;
    }

    .institutions-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        gap: 30px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 26px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 20px;
    }

    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 40px 0;
    }

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

    /* Smaller mobile adjustments */
    .ba-item {
        flex: 0 0 85vw;
        max-width: 320px;
    }

    .video-item {
        flex: 0 0 85vw;
        max-width: 350px;
    }

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

    .stat-item h3 {
        font-size: 32px;
    }

    .stat-item p {
        font-size: 14px;
    }

    .accreditations-grid {
        gap: 10px;
        margin-top: 0;
    }

    .accreditation-item {
        padding: 0;
    }

    .accreditation-item img {
        width: auto;
        height: auto;
        max-height: none;
    }

    .why-choose-title {
        font-size: 26px;
    }

    .feature-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .feature-icon-box {
        flex: 0 0 60px;
    }

    .contracted-institutions .section-title {
        font-size: 28px;
    }

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

    .whatsapp-box {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }

    .whatsapp-content h2 {
        font-size: 26px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
    }

    .footer-link {
        font-size: 14px;
    }
}

