/* General Styles */
:root {
    --primary-color: #e91e63;
    --secondary-color: #f48fb1;
    --dark-color: #212529;
    --light-color: #f8f9fa;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Navbar Styles */
.navbar {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 1.5rem;
    color: var(--primary-color) !important;
}

.navbar-brand i {
    margin-left: 0.5rem;
}

.nav-link {
    margin-right: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    z-index: 1;
    position: relative;
    animation: slideInDown 0.8s ease;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    z-index: 1;
    position: relative;
    animation: slideInUp 0.8s ease;
}

.btn-primary {
    background-color: white;
    color: var(--primary-color);
    border: none;
    padding: 12px 40px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--light-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Services Section */
.services-section {
    padding: 80px 0;
}

.services-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 3rem;
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.2);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1rem 0;
    color: var(--dark-color);
}

.service-card p {
    color: #666;
    line-height: 1.8;
}

/* Gallery/Carousel Section */
.gallery-section {
    padding: 80px 0;
}

.gallery-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 3rem;
}

.gallery-container {
    max-width: 100%;
}

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

.gallery-slider {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 400px;
    background-color: #f0f0f0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    z-index: 1;
}

.gallery-item.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.gallery-nav {
    position: relative;
    width: 50px;
    height: 50px;
    border: none;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
    flex-shrink: 0;
}

.gallery-nav:hover {
    transform: scale(1.15);
    box-shadow: 0 10px 25px rgba(233, 30, 99, 0.5);
}

.gallery-nav:active {
    transform: scale(0.95);
}

.gallery-prev,
.gallery-next {
    z-index: 10;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

.dot:hover {
    background-color: rgba(233, 30, 99, 0.6);
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-wrapper {
        gap: 10px;
    }

    .gallery-slider {
        max-width: 100%;
        height: 300px;
    }

    .gallery-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .gallery-slider {
        height: 250px;
    }

    .gallery-nav {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .gallery-dots {
        gap: 8px;
    }
}

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

.about-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 3rem;
}

.about-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: right;
}

.about-img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.about-img:hover {
    transform: scale(1.02);
}

.about-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 1rem;
    text-align: right;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.1) 0%, rgba(244, 143, 177, 0.1) 100%);
    padding: 30px;
    border-radius: 10px;
    border-right: 4px solid var(--primary-color);
}

.stat-item {
    padding: 15px 0;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

/* Advantages Section */
.advantages-section h5 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
    text-align: right;
}

.advantages-section h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.advantage-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-right: 3px solid transparent;
    align-items: flex-start;
    text-align: right;
    direction: rtl;
}

.advantage-item:hover {
    background: rgba(233, 30, 99, 0.05);
    transform: translateX(-5px);
    border-right-color: var(--primary-color);
}

.advantage-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 5px;
    grid-column: 1;
}

.advantage-content {
    grid-column: 2;
}

.advantage-content h6 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.3rem;
    text-align: right;
}

.advantage-content p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
    text-align: right;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 3rem;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.contact-card h5 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 1rem 0;
    color: var(--dark-color);
}

.contact-card p {
    color: #666;
    font-size: 1.1rem;
}

.contact-card a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--secondary-color);
}

/* Contact Form */
#contactForm {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: none;
}

.form-group label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.8rem;
}

.form-control {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 12px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(233, 30, 99, 0.25);
}

.form-control::placeholder {
    color: #999;
}

#contactForm .btn {
    padding: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    padding: 40px 0;
    border-top: 3px solid var(--primary-color);
}

.footer-content {
    animation: fadeInUp 0.8s ease;
}

.footer p {
    margin: 0;
    color: #ccc;
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    color: white;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

.social-links a:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 10px 25px rgba(233, 30, 99, 0.5);
}

.footer .small {
    color: #999;
    font-size: 0.9rem;
}

/* Animations */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .services-section h2,
    .gallery-section h2,
    .about-section h2,
    .contact-section h2 {
        font-size: 1.8rem;
    }

    .service-card {
        padding: 25px 15px;
    }

    .carousel-item img {
        height: 300px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 12%;
    }

    .carousel-indicators {
        margin-right: 5%;
        margin-left: 5%;
    }

    .about-img {
        margin-bottom: 2rem;
    }

    .about-title {
        font-size: 1.5rem;
    }

    .about-text {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .advantage-item {
        padding: 12px;
        margin-bottom: 1rem;
    }

    .advantage-item i {
        font-size: 1.3rem;
        margin-left: 1rem;
    }

    .advantage-content h6 {
        font-size: 1rem;
    }

    .advantage-content p {
        font-size: 0.9rem;
    }

    .contact-card {
        margin-bottom: 1rem;
    }

    body {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.2rem;
    }

    .hero-title {
        font-size: 1.5rem;
        padding: 0 1rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .btn-primary {
        padding: 10px 30px;
        font-size: 0.95rem;
    }

    .services-section h2,
    .gallery-section h2,
    .about-section h2,
    .contact-section h2 {
        font-size: 1.5rem;
    }

    .carousel-item img {
        height: 250px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 20%;
    }

    .carousel-indicators li {
        width: 10px;
        height: 10px;
        margin: 0 3px;
    }

    .about-title {
        font-size: 1.3rem;
    }

    .about-text {
        font-size: 0.95rem;
    }

    .stats-section {
        padding: 20px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .advantage-item {
        padding: 10px;
        margin-bottom: 0.8rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .advantage-item i {
        font-size: 1.2rem;
        margin-left: 0;
        margin-bottom: 0.5rem;
    }

    .advantage-content h6 {
        font-size: 0.95rem;
    }

    .advantage-content p {
        font-size: 0.85rem;
    }

    #contactForm {
        padding: 20px;
    }

    .footer p {
        font-size: 0.9rem;
    }
}