/* ===== Variables ===== */
:root {
    --primary-color: #e91e63;
    --primary-dark: #c2185b;
    --secondary-color: #f06292;
    --accent-color: #f48fb1;
    --dark-color: #1e293b;
    --light-color: #fdf2f8;
    --gray-color: #64748b;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(233, 30, 99, 0.08);
    --shadow-lg: 0 10px 40px rgba(233, 30, 99, 0.12);
    --transition: all 0.3s ease;
    --border-radius: 12px;
}

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

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark-color);
    background-color: var(--white);
}

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

ul {
    list-style: none;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 500;
    background: transparent;
}

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

.section-title {
    margin-bottom: 50px;
}

.section-title .subtitle {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
}

/* ===== Header ===== */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow);
}

.header-top {
    background: var(--dark-color);
    padding: 10px 0;
    font-size: 14px;
    color: var(--white);
}

.header-top .contact-info span {
    margin-right: 25px;
}

.header-top .contact-info i {
    margin-right: 8px;
    color: var(--secondary-color);
}

.header-top .social-links a {
    color: var(--white);
    margin-left: 15px;
    font-size: 14px;
}

.header-top .social-links a:hover {
    color: var(--secondary-color);
}

.navbar {
    padding: 15px 0;
}

.navbar-brand .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-nav .nav-link {
    color: var(--dark-color);
    font-weight: 500;
    padding: 10px 18px !important;
    margin: 0 2px;
    border-radius: 8px;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
    background: rgba(233, 30, 99, 0.08);
}

/* ===== Hero Section ===== */
.hero-section {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-title span {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text {
    font-size: 1.1rem;
    color: var(--gray-color);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
}

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

.stat-item h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--gray-color);
    font-size: 14px;
    margin: 0;
}

.hero-image img {
    box-shadow: var(--shadow-lg);
}

/* ===== About Section ===== */
.about-section {
    padding: 100px 0;
}

.about-image img {
    box-shadow: var(--shadow-lg);
}

.about-list {
    margin: 25px 0;
}

.about-list li {
    padding: 8px 0;
    color: var(--dark-color);
}

.about-list li i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* ===== Services Section ===== */
.services-section {
    padding: 100px 0;
    background: var(--light-color);
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

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

.service-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--gray-color);
    margin: 0;
}

/* ===== Gallery Section ===== */
.gallery-section {
    padding: 100px 0;
}

.gallery-item {
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

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

/* ===== Appointment Section ===== */
.appointment-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
}

.appointment-info {
    margin-top: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.info-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    margin-right: 15px;
}

.info-item h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.info-item p {
    color: var(--gray-color);
    margin: 0;
}

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

.appointment-form .form-control,
.appointment-form .form-select {
    padding: 15px 20px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 15px;
}

.appointment-form .form-control:focus,
.appointment-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* ===== Testimonials Section ===== */
.testimonials-section {
    padding: 100px 0;
}

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid #e2e8f0;
    transition: var(--transition);
    height: 100%;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.testimonial-card .stars {
    margin-bottom: 20px;
}

.testimonial-card .stars i {
    color: #fbbf24;
    font-size: 14px;
}

.testimonial-card p {
    font-style: italic;
    color: var(--gray-color);
    margin-bottom: 25px;
    font-size: 15px;
}

.testimonial-author h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--primary-color);
    font-size: 14px;
}

/* ===== Contact Section ===== */
.contact-section {
    padding: 100px 0;
    background: var(--light-color);
}

.contact-card {
    background: var(--white);
    padding: 35px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-card i {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    margin: 0 auto 20px;
}

.contact-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--gray-color);
    margin: 0;
}

/* ===== Footer ===== */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-widget h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-widget h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-widget p {
    color: #94a3b8;
    margin-bottom: 20px;
}

.footer-widget ul li {
    padding: 8px 0;
}

.footer-widget ul li a {
    color: #94a3b8;
}

.footer-widget ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

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

.footer-widget .social-links a:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 50px;
    text-align: center;
}

.footer-bottom p {
    color: #94a3b8;
    margin: 0;
}

/* ===== WhatsApp Float ===== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .navbar-collapse {
        background: var(--white);
        padding: 20px;
        border-radius: var(--border-radius);
        box-shadow: var(--shadow-lg);
        margin-top: 15px;
    }

    .navbar-nav .nav-link {
        padding: 12px 15px !important;
    }

    .hero-section {
        padding: 140px 0 80px;
    }

    .hero-image {
        margin-top: 50px;
    }

    .hero-stats {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .header-top {
        display: none;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .about-image {
        margin-bottom: 40px;
    }
}
