/* Footer */
.footer {
    background: linear-gradient(135deg, #4A4A4A 0%, #6A4C93 100%);
    color: #FFFFFF;
    padding: 80px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footerPattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="%23F48FB1" opacity="0.1"/><circle cx="10" cy="40" r="1" fill="%23FFD700" opacity="0.15"/></pattern></defs><rect width="100" height="100" fill="url(%23footerPattern)"/></svg>');
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.footer-section h3 {
    background: linear-gradient(135deg, #F48FB1, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.footer-section p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #E8E8E8;
}

.footer-section i {
    color: #F48FB1;
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #F48FB1, #FFD700);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.4s ease;
    font-size: 1.3rem;
    box-shadow: 0 8px 20px rgba(244, 143, 177, 0.3);
}

.social-links a:hover {
    background: linear-gradient(135deg, #FFD700, #F48FB1);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 30px rgba(244, 143, 177, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 2px solid rgba(244, 143, 177, 0.2);
    color: #B8B8B8;
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 70px;
    height: 70px;
    bottom: 25px;
    right: 25px;
    background: linear-gradient(135deg, #F48FB1, #FFD700);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(244, 143, 177, 0.4);
    z-index: 1000;
    transition: all 0.4s ease;
    animation: pulse 3s infinite;
}

.whatsapp-float:hover {
    background: linear-gradient(135deg, #FFD700, #F48FB1);
    transform: scale(1.15);
    box-shadow: 0 15px 40px rgba(244, 143, 177, 0.5);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(244, 143, 177, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(244, 143, 177, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(244, 143, 177, 0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.4s;
        box-shadow: 0 15px 35px rgba(244, 143, 177, 0.2);
        padding: 30px 0;
        gap: 25px;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* Hero Section Mobile */
    .hero {
        padding: 120px 0 80px;
        min-height: 80vh;
        background-attachment: scroll;
    }

    .hero-content {
        margin: 0 20px;
        padding: 40px 25px;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    /* Services Mobile */
    .services {
        padding: 80px 0;
    }

    .service-item {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 80px;
        padding: 0 20px;
    }

    .service-item.reverse {
        direction: ltr;
    }

    .service-content h2 {
        font-size: 2.2rem;
        text-align: center;
    }

    .service-content {
        text-align: center;
    }

    .service-content p {
        font-size: 1.1rem;
    }

    .service-image img {
        height: 300px;
    }

    /* Gallery Mobile */
    .photo-gallery {
        padding: 60px 0;
    }

    .gallery-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .gallery-item img {
        height: 220px;
    }

    /* Form Mobile */
    .contact-form {
        padding: 80px 0;
    }

    .contact-form h2 {
        font-size: 2.2rem;
    }

    .contact-form > .container > p {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }

    form {
        margin: 0 20px;
        padding: 35px 25px;
    }

    .location {
        padding: 80px 0;
    }

    .location h2 {
        font-size: 2.2rem;
    }

    .location > .container > p {
        font-size: 1.1rem;
    }

    /* Footer Mobile */
    .footer {
        padding: 60px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

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

    .service-content h2 {
        font-size: 1.8rem;
    }

    .service-content p {
        font-size: 1rem;
    }

    .contact-form h2,
    .location h2 {
        font-size: 1.8rem;
    }

    .contact-form > .container > p,
    .location > .container > p {
        font-size: 1rem;
    }

    .btn {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .services,
    .contact-form,
    .location {
        padding: 60px 0;
    }

    .photo-gallery {
        padding: 50px 0;
    }

    .footer {
        padding: 50px 0 20px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth Scrolling Enhancement */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

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

/* Hover Effects Enhancement */
.service-item:hover .service-image img {
    transform: scale(1.05) translateY(-8px);
    transition: transform 0.6s ease;
}

.btn:active {
    transform: translateY(-2px);
}

/* Focus States for Accessibility */
.btn:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 3px solid rgba(244, 143, 177, 0.5);
    outline-offset: 3px;
}

/* Print Styles */
@media print {
    .navbar,
    .whatsapp-float,
    .hero-buttons,
    .btn {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: black;
    }
    
    .hero,
    .services,
    .contact-form,
    .location {
        padding: 20px 0;
    }
    
    .hero h1,
    .service-content h2,
    .contact-form h2,
    .location h2 {
        color: #4A4A4A !important;
    }
}/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #4A4A4A;
    overflow-x: hidden;
    background: #FFFFFF;
}

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

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(244, 143, 177, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-img {
    height: 40px; /* Ajusta la altura según necesites */
    width: auto; /* Mantiene la proporción */
    border-radius: 8px; /* Opcional: bordes redondeados */
}

.logo-placeholder {
    background: linear-gradient(135deg, #F48FB1, #FFD700);
    color: #FFFFFF;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(244, 143, 177, 0.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #4A4A4A;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.5px;
}

.nav-menu a:hover {
    color: #F48FB1;
    transform: translateY(-2px);
}

.whatsapp-nav {
    background: linear-gradient(135deg, #F48FB1, #FCE4EC);
    color: #4A4A4A !important;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(244, 143, 177, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.whatsapp-nav:hover {
    background: linear-gradient(135deg, #FFD700, #F48FB1);
    color: #FFFFFF !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(244, 143, 177, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #F48FB1;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(244, 143, 177, 0.3), rgba(252, 228, 236, 0.4)), url('ruta-imagen-hero-background.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    padding: 140px 0 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(1px);
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(244, 143, 177, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #F48FB1, #FFD700, #F48FB1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-description {
    font-size: 1.3rem;
    color: #6A4C93;
    margin-bottom: 35px;
    line-height: 1.8;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 18px 35px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    border: none;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #F48FB1, #FFD700);
    color: #FFFFFF;
    box-shadow: 0 8px 25px rgba(244, 143, 177, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #FFD700, #F48FB1);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(244, 143, 177, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #FFFFFF, #FCE4EC);
    color: #F48FB1;
    box-shadow: 0 8px 25px rgba(244, 143, 177, 0.2);
    border: 2px solid rgba(244, 143, 177, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #F48FB1, #FFD700);
    color: #FFFFFF;
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(244, 143, 177, 0.4);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    color: #F48FB1;
    border: 2px solid #F48FB1;
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: #F48FB1;
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(244, 143, 177, 0.4);
}

.hero-image {
    display: none;
}

.hero-image::before {
    display: none;
}

.hero-image img {
    display: none;
}

/* Photo Gallery */
.photo-gallery {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #FCE4EC 100%);
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(244, 143, 177, 0.2);
    transition: all 0.4s ease;
    background: linear-gradient(135deg, #FFFFFF, #FCE4EC);
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(244, 143, 177, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

/* Services Section */
.services {
    padding: 120px 0;
    background: #FFFFFF;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
    padding: 0 20px;
}

.service-item:last-child {
    margin-bottom: 0;
}

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

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

.service-image {
    position: relative;
}

.service-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(244, 143, 177, 0.1), rgba(255, 215, 0, 0.1));
    border-radius: 25px;
    z-index: 1;
    transition: all 0.4s ease;
}

.service-item:hover .service-image::before {
    transform: rotate(3deg) scale(1.05);
}

.service-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(244, 143, 177, 0.2);
    position: relative;
    z-index: 2;
    border: 3px solid rgba(255, 215, 0, 0.3);
    transition: all 0.4s ease;
}

.service-item:hover .service-image img {
    transform: translateY(-5px);
    box-shadow: 0 35px 70px rgba(244, 143, 177, 0.3);
}

.service-content h2 {
    font-size: 2.8rem;
    background: linear-gradient(135deg, #F48FB1, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.2;
}

.service-content p {
    font-size: 1.2rem;
    color: #6A4C93;
    line-height: 1.9;
    margin-bottom: 35px;
    font-weight: 400;
}

/* Contact Form */
.contact-form {
    padding: 120px 0;
    background: linear-gradient(135deg, #FCE4EC 0%, #F8BBD9 50%, #F48FB1 100%);
    position: relative;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23FFD700" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    pointer-events: none;
}

.contact-form h2 {
    text-align: center;
    font-size: 3rem;
    background: linear-gradient(135deg, #FFFFFF, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: -1px;
}

.contact-form > .container > p {
    text-align: center;
    color: #FFFFFF;
    font-size: 1.3rem;
    margin-bottom: 60px;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

form {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(244, 143, 177, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.2);
    position: relative;
    z-index: 2;
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: #6A4C93;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid rgba(244, 143, 177, 0.2);
    border-radius: 15px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: rgba(252, 228, 236, 0.3);
    color: #4A4A4A;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #F48FB1;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 20px rgba(244, 143, 177, 0.2);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

/* Location */
.location {
    padding: 120px 0;
    background: #FFFFFF;
}

.location h2 {
    text-align: center;
    font-size: 3rem;
    background: linear-gradient(135deg, #F48FB1, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: -1px;
}

.location > .container > p {
    text-align: center;
    color: #6A4C93;
    font-size: 1.3rem;
    margin-bottom: 60px;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.map-container {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(244, 143, 177, 0.2);
    border: 3px solid rgba(255, 215, 0, 0.3);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Footer */
.footer {
    background: #2c2c2c;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: #8B4B8C;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #8B4B8C;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #7a4279;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #999;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #22c55e;
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        gap: 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* Hero Section Mobile */
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Services Mobile */
    .service-item {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }

    .service-item.reverse {
        direction: ltr;
    }

    .service-content h2 {
        font-size: 2rem;
        text-align: center;
    }

    .service-content {
        text-align: center;
    }

    .service-image img {
        height: 250px;
    }

    /* Gallery Mobile */
    .gallery-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }

    .gallery-item img {
        height: 200px;
    }

    /* Form Mobile */
    form {
        margin: 0 20px;
        padding: 30px 20px;
    }

    .contact-form h2,
    .location h2 {
        font-size: 2rem;
    }

    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    /* Buttons Mobile */
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

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

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

    .service-content h2 {
        font-size: 1.5rem;
    }

    .service-content p {
        font-size: 1rem;
    }

    .contact-form h2,
    .location h2 {
        font-size: 1.5rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

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

    .services,
    .contact-form,
    .location {
        padding: 60px 0;
    }

    .photo-gallery {
        padding: 40px 0;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth Scrolling Enhancement */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

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

/* Hover Effects Enhancement */
.service-item:hover .service-image img {
    transform: scale(1.05);
    transition: transform 0.5s ease;
}

.btn:active {
    transform: translateY(-1px);
}

/* Focus States for Accessibility */
.btn:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #8B4B8C;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .navbar,
    .whatsapp-float,
    .hero-buttons,
    .btn {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: black;
    }
    
    .hero,
    .services,
    .contact-form,
    .location {
        padding: 20px 0;
    }
}