/* Base Styles and Variables */
:root {
    --color-primary: #ff4d8d;
    --color-secondary: #8a2be2;
    --color-accent-1: #ffcd3c;
    --color-accent-2: #3ec1d3;
    --color-accent-3: #a0e7a0;
    --color-light: #ffffff;
    --color-dark: #333333;
    --color-grey: #f4f4f4;
    
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
    
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;
    
    --container-width: 1200px;
    --container-padding: 2rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-dark);
    background-color: var(--color-light);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

section {
    padding: var(--spacing-lg) 0;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
    line-height: 1.3;
}

p {
    margin-bottom: var(--spacing-md);
}

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

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

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

ul {
    list-style: none;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: var(--spacing-md);
    position: relative;
    color: var(--color-primary);
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
    margin: 10px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: var(--spacing-md);
    color: var(--color-secondary);
    font-weight: 500;
}

/* Confetti Animation */
.confetti-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.confetti {
    position: absolute;
    top: -20px;
    animation: fall linear forwards;
    transform: rotate(0deg);
}

.button-confetti {
    position: absolute;
    z-index: 9999;
    pointer-events: none;
    animation: buttonConfettiFall 1s ease-out forwards;
}

@keyframes fall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

@keyframes buttonConfettiFall {
    0% {
        transform: translateY(0) scale(0);
        opacity: 1;
    }
    100% {
        transform: translateY(-30px) scale(1);
        opacity: 0;
    }
}

/* Balloon Animation */
.balloon-container {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    overflow: hidden;
    transition: opacity 0.5s ease;
}

.balloon {
    position: absolute;
    bottom: -100px;
    animation: balloonFloat linear forwards;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.1));
    z-index: 9998;
}

.balloon-svg {
    width: 100%;
    height: 100%;
    animation: balloonSway 3s ease-in-out infinite alternate;
}

@keyframes balloonFloat {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-110vh) rotate(10deg);
        opacity: 0;
    }
}

@keyframes balloonSway {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(var(--sway, 1rem));
    }
}

/* Buttons */
.button {
    display: inline-block;
    padding: 12px 30px;
    font-weight: 600;
    text-align: center;
    font-size: 1rem;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.button:after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 70%);
    opacity: 0;
    transform: scale(0.5);
    transition: transform 0.5s, opacity 0.5s;
}

.button:hover:after {
    opacity: 1;
    transform: scale(1);
}

.button.primary {
    background: var(--color-primary);
    color: var(--color-light);
}

.button.primary:hover {
    background: var(--color-secondary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.button.secondary {
    background: var(--color-secondary);
    color: var(--color-light);
}

.button.secondary:hover {
    background: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: var(--color-light);
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: var(--shadow-lg);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
}

/* Header & Navigation */
header {
    background-color: var(--color-light);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-md);
    background-color: rgba(255, 255, 255, 0.95);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
}

.logo h1 {
    color: var(--color-primary);
    margin: 0;
    font-family: var(--font-secondary);
}

.logo span {
    color: var(--color-secondary);
    font-weight: 400;
    font-size: 0.8em;
    margin-left: 5px;
}

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

nav ul {
    display: flex;
    gap: var(--spacing-md);
}

nav a {
    color: var(--color-dark);
    font-weight: 500;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

.cta-button {
    background: var(--color-primary);
    color: var(--color-light) !important;
    padding: 8px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.cta-button:hover {
    background: var(--color-secondary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, rgba(255, 77, 141, 0.1), rgba(138, 43, 226, 0.1));
    margin-top: 80px;
    overflow: hidden;
}

.hero-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    z-index: 10;
}

.hero-logo {
    display: flex;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    width: 100%;
}

.hero-logo-img {
    max-width: 280px;
    height: auto;
    display: block;
    margin: 0 auto var(--spacing-sm);
    animation: fadeInDown 1.2s ease-out;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    color: var(--color-dark);
}

.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.decoration-item {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
}

.d1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--color-accent-1) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.d2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--color-accent-2) 0%, transparent 70%);
    bottom: 50px;
    left: -50px;
    animation: float 10s ease-in-out infinite;
}

.d3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--color-accent-3) 0%, transparent 70%);
    bottom: -100px;
    right: 20%;
    animation: float 12s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

/* Modern Carousel Section */
.carousel-section {
    background-color: var(--color-grey);
    padding: var(--spacing-xl) 0;
}

.modern-carousel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.modern-carousel {
    position: relative;
    overflow: hidden;
    height: 500px;
}

.modern-carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
    height: 100%;
}

.modern-carousel-slide {
    min-width: 100%;
    height: 100%;
    opacity: 0.7;
    transform: scale(0.9);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.modern-carousel-slide.active {
    opacity: 1;
    transform: scale(1);
}

.modern-carousel-content {
    position: relative;
    height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.modern-carousel-image {
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.modern-carousel-content:hover .modern-carousel-image {
    transform: scale(1.05);
}

.modern-carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: var(--spacing-md);
    color: var(--color-light);
    background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    transform: translateY(0);
    opacity: 1;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.modern-carousel-slide:not(.active) .modern-carousel-caption {
    transform: translateY(20px);
    opacity: 0;
}

.modern-carousel-navigation {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 5;
}

.modern-carousel-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    color: var(--color-light);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.modern-carousel-arrow:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.modern-carousel-progress {
    flex-grow: 1;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    margin: 0 20px;
    overflow: hidden;
}

.modern-carousel-progress-bar {
    width: 0;
    height: 100%;
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
    transition: width 0.5s ease;
}

.modern-carousel-thumbnails {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.thumbnail {
    width: 60px;
    height: 40px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.thumbnail::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    transition: background-color 0.3s ease;
}

.thumbnail.active::after {
    background-color: rgba(0, 0, 0, 0);
}

.thumbnail:hover {
    transform: scale(1.1);
}

.thumbnail:nth-child(1) {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 500'%3E%3Crect width='800' height='500' fill='%237165ea' /%3E%3C/svg%3E");
}

.thumbnail:nth-child(2) {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 500'%3E%3Crect width='800' height='500' fill='%23FFB347' /%3E%3C/svg%3E");
}

.thumbnail:nth-child(3) {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 500'%3E%3Crect width='800' height='500' fill='%23FF6B6B' /%3E%3C/svg%3E");
}

.thumbnail:nth-child(4) {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 500'%3E%3Crect width='800' height='500' fill='%2383EAF1' /%3E%3C/svg%3E");
}

.thumbnail:nth-child(5) {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 500'%3E%3Crect width='800' height='500' fill='%23FF61D2' /%3E%3C/svg%3E");
}

@media (max-width: 768px) {
    .modern-carousel {
        height: 400px;
    }
    
    .modern-carousel-thumbnails {
        display: none;
    }
    
    .modern-carousel-navigation {
        bottom: 20px;
        padding: 0 20px;
    }
    
    .modern-carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .modern-carousel {
        height: 300px;
    }
    
    .modern-carousel-caption h3 {
        font-size: 1.2rem;
    }
    
    .modern-carousel-caption p {
        font-size: 0.9rem;
    }
    
    .modern-carousel-navigation {
        bottom: 15px;
        padding: 0 15px;
    }
    
    .modern-carousel-arrow {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* Services Section */
.services {
    background-color: var(--color-light);
    padding: var(--spacing-xl) 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.service-card {
    background-color: var(--color-light);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.service-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    height: 80px;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 50%;
    color: var(--color-light);
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
}

.service-card:nth-child(1) .service-icon {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
}

.service-card:nth-child(2) .service-icon {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent-2));
}

.service-card:nth-child(3) .service-icon {
    background: linear-gradient(135deg, var(--color-accent-2), var(--color-accent-3));
}

.service-card:nth-child(4) .service-icon {
    background: linear-gradient(135deg, var(--color-accent-3), var(--color-accent-1));
}

.service-card:nth-child(5) .service-icon {
    background: linear-gradient(135deg, var(--color-accent-1), var(--color-primary));
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--color-secondary);
}

.services-description {
    text-align: center;
    font-size: 1.2rem;
    color: var(--color-dark);
    max-width: 700px;
    margin: 0 auto;
}

/* Piñatas Section */
.pinatas {
    background: linear-gradient(135deg, rgba(255, 77, 141, 0.1), rgba(138, 43, 226, 0.1));
    padding: var(--spacing-xl) 0;
}

.pinatas-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
    font-size: 1.1rem;
}

.pinatas-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.pinata-item {
    position: relative;
    height: 300px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    cursor: pointer;
}

.pinata-image {
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: all 0.5s ease;
}

.pinata-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: var(--spacing-md);
    background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
    color: var(--color-light);
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.pinata-item:hover .pinata-overlay {
    transform: translateY(0);
}

.pinata-item:hover .pinata-image {
    transform: scale(1.1);
}

.pinatas-cta {
    text-align: center;
}

/* Piñata Modal */
.pinata-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.pinata-modal.active {
    opacity: 1;
    visibility: visible;
}

.pinata-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    cursor: pointer;
}

.pinata-modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    background-color: var(--color-light);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    overflow-y: auto;
    z-index: 2001;
    transform: scale(0.7);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.pinata-modal.active .pinata-modal-content {
    transform: scale(1);
}

.pinata-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2rem;
    background: transparent;
    border: none;
    color: var(--color-primary);
    cursor: pointer;
    z-index: 2002;
    transition: all 0.2s ease;
}

.pinata-modal-close:hover {
    color: var(--color-secondary);
    transform: scale(1.1);
}

.pinata-modal-image-container {
    width: 100%;
    margin-bottom: var(--spacing-md);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.pinata-modal-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.pinata-modal-title {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: var(--spacing-sm);
    color: var(--color-primary);
}

.pinata-modal-description {
    text-align: center;
    margin-bottom: var(--spacing-sm);
    color: var(--color-dark);
    line-height: 1.6;
}

/* Prevent scrolling when modal is open */
.body-no-scroll {
    overflow: hidden;
}

@media (max-width: 576px) {
    .pinata-modal-content {
        padding: var(--spacing-sm);
    }
    
    .pinata-modal-title {
        font-size: 1.5rem;
    }
}

/* Testimonials Section */
.testimonials {
    background-color: var(--color-light);
    padding: var(--spacing-xl) 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.testimonial-card {
    background-color: var(--color-grey);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
}

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

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: var(--spacing-sm);
    background-size: cover;
    background-position: center;
    border: 3px solid var(--color-primary);
}

/* Placeholder backgrounds for testimonial avatars */
.t1 { background-color: var(--color-primary); }
.t2 { background-color: var(--color-secondary); }
.t3 { background-color: var(--color-accent-2); }

.testimonial-stars {
    color: var(--color-accent-1);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: var(--spacing-sm);
}

.testimonial-content h4 {
    color: var(--color-secondary);
    font-size: 1.1rem;
}

/* Contact Form Section */
.contact {
    background: linear-gradient(135deg, rgba(255, 77, 141, 0.1), rgba(138, 43, 226, 0.1));
    padding: var(--spacing-xl) 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: var(--spacing-md);
    color: var(--color-secondary);
}

.contact-details {
    margin-bottom: var(--spacing-md);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-sm);
}

.contact-item i {
    color: var(--color-primary);
    font-size: 1.2rem;
    margin-right: 10px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-light);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:nth-child(1) {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-links a:nth-child(2) {
    background: #3b5998;
}

.social-links a:nth-child(3) {
    background: #25d366;
}

.social-links a:hover {
    transform: translateY(-5px);
}

.contact-form {
    background-color: var(--color-light);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: var(--spacing-sm);
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-primary);
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 77, 141, 0.2);
}

/* Footer */
footer {
    background-color: var(--color-secondary);
    color: var(--color-light);
    padding: var(--spacing-lg) 0 var(--spacing-sm);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-md);
}

.footer-logo h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.footer-logo p {
    max-width: 300px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-social {
    display: flex;
    gap: var(--spacing-md);
}

.footer-social a,
.footer-contact a {
    color: var(--color-light);
    transition: all 0.3s ease;
}

.footer-social a:hover,
.footer-contact a:hover {
    color: var(--color-accent-1);
}

.footer-social i,
.footer-contact i {
    margin-right: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-sm);
    text-align: center;
    font-size: 0.9rem;
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.show {
    opacity: 1;
    transform: translateY(0);
}

/* Media Queries for Responsive Design */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    :root {
        --container-padding: 1rem;
    }

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

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

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

    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--color-light);
        flex-direction: column;
        align-items: center;
        padding: var(--spacing-md) 0;
        box-shadow: var(--shadow-md);
    }

    nav ul.show {
        display: flex;
    }

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

    .footer-content {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .carousel {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }

    .carousel {
        height: 300px;
    }
}