/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #d4af37;
    --secondary-color: #f5e6d3;
    --accent-color: #c9a961;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --bg-light: #fafafa;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo-wrapper {
    position: relative;
    display: inline-block;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    white-space: nowrap;
    position: relative;
    letter-spacing: 0.5px;
    display: inline-block;
    background: linear-gradient(90deg, 
        #1a1a1a 0%, 
        #1a1a1a 25%, 
        #2a2a2a 35%, 
        #D4AF37 45%, 
        #FFD700 50%, 
        #FFF8DC 52%, 
        #FFD700 54%, 
        #D4AF37 58%, 
        #2a2a2a 65%, 
        #1a1a1a 75%, 
        #1a1a1a 100%);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: var(--transition);
    animation: shimmer 4s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-text::before {
    content: 'Aiesta Nailart Studio';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        transparent 40%, 
        rgba(212, 175, 55, 0.3) 48%, 
        rgba(255, 215, 0, 0.6) 50%, 
        rgba(212, 175, 55, 0.3) 52%, 
        transparent 60%, 
        transparent 100%);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerGlow 4s ease-in-out infinite;
    z-index: -1;
    filter: blur(2px);
}

.logo-text::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -10%;
    width: 20%;
    height: 120%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 215, 0, 0.4), 
        transparent);
    transform: translateY(-50%) skewX(-20deg);
    animation: shimmerSweep 4s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

.logo:hover .logo-text {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.5)) 
            drop-shadow(0 0 20px rgba(255, 215, 0, 0.3));
    animation-duration: 2s;
}

.logo:hover .logo-text::before {
    animation-duration: 2s;
    filter: blur(3px);
}

.logo:hover .logo-text::after {
    animation-duration: 2s;
    width: 30%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 215, 0, 0.6), 
        rgba(255, 255, 255, 0.4),
        rgba(255, 215, 0, 0.6),
        transparent);
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.logo-glow-nav {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
    animation: logoPulse 3s ease-in-out infinite;
}

.logo:hover .logo-img {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.6));
}

.logo:hover .logo-glow-nav {
    opacity: 1;
    width: 100px;
    height: 100px;
    animation: logoGlow 1s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes logoGlow {
    0%, 100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

@keyframes shimmer {
    0% {
        background-position: -300% 0;
    }
    50% {
        background-position: 0% 0;
    }
    100% {
        background-position: 300% 0;
    }
}

@keyframes shimmerGlow {
    0% {
        background-position: -300% 0;
        opacity: 0;
    }
    25% {
        opacity: 0.5;
    }
    50% {
        background-position: 0% 0;
        opacity: 1;
    }
    75% {
        opacity: 0.5;
    }
    100% {
        background-position: 300% 0;
        opacity: 0;
    }
}

@keyframes shimmerSweep {
    0% {
        left: -20%;
        opacity: 0;
    }
    20% {
        opacity: 0.8;
    }
    50% {
        left: 120%;
        opacity: 1;
    }
    80% {
        opacity: 0.8;
    }
    100% {
        left: 140%;
        opacity: 0;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
}

.hero-logo-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.hero-logo-wrapper {
    position: relative;
    display: inline-block;
    animation: logoEntrance 1.5s ease-out forwards;
}

.hero-logo {
    width: 300px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.5));
    animation: logoFloat 4s ease-in-out infinite, logoRotate 20s linear infinite;
    position: relative;
    z-index: 3;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, rgba(201, 169, 97, 0.2) 30%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 3s ease-in-out infinite;
    z-index: 1;
}

.logo-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    z-index: 2;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, var(--primary-color), transparent);
    border-radius: 50%;
    animation: particleFloat 6s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
}

.particle:nth-child(1) {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
    animation-duration: 5s;
}

.particle:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: 0.5s;
    animation-duration: 6s;
}

.particle:nth-child(3) {
    bottom: 15%;
    left: 25%;
    animation-delay: 1s;
    animation-duration: 7s;
}

.particle:nth-child(4) {
    bottom: 20%;
    right: 20%;
    animation-delay: 1.5s;
    animation-duration: 5.5s;
}

.particle:nth-child(5) {
    top: 50%;
    left: 5%;
    animation-delay: 2s;
    animation-duration: 6.5s;
}

.particle:nth-child(6) {
    top: 50%;
    right: 5%;
    animation-delay: 2.5s;
    animation-duration: 5.8s;
}

.particle:nth-child(7) {
    top: 30%;
    left: 50%;
    animation-delay: 3s;
    animation-duration: 6.2s;
}

.particle:nth-child(8) {
    bottom: 30%;
    left: 50%;
    animation-delay: 3.5s;
    animation-duration: 5.5s;
}

@keyframes logoEntrance {
    0% {
        opacity: 0;
        transform: scale(0.5) rotate(-180deg);
    }
    60% {
        transform: scale(1.1) rotate(10deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

@keyframes logoRotate {
    0% {
        filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.5)) hue-rotate(0deg);
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(212, 175, 55, 0.7)) hue-rotate(180deg);
    }
    100% {
        filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.5)) hue-rotate(360deg);
    }
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(20px, -30px) scale(1.2);
        opacity: 1;
    }
    50% {
        transform: translate(-15px, -50px) scale(0.8);
        opacity: 0.8;
    }
    75% {
        transform: translate(-30px, -20px) scale(1.1);
        opacity: 0.9;
    }
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.05);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.05) 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    color: var(--white);
    padding: 2rem;
    max-width: 800px;
    margin-top: 200px;
    animation: contentFadeIn 1s ease-out 0.8s backwards;
}

@keyframes contentFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
    animation: fadeInUp 1s ease 0.2s backwards;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: 1.5rem;
}

/* Services Section */
.services {
    background: var(--bg-light);
}

.service-category {
    margin-bottom: 5rem;
}

.service-category:last-child {
    margin-bottom: 0;
}

.category-header {
    text-align: center;
    margin-bottom: 4rem;
}

.category-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.category-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    border-radius: 2px;
}

.category-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 2rem;
    font-style: italic;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.service-card.animate {
    opacity: 1;
    transform: translateY(0);
    animation: slideInUp 0.6s ease forwards;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.25);
    border-color: rgba(212, 175, 55, 0.3);
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(212, 175, 55, 0.6);
    }
}

.service-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--secondary-color), var(--bg-light));
}

.service-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
    transition: var(--transition);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-btn {
    background: var(--white);
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    transform: translateY(20px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.service-card:hover .service-btn {
    transform: translateY(0);
}

.service-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.15);
}

.service-content {
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
}

.service-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--secondary-color), rgba(212, 175, 55, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    position: relative;
}

.service-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.service-card:hover .service-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.service-card:hover .service-icon-wrapper::before {
    opacity: 0.2;
}

.service-icon {
    width: 35px;
    height: 35px;
    color: var(--primary-color);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    color: var(--accent-color);
    transform: scale(1.1);
}

.service-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    min-height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.3;
    transition: var(--transition);
}

.service-card:hover .service-content h3 {
    color: var(--primary-color);
}

.service-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    min-height: 3rem;
}

.service-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.3rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--secondary-color);
    position: relative;
}

.service-price::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: var(--transition);
}

.service-card:hover .service-price::before {
    width: 100%;
}

.price-amount {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    transition: var(--transition);
}

.price-currency {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--accent-color);
    transition: var(--transition);
}

.service-card:hover .price-amount {
    animation: pricePulse 0.5s ease;
    transform: scale(1.05);
}

.service-card:hover .price-currency {
    transform: scale(1.1);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pricePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* About Section */
.about {
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-light) 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.about .container {
    position: relative;
    z-index: 1;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    transition: var(--transition);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    z-index: 1;
    transition: var(--transition);
}

.about-image:hover::before {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, transparent 50%);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    display: block;
}

.about-image:hover img {
    transform: scale(1.08);
}

.about-image-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 2;
}

.experience-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    text-align: center;
    animation: badgeFloat 3s ease-in-out infinite;
}

.badge-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.badge-text {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.95;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes badgeFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.about-features {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.feature-item {
    flex: 1;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 2px solid transparent;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--secondary-color), rgba(212, 175, 55, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.feature-icon svg {
    width: 25px;
    height: 25px;
    color: var(--primary-color);
}

.feature-item:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    transform: scale(1.1) rotate(5deg);
}

.feature-item:hover .feature-icon svg {
    color: var(--white);
}

.feature-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 600;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.about-intro h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.about-intro h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.intro-text {
    color: var(--text-light);
    line-height: 1.9;
    font-size: 1.05rem;
    margin: 0;
}

.about-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 15px;
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.detail-item:hover {
    background: var(--white);
    border-left-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transform: translateX(5px);
}

.detail-icon {
    font-size: 2.5rem;
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary-color), rgba(212, 175, 55, 0.1));
    border-radius: 12px;
    transition: var(--transition);
}

.detail-item:hover .detail-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    transform: scale(1.1) rotate(5deg);
}

.detail-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.detail-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.stat {
    text-align: center;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, var(--white), var(--bg-light));
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: var(--transition);
}

.stat:hover::before {
    transform: scaleX(1);
}

.stat:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.3);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    transition: var(--transition);
}

.stat:hover .stat-icon {
    transform: scale(1.2) rotate(10deg);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-weight: 700;
    line-height: 1;
    transition: var(--transition);
}

.stat:hover .stat-number {
    transform: scale(1.1);
}

.stat p {
    color: var(--text-dark);
    font-weight: 500;
    margin: 0;
    font-size: 0.95rem;
}

.about-btn {
    align-self: flex-start;
    margin-top: 1rem;
}

/* Testimonials Section */
.testimonials-section {
    margin-top: 5rem;
    padding-top: 4rem;
    border-top: 2px solid var(--secondary-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 2px solid transparent;
    opacity: 0;
    transform: translateY(30px);
}

.testimonial-card.animate {
    opacity: 1;
    transform: translateY(0);
    animation: slideInUp 0.6s ease forwards;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--secondary-color);
    flex-shrink: 0;
    transition: var(--transition);
}

.testimonial-card:hover .testimonial-avatar {
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--text-dark);
    margin: 0 0 0.3rem 0;
    font-weight: 600;
}

.testimonial-service {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
    font-style: italic;
}

.testimonial-rating {
    margin-bottom: 1rem;
    display: flex;
    gap: 0.2rem;
}

.testimonial-rating .star {
    font-size: 1.2rem;
    color: var(--primary-color);
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
}

.testimonial-text {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
    margin: 0;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    opacity: 0.3;
    line-height: 1;
}

/* Gallery Section */
.gallery {
    background: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
    box-shadow: 0 5px 15px var(--shadow);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    font-size: 3rem;
    color: var(--white);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    overflow: auto;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: var(--white);
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--primary-color);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    padding: 20px;
    transition: var(--transition);
    user-select: none;
}

.lightbox-prev {
    left: 50px;
}

.lightbox-next {
    right: 50px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--primary-color);
}

/* Contact Section */
.contact {
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: var(--transition);
    border: 2px solid transparent;
}

.contact-info-card:hover {
    background: var(--white);
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transform: translateX(5px);
}

.contact-card-icon {
    font-size: 2rem;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card-content h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.contact-card-content p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.contact-card-content a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.contact-card-content a:hover {
    color: var(--primary-color);
}

.contact-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: var(--white);
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
}

.contact-whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.contact-whatsapp-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.contact-map-card {
    margin-top: 0.5rem;
}


.contact-map {
    display: block;
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    background: linear-gradient(135deg, var(--secondary-color), var(--bg-light));
    text-decoration: none;
}

.contact-map:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(201, 169, 97, 0.05));
    color: var(--text-dark);
    text-align: center;
    padding: 1.2rem;
}

.map-pin {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    animation: mapPinBounce 2s ease-in-out infinite;
}

.map-placeholder h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.map-placeholder p {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.5;
    margin: 0;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    z-index: 10;
}

.contact-map:hover .map-overlay {
    opacity: 1;
}

.map-icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.map-icon svg {
    width: 30px;
    height: 30px;
    color: var(--primary-color);
}

.map-text {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

@keyframes mapPinBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.contact-form {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.footer-logo img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: var(--transition);
    position: relative;
    z-index: 2;
    animation: footerLogoFloat 4s ease-in-out infinite;
}

.footer-logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.footer-logo:hover img {
    transform: scale(1.15) rotate(-5deg);
    filter: brightness(0) invert(1) drop-shadow(0 0 15px rgba(255, 255, 255, 0.5));
}

.footer-logo:hover::before {
    opacity: 1;
    width: 120px;
    height: 120px;
    animation: footerLogoGlow 1s ease-in-out infinite;
}

@keyframes footerLogoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes footerLogoGlow {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.footer-address {
    color: var(--white);
}

.footer-address h4 {
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
}

.footer-address p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.footer-map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 8px 16px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.footer-map-link:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.footer-links h4,
.footer-social h4 {
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    text-decoration: none;
    color: var(--white);
    transition: var(--transition);
    font-weight: 500;
    font-size: 0.95rem;
}

.social-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateX(5px);
}

.social-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    transition: var(--transition);
}

.social-btn:hover svg {
    transform: scale(1.1);
}

.whatsapp-btn:hover {
    background: rgba(37, 211, 102, 0.2);
    border-color: rgba(37, 211, 102, 0.5);
    color: #25d366;
}

.instagram-btn:hover {
    background: rgba(225, 48, 108, 0.2);
    border-color: rgba(225, 48, 108, 0.5);
    color: #e1306c;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.footer-credits {
    margin-top: 0;
    padding-top: 0;
    width: 100%;
    animation: creditsFadeIn 1s ease-out 0.5s both;
}

.footer-design-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    flex-wrap: wrap;
    position: relative;
}

.design-label {
    font-weight: 400;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    animation: labelPulse 3s ease-in-out infinite;
}

.design-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(255, 215, 0, 0.1) 50%, rgba(212, 175, 55, 0.15) 100%);
    background-size: 200% 200%;
    border: 1px solid rgba(212, 175, 55, 0.3);
    overflow: hidden;
    animation: linkGlow 4s ease-in-out infinite;
    cursor: pointer;
    z-index: 1;
}

.design-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 215, 0, 0.3), 
        rgba(212, 175, 55, 0.4),
        rgba(255, 215, 0, 0.3),
        transparent);
    transition: left 0.6s ease;
    z-index: -1;
    pointer-events: none;
}

.design-link::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    transition: width 0.4s ease, height 0.4s ease;
    z-index: -2;
    pointer-events: none;
}

.design-link:hover {
    color: #FFD700;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4),
                0 0 30px rgba(255, 215, 0, 0.2),
                inset 0 0 20px rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.6);
    background-position: 100% 100%;
}

.design-link:hover::before {
    left: 100%;
}

.design-link:hover::after {
    width: 200%;
    height: 200%;
}

.design-link:hover .design-label {
    opacity: 1;
}

.design-agency {
    font-weight: 600;
    background: linear-gradient(90deg, 
        #1a1a1a 0%, 
        #2a2a2a 20%, 
        #D4AF37 40%, 
        #FFD700 50%, 
        #FFF8DC 52%, 
        #FFD700 54%, 
        #D4AF37 60%, 
        #2a2a2a 80%, 
        #1a1a1a 100%);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerText 3s ease-in-out infinite, textGlow 2s ease-in-out infinite alternate;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.3));
    pointer-events: none;
}

.design-link:hover .design-agency {
    animation-duration: 1s, 1s;
    background-size: 300% 100%;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

.design-icon {
    width: 14px;
    height: 14px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: rgba(212, 175, 55, 0.8);
    position: relative;
    z-index: 2;
    animation: iconFloat 3s ease-in-out infinite;
    pointer-events: none;
}

.design-link:hover .design-icon {
    transform: translate(4px, -4px) rotate(45deg) scale(1.2);
    color: #FFD700;
    filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.8));
    animation: iconSpin 0.6s ease-in-out;
}

@keyframes creditsFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes labelPulse {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
}

@keyframes linkGlow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(212, 175, 55, 0.2);
        border-color: rgba(212, 175, 55, 0.3);
    }
    50% {
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
        border-color: rgba(212, 175, 55, 0.5);
    }
}

@keyframes shimmerText {
    0% {
        background-position: -300% 0;
    }
    100% {
        background-position: 300% 0;
    }
}

@keyframes textGlow {
    0% {
        filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.3));
    }
    100% {
        filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
    }
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-2px);
    }
}

@keyframes iconSpin {
    0% {
        transform: translate(4px, -4px) rotate(0deg) scale(1.2);
    }
    50% {
        transform: translate(4px, -4px) rotate(180deg) scale(1.3);
    }
    100% {
        transform: translate(4px, -4px) rotate(45deg) scale(1.2);
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        padding: 1rem 0;
    }

    .nav-toggle {
        display: flex;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .logo-text::after {
        width: 15%;
        height: 110%;
    }
    
    .logo {
        gap: 0.8rem;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-logo {
        width: 200px;
    }
    
    .logo-glow {
        width: 300px;
        height: 300px;
    }
    
    .logo-particles {
        width: 350px;
        height: 350px;
    }
    
    .hero-content {
        margin-top: 150px;
    }
    
    .particle {
        width: 6px;
        height: 6px;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-left {
        order: 2;
    }
    
    .contact-form {
        order: 1;
    }
    
    .contact-map {
        height: 180px;
    }
    
    .map-pin {
        font-size: 1.5rem;
    }
    
    .map-placeholder {
        padding: 1rem;
    }
    
    .map-placeholder h4 {
        font-size: 0.8rem;
    }
    
    .map-placeholder p {
        font-size: 0.85rem;
    }
    
    .map-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.5rem;
    }
    
    .map-icon svg {
        width: 25px;
        height: 25px;
    }
    
    .map-text {
        font-size: 0.9rem;
    }
    
    .contact-info-card {
        padding: 1.2rem;
    }
    
    .contact-card-icon {
        font-size: 1.5rem;
        min-width: 40px;
    }
    
    .contact-card-content h4 {
        font-size: 0.75rem;
    }
    
    .contact-card-content p {
        font-size: 1rem;
    }
    
    .contact-whatsapp-btn {
        padding: 0.9rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .contact-whatsapp-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .about-image-wrapper {
        order: 1;
    }
    
    .about-text {
        order: 2;
    }
    
    .about-features {
        flex-direction: column;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .about-intro h3 {
        font-size: 1.8rem;
    }
    
    .testimonials-section {
        margin-top: 3rem;
        padding-top: 3rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-avatar {
        width: 50px;
        height: 50px;
    }
    
    .testimonial-info h4 {
        font-size: 1.1rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
        padding-left: 1.2rem;
    }
    
    .testimonial-text::before {
        font-size: 2.5rem;
    }
    
    .stat {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .experience-badge {
        padding: 1.2rem 1.5rem;
    }
    
    .badge-number {
        font-size: 2rem;
    }
    
    .detail-item {
        padding: 1.2rem;
    }
    
    .detail-content h4 {
        font-size: 1.1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        max-width: 100%;
    }
    
    .service-image {
        height: 220px;
    }
    
    .category-title {
        font-size: 2rem;
    }
    
    .category-icon {
        font-size: 3rem;
    }
    
    .category-description {
        font-size: 1rem;
    }
    
    .price-amount {
        font-size: 2.2rem;
    }
    
    .service-content {
        padding: 2rem 1.5rem;
    }
    
    .service-content h3 {
        font-size: 1.3rem;
        min-height: auto;
    }
    
    .service-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .service-icon {
        width: 30px;
        height: 30px;
    }
    
    .service-badge {
        font-size: 0.7rem;
        padding: 5px 12px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 2rem;
        padding: 10px;
    }

    .lightbox-prev {
        left: 20px;
    }

    .lightbox-next {
        right: 20px;
    }

    .lightbox-close {
        top: 20px;
        right: 30px;
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-logo {
        width: 150px;
    }
    
    .logo-glow {
        width: 250px;
        height: 250px;
    }
    
    .logo-particles {
        width: 300px;
        height: 300px;
    }
    
    .hero-content {
        margin-top: 100px;
    }
    
    .particle {
        width: 5px;
        height: 5px;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .logo-text {
        font-size: 0.9rem;
    }
    
    .logo-text::before {
        filter: blur(1px);
    }
    
    .logo-text::after {
        width: 12%;
        height: 105%;
    }
    
    .logo {
        gap: 0.5rem;
    }
    
    .footer-logo img {
        height: 50px;
    }
    
    @media (max-width: 400px) {
        .logo-text {
            font-size: 0.75rem;
        }
        
        .logo-img {
            height: 40px;
        }
    }

    .section-title {
        font-size: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-content {
        gap: 2rem;
    }
    
    .about-intro h3 {
        font-size: 1.5rem;
        padding-left: 1rem;
    }
    
    .intro-text {
        font-size: 1rem;
    }
    
    .detail-item {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .detail-icon {
        min-width: 50px;
        height: 50px;
        font-size: 2rem;
    }
    
    .detail-content h4 {
        font-size: 1rem;
    }
    
    .about-features {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .feature-item {
        flex: 1 1 calc(50% - 0.5rem);
        min-width: 120px;
    }
    
    .experience-badge {
        padding: 1rem 1.2rem;
        bottom: 20px;
        left: 20px;
    }
    
    .badge-number {
        font-size: 1.8rem;
    }
    
    .badge-text {
        font-size: 0.8rem;
    }
    
    .stat {
        padding: 1.2rem 0.8rem;
    }
    
    .stat-icon {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat p {
        font-size: 0.85rem;
    }
    
    .service-image {
        height: 200px;
    }
    
    .service-content {
        padding: 1.8rem 1.2rem;
    }
    
    .service-content h3 {
        font-size: 1.2rem;
        min-height: auto;
    }
    
    .service-content p {
        font-size: 0.9rem;
        min-height: auto;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .price-currency {
        font-size: 1.3rem;
    }
    
    .category-title {
        font-size: 1.8rem;
    }
    
    .category-icon {
        font-size: 2.5rem;
    }
    
    .category-description {
        font-size: 0.95rem;
    }
    
    .social-icons {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .social-btn {
        flex: 1 1 auto;
        min-width: 140px;
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .social-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .service-icon-wrapper {
        width: 55px;
        height: 55px;
        margin-bottom: 1rem;
    }
    
    .service-icon {
        width: 28px;
        height: 28px;
    }
    
    .service-btn {
        padding: 10px 25px;
        font-size: 0.85rem;
    }
    
    .contact-map {
        height: 160px;
    }
    
    .map-pin {
        font-size: 1.3rem;
        margin-bottom: 0.3rem;
    }
    
    .map-placeholder {
        padding: 0.8rem;
    }
    
    .map-placeholder h4 {
        font-size: 0.7rem;
        margin-bottom: 0.3rem;
    }
    
    .map-placeholder p {
        font-size: 0.8rem;
    }
    
    .map-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0.3rem;
    }
    
    .map-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .map-text {
        font-size: 0.8rem;
    }
    
    .contact-info-card {
        padding: 1rem;
        gap: 1rem;
    }
    
    .contact-card-icon {
        font-size: 1.3rem;
        min-width: 35px;
    }
    
    .contact-card-content h4 {
        font-size: 0.7rem;
    }
    
    .contact-card-content p {
        font-size: 0.95rem;
    }
    
    .contact-whatsapp-btn {
        padding: 0.8rem 1rem;
        font-size: 0.85rem;
        gap: 0.6rem;
    }
    
    .contact-whatsapp-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .logo-text {
        font-size: 1rem;
        letter-spacing: 0.3px;
    }
    
    .logo {
        gap: 0.6rem;
    }
    
    .logo-img {
        height: 45px;
    }
    
    .testimonials-section {
        margin-top: 2rem;
        padding-top: 2rem;
    }
    
    .testimonials-grid {
        gap: 1.2rem;
    }
    
    .testimonial-card {
        padding: 1.2rem;
    }
    
    .testimonial-header {
        gap: 0.8rem;
    }
    
    .testimonial-avatar {
        width: 45px;
        height: 45px;
    }
    
    .testimonial-info h4 {
        font-size: 1rem;
    }
    
    .testimonial-service {
        font-size: 0.8rem;
    }
    
    .testimonial-rating .star {
        font-size: 1rem;
    }
    
    .testimonial-text {
        font-size: 0.85rem;
        padding-left: 1rem;
    }
    
    .testimonial-text::before {
        font-size: 2rem;
        top: -3px;
    }
    
    .footer-design-text {
        font-size: 0.75rem;
        justify-content: flex-start;
        gap: 0.3rem;
    }
    
    .footer-logo {
        gap: 0.8rem;
    }
    
    .footer-credits {
        animation-duration: 0.8s;
    }
    
    .design-link {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
        animation-duration: 5s;
    }
    
    .design-link:hover {
        transform: translateY(-2px) scale(1.03);
    }
    
    .design-agency {
        animation-duration: 4s, 3s;
    }
    
    .design-icon {
        width: 12px;
        height: 12px;
        animation-duration: 4s;
    }
}

