@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
}

/* BODY - COMPLETELY NEW STYLE */
body {
    font-family: 'Outfit', sans-serif;
    background: #0a0a0f;
    background-image: radial-gradient(circle at 20% 20%, #ff0055 0%, transparent 25%),
                      radial-gradient(circle at 80% 80%, #6a00ff 0%, transparent 25%);
    color: #eaeaea;
    line-height: 1.8;
}

/* LINKS */
p a {
    color: #00ffe0;
    text-decoration: none;
    border-bottom: 1px dashed #00ffe0;
    transition: 0.3s;
}

p a:hover {
    color: #ff00aa;
    border-color: #ff00aa;
}

/* CONTAINER */
.container {
    max-width: 1300px;
    margin: auto;
    padding: 20px;
}

/* ==================== TOP BAR ==================== */
.topbar {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    text-align: center;
    padding: 14px 0;
    font-size: 0.85rem;
    color: #ccc;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    letter-spacing: 1px;
}/* ==================== NAVBAR ==================== */
.navbar {
    background: #ffffff;
    border-bottom: 1px solid #eaeaea;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 14px 0;
}

/* CONTAINER */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO */
.logo {
    font-size: 1.6rem;
    font-weight: 600;
    color: #111;
    letter-spacing: 0.5px;
}

/* NAV LINKS */
.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
}

/* LINKS */
.nav-links a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.92rem;
    padding: 6px 10px;
    border-radius: 6px;
    transition: all 0.25s ease;
}

/* hover = soft highlight */
.nav-links a:hover {
    background: #f3f3f3;
    color: #000;
}

/* ACTIVE STYLE (optional) */
.nav-links a.active {
    background: #111;
    color: #fff;
}

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: #333;
    border-radius: 2px;
    transition: 0.3s;
}

/* ==================== MOBILE ==================== */
@media (max-width: 768px) {

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        right: 10px;
        width: 220px;
        background: white;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        flex-direction: column;
        padding: 15px;
        display: none;
        gap: 10px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        text-align: left;
        padding: 10px;
        border-radius: 6px;
    }

    /* hamburger animation */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}/* ==================== APPOINTMENT BUTTON (NEW STYLE) ==================== */
.appointment-btn {
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
    color: #fff;
    padding: 14px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all 0.35s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.appointment-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #ffffff20, transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.appointment-btn:hover::before {
    opacity: 1;
}

.appointment-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 75, 43, 0.4);
}


/* ==================== MOBILE MENU (COMPLETELY NEW STYLE) ==================== */
@media (max-width: 768px) {

    .hamburger {
        display: flex;
        gap: 6px;
        padding: 10px;
        border-radius: 8px;
        background: rgba(255,255,255,0.05);
        backdrop-filter: blur(8px);
    }

    .hamburger span {
        width: 30px;
        height: 3px;
        background: linear-gradient(90deg, #ff416c, #ff4b2b);
        border-radius: 10px;
        transition: all 0.4s ease;
    }

    /* MENU STYLE - GLASS EFFECT */
    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 50%;
        transform: translateX(-50%) scale(0.95);
        width: 92%;
        background: rgba(0, 0, 0, 0.85);
        backdrop-filter: blur(12px);
        border-radius: 16px;
        flex-direction: column;
        padding: 25px 0;
        box-shadow: 0 25px 50px rgba(0,0,0,0.6);
        opacity: 0;
        transition: all 0.4s ease;
    }

    .nav-links.active {
        display: flex;
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }

    .nav-links a {
        padding: 14px 0;
        font-size: 1.1rem;
        text-align: center;
        color: #eee;
        position: relative;
    }

    .nav-links a::after {
        content: '';
        width: 0%;
        height: 2px;
        background: #ff4b2b;
        position: absolute;
        left: 50%;
        bottom: 6px;
        transform: translateX(-50%);
        transition: width 0.3s;
    }

    .nav-links a:hover::after {
        width: 40%;
    }

    .nav-links .appointment-btn {
        margin: 18px auto 5px;
        width: 80%;
        text-align: center;
    }

    /* HAMBURGER ANIMATION - NEW STYLE */
    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(135deg);
    }

    .hamburger.active span:nth-child(2) {
        transform: scaleX(0);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-135deg);
    }
}


/* ==================== NEW ANIMATION ==================== */
@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}/* ==================== BANNER (NEW MODERN STYLE) ==================== */
.banner {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.7));
    z-index: 1;
}

.banner-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 0.8s ease;
}

.banner:hover .banner-img {
    transform: scale(1.12);
}

@media (max-width: 768px) {
    .banner-img {
        height: 260px;
    }
}


/* ==================== GIRLS GRID (NEW PREMIUM GRID) ==================== */
.girls-grid {
    display: grid;
    gap: 30px;
    padding: 60px 0;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}


/* ==================== CARD DESIGN (GLASS STYLE) ==================== */
.girl-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(14px);
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
}

.girl-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.08), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.girl-card:hover::before {
    opacity: 1;
}

.girl-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}


/* ==================== IMAGE STYLE (SQUARE + SOFT CORNER) ==================== */
.photo-container {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.photo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    transition: transform 0.6s ease;
}

.girl-card:hover .photo-container img {
    transform: scale(1.1);
}


/* ==================== VERIFIED BADGE (NEON STYLE) ==================== */
.verified-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: linear-gradient(135deg, #00ffcc, #00c3ff);
    color: #000;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    box-shadow: 0 0 12px rgba(0,255,200,0.6);
}


/* ==================== CARD INFO (CLEAN + MODERN) ==================== */
.card-info {
    padding: 18px 15px 22px;
    text-align: center;
    color: #ddd;
}

.card-info h3 {
    margin-bottom: 6px;
    color: #fff;
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.card-info p {
    font-size: 0.9rem;
    color: #aaa;
}

/* ==================== MODAL (GLASS + BLUR PREMIUM) ==================== */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at center, rgba(10,10,10,0.85), rgba(0,0,0,0.96));
    backdrop-filter: blur(8px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}


/* ==================== MODAL CONTENT ==================== */
.modal-content {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(18px);
    border-radius: 18px;
    max-width: 500px;
    width: 100%;
    padding: 30px 25px 35px;
    text-align: center;
    color: #eee;
    position: relative;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
    max-height: 90vh;
    overflow-y: auto;
    animation: modalPop 0.5s ease;
}


/* ==================== CLOSE BUTTON (MODERN ROUND) ==================== */
.close-modal {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    cursor: pointer;
    color: #fff;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: #ff3b3b;
    transform: rotate(90deg);
}


/* ==================== IMAGE STYLE ==================== */
.modal-content img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 18px;
    transition: transform 0.4s ease;
}

.modal-content img:hover {
    transform: scale(1.04);
}


/* ==================== TEXT ==================== */
.modal-name {
    font-size: 1.5rem;
    margin: 12px 0 6px;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.modal-details {
    font-size: 0.95rem;
    color: #ccc;
    margin-bottom: 22px;
    line-height: 1.7;
}


/* ==================== BUTTON GROUP ==================== */
.modal-buttons {
    display: flex;
    gap: 14px;
    margin-top: 15px;
}


/* ==================== BUTTON BASE ==================== */
.modal-btn {
    flex: 1;
    padding: 14px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}


/* ==================== CALL BUTTON ==================== */
.modal-btn.call {
    background: linear-gradient(135deg, #1f1f1f, #000);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.1);
}

.modal-btn.call:hover {
    background: linear-gradient(135deg, #000, #333);
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}


/* ==================== WHATSAPP BUTTON ==================== */
.modal-btn.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
}

.modal-btn.whatsapp:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(37,211,102,0.5);
}


/* ==================== MOBILE ==================== */
@media (max-width: 768px) {
    .modal-content {
        padding: 25px 18px 30px;
    }

    .modal-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .modal-btn {
        padding: 15px;
        font-size: 1rem;
    }
}


/* ==================== ANIMATION ==================== */
@keyframes modalPop {
    0% {
        transform: scale(0.8) translateY(40px);
        opacity: 0;
    }
    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

/* ==================== FOOTER (PREMIUM DARK + GRADIENT) ==================== */
footer {
    background: linear-gradient(135deg, #050505, #111111);
    color: #aaa;
    padding: 90px 0 50px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(255, 0, 80, 0.15), transparent);
    opacity: 0.6;
}


/* ==================== FOOTER GRID ==================== */
.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 50px;
    position: relative;
    z-index: 1;
}


/* ==================== FOOTER HEADINGS ==================== */
.footer-col h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.footer-col h3::after {
    content: '';
    width: 40%;
    height: 2px;
    background: linear-gradient(90deg, #ff4b2b, transparent);
    position: absolute;
    bottom: -6px;
    left: 0;
}


/* ==================== FOOTER LINKS ==================== */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: #ff4b2b;
    transform: translateX(6px);
}


/* ==================== FOOTER BOTTOM ==================== */
.footer-bottom {
    margin-top: 60px;
    padding-top: 25px;
    text-align: center;
    color: #666;
    font-size: 0.85rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    position: relative;
    z-index: 1;
}


/* ==================== RESPONSIVE GRID ==================== */
@media (min-width: 769px) and (max-width: 1199px) {
    .girls-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .girls-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 12px;
    }
}


/* ==================== WHY CHOOSE US (GLASS CARDS) ==================== */
.why-us {
    padding: 50px 20px;
    background: linear-gradient(135deg, #0a0a0a, #1a0005);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255,75,43,0.2), transparent);
}


/* ==================== GRID ==================== */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}


/* ==================== CARD ==================== */
.why-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    padding: 35px 25px;
    border-radius: 18px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.4s ease;
    position: relative;
}

.why-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.08), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.why-card:hover::before {
    opacity: 1;
}

.why-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}


/* ==================== TEXT ==================== */
.why-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 600;
}

.why-card p {
    color: #bbb;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ==================== SERVICES (MINIMAL + PREMIUM) ==================== */
.services {
    padding: 60px 20px;
    margin: 20px;
    background: linear-gradient(135deg, #0f0f0f, #1c1c1c);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255, 75, 43, 0.2), transparent);
}


/* ==================== SECTION DESCRIPTION ==================== */
.section-desc {
    font-size: 1rem;
    color: #bbb;
    max-width: 700px;
    margin: 25px auto 0;
    text-align: center;
    line-height: 1.7;
}


/* ==================== HOW TO BOOK (DARK GLASS STYLE) ==================== */
.how-to-book {
    padding: 60px 20px;
    margin: 20px;
    background: linear-gradient(135deg, #050505, #1a0005);
    border-radius: 16px;
    position: relative;
}

.how-to-book::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255,0,80,0.2), transparent);
}


/* ==================== STEPS GRID ==================== */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 45px;
    position: relative;
    z-index: 1;
}


/* ==================== STEP CARD (GLASS + HOVER EFFECT) ==================== */
.step {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);
    padding: 40px 25px;
    border-radius: 18px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.4s ease;
    position: relative;
}

.step::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.08), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.step:hover::before {
    opacity: 1;
}

.step:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.6);
}


/* ==================== STEP NUMBER (NEON STYLE) ==================== */
.step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 18px;
    box-shadow: 0 0 15px rgba(255,75,43,0.6);
}


/* ==================== STEP TEXT ==================== */
.step h3 {
    margin-bottom: 10px;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
}

.step p {
    color: #bbb;
    font-size: 0.95rem;
    line-height: 1.7;
}


/* ==================== POPULAR AREAS (CHIP STYLE) ==================== */
.areas {
    padding: 60px 20px;
    margin: 20px;
    background: linear-gradient(135deg, #0a0a0a, #1c0000);
    border-radius: 16px;
}


/* ==================== GRID ==================== */
.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-top: 30px;
}


/* ==================== AREA ITEM (PILL + GLOW) ==================== */
.area-item {
    background: rgba(255,255,255,0.06);
    color: #ddd;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.area-item:hover {
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
    color: #fff;
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(255,75,43,0.4);
}
/* ==================== TESTIMONIALS ==================== */
.testimonials {
    padding: 60px 20px;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border-radius: 12px;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.08), transparent);
    z-index: 0;
}

.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    flex: 1 1 300px;
    background: #ffffff10;
    backdrop-filter: blur(10px);
    padding: 28px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.35s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #38bdf8;
}

.testimonial-card p {
    font-size: 1rem;
    color: #e2e8f0;
    line-height: 1.8;
    margin-bottom: 18px;
    font-style: normal;
}

.testimonial-card strong {
    color: #38bdf8;
    font-weight: 600;
    display: block;
    margin-top: 10px;
}

/* ==================== FAQ SECTION ==================== */
.faq-section {
    background: linear-gradient(135deg, #020617, #111827);
    padding: 60px 20px;
    margin: 20px 10px;
    border-radius: 12px;
}

.faq-main-title {
    color: #f1f5f9;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 14px;
    overflow: hidden;
    background: #ffffff08;
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #22c55e;
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 500;
    color: #f9fafb;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    font-size: 1.4rem;
    color: #22c55e;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 15px 0 20px;
    color: #cbd5f5;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Active state */
.faq-item.active {
    border-color: #22c55e;
    background: #022c22;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}
/* ==================== FINAL CTA SECTION (NEW DESIGN) ==================== */
.cta-final {
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
    text-align: center;
    border-radius: 16px;
    margin: 20px;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Animated Gradient Overlay */
.cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(56,189,248,0.25), transparent),
                radial-gradient(circle at 80% 70%, rgba(236,72,153,0.25), transparent);
    animation: floatBg 8s infinite alternate ease-in-out;
    z-index: 1;
}

@keyframes floatBg {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.cta-final::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.85);
    z-index: 2;
}

.cta-final > .container {
    position: relative;
    z-index: 3;
    max-width: 750px;
}

.cta-final h2 {
    font-size: 2.6rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 18px;
}

.cta-final p {
    font-size: 1.1rem;
    color: #cbd5f5;
    margin-bottom: 30px;
    line-height: 1.8;
}

/* New Button Style */
.cta-final .appointment-btn {
    background: linear-gradient(135deg, #38bdf8, #6366f1);
    color: white;
    padding: 16px 42px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 40px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.35s ease;
    box-shadow: 0 10px 25px rgba(56,189,248,0.4);
}

.cta-final .appointment-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 35px rgba(99,102,241,0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .cta-final {
        padding: 70px 15px;
    }

    .cta-final h2 {
        font-size: 2rem;
    }

    .cta-final p {
        font-size: 1rem;
    }
}


/* ==================== ABOUT SECTION (NEW DESIGN) ==================== */
.about-section {
    background: linear-gradient(135deg, #020617, #111827);
    margin: 20px;
    padding: 60px 20px;
    border-radius: 16px;
}

.about-wrapper {
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
}

/* Image Style */
.about-image {
    width: 100%;
    max-width: 500px;
    position: relative;
}

.about-img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transition: transform 0.4s ease;
}

.about-img:hover {
    transform: scale(1.05);
}

/* Content */
.about-content {
    width: 100%;
    text-align: center;
}

.about-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 20px;
}

.about-desc {
    font-size: 1.05rem;
    color: #cbd5f5;
    line-height: 1.9;
    margin-bottom: 25px;
}

/* Features */
.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.feature-item {
    background: #ffffff08;
    padding: 16px;
    border-radius: 12px;
    color: #e2e8f0;
    font-size: 0.95rem;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #38bdf8;
    color: #020617;
    transform: translateY(-5px);
}

/* Desktop */
@media (min-width: 992px) {
    .about-wrapper {
        flex-direction: row;
        gap: 80px;
        align-items: center;
    }

    .about-image {
        width: 45%;
    }

    .about-content {
        width: 55%;
        text-align: left;
    }

    .about-title {
        font-size: 2.6rem;
    }
}

/* Mobile */
@media (max-width: 991px) {
    .about-title {
        font-size: 1.9rem;
    }
}