/* ============================================
   🎨 TeQro México - Diseño Moderno 2024-2025
   Animaciones, Glassmorphism, Gradientes Premium
   ============================================ */

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

:root {
    --pink-primary: #E91E63;
    --pink-medium: #EC407A;
    --purple-primary: #8E24AA;
    --purple-dark: #6A1B9A;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --dark-gray: #1a1a2e;
    --accent-blue: #00d4ff;
    --accent-gradient: linear-gradient(135deg, #E91E63 0%, #00d4ff 50%, #8E24AA 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    overflow-x: hidden;
    color: var(--dark-gray);
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9ff 100%);
    position: relative;
}

/* ============== ANIMACIONES GLOBALES ============== */

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(233, 30, 99, 0.5); }
    50% { box-shadow: 0 0 40px rgba(0, 212, 255, 0.7); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

@keyframes rotateGradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes bounceIn {
    0% { transform: scale(0.3); opacity: 0; }
    50% { opacity: 1; }
    70% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* ============== HERO SECTION ============== */

.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-container {
    position: absolute;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenburns 20s ease-in-out infinite;
    filter: saturate(1.1) contrast(1.05);
}

@keyframes kenburns {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(233, 30, 99, 0.6) 0%, 
        rgba(142, 36, 170, 0.7) 50%,
        rgba(0, 212, 255, 0.4) 100%);
    z-index: 1;
    backdrop-filter: blur(0px);
}

/* ============== LOGO Y CONTENIDO HERO ============== */

.logo-container {
    position: absolute;
    top: 50%;
    left: auto;
    right: 35%;
    transform: translateY(-50%);
    z-index: 3;
    animation: none;
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    pointer-events: none;
}

.logo-svg {
    width: 480px;
    height: 200px;
    max-width: 100%;
    filter: drop-shadow(0 15px 50px rgba(0, 0, 0, 0.3)) drop-shadow(0 0 30px rgba(233, 30, 99, 0.4));
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.logo-svg:hover {
    transform: scale(1.12) rotateY(8deg);
    filter: drop-shadow(0 25px 70px rgba(233, 30, 99, 0.6)) drop-shadow(0 0 50px rgba(0, 212, 255, 0.5));
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    letter-spacing: 3px;
    transition: all 0.5s ease;
}

.logo-teqro {
    animation: slideInLeft 1.2s ease-out 0.3s both;
}

.logo-mexico {
    animation: slideInRight 1.2s ease-out 0.5s both;
}

/* ============== HERO CONTENT ============== */

.hero-content {
    position: absolute;
    bottom: auto;
    top: 50%;
    right: 3%;
    left: auto;
    transform: translateY(-50%);
    z-index: 3;
    text-align: left;
    animation: none;
    width: 48%;
    max-width: 520px;
    pointer-events: auto;
}

.hero-title {
    font-size: clamp(2.8rem, 10vw, 5rem);
    font-weight: 900;
    margin-bottom: 25px;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    line-height: 1.1;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 3.5vw, 1.4rem);
    font-weight: 300;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.cta-button {
    padding: 16px 50px;
    font-size: 18px;
    font-weight: 700;
    background: #E91E63;
    color: white;
    border: 2px solid #E91E63;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 20px 50px rgba(233, 30, 99, 0.5);
    background: #E91E63;
}

.cta-button:active {
    transform: translateY(-2px) scale(1.03);
}

/* ============== CAROUSEL BUTTONS ============== */

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    font-size: 28px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: rgba(233, 30, 99, 0.6);
    border-color: rgba(233, 30, 99, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.5);
}

.carousel-btn.prev { left: 30px; }
.carousel-btn.next { right: 30px; }

/* ============== CAROUSEL INDICATORS ============== */

.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    gap: 15px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.indicator.active {
    background: var(--accent-blue);
    width: 40px;
    border-radius: 6px;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* ============== SECTIONS ============== */

.section {
    padding: clamp(60px, 10vw, 120px) 20px;
    position: relative;
}

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

.section-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 80px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
    letter-spacing: -1px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

/* ============== SERVICIOS ============== */

.section-servicios {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1228 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.section-servicios::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(233, 30, 99, 0.05) 0%, transparent 70%);
    animation: rotateGradient 20s linear infinite;
    z-index: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background: transparent;
    padding: 50px 40px;
    text-align: left;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    border: none;
    box-shadow: none;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
    overflow: visible;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(233, 30, 99, 0.15), transparent);
    transition: left 0.8s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(233, 30, 99, 0) 0%, rgba(233, 30, 99, 0.5) 50%, rgba(233, 30, 99, 0));
    transform: skewY(-3deg);
    z-index: 2;
}

.service-card .service-content {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card:hover {
    padding: 50px 40px 100px 40px;
}

.service-card:hover .service-content {
    flex-direction: column;
    align-items: flex-start;
}

.service-card:hover ~ .service-card {
    opacity: 0.5;
    transform: translateY(10px);
}

.service-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: #E91E63;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    animation: bounceIn 0.6s ease-out;
    transition: all 0.5s ease;
    box-shadow: 0 12px 30px rgba(233, 30, 99, 0.4);
}

.service-icon svg {
    width: 40px;
    height: 40px;
    stroke: white;
    stroke-width: 1.5;
}

.service-card:hover .service-icon {
    transform: rotateY(360deg) scale(1.15);
    box-shadow: 0 18px 50px rgba(233, 30, 99, 0.6);
}

.service-card h3 {
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: white;
    transition: all 0.3s ease;
}

.service-card p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.6s ease;
    margin: 0;
}

.service-card:hover p {
    max-height: 200px;
    opacity: 1;
    margin-top: 20px;
}

/* ============== UBICACIÓN ============== */

.section-ubicacion {
    background: linear-gradient(135deg, #ffffff 0%, #f5f7ff 100%);
    position: relative;
    padding: 100px 0;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.location-info {
    animation: fadeInLeft 0.8s ease-out;
}

.location-info h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-gray);
    line-height: 1.2;
}

.location-info > p {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.location-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border-left: 4px solid #E91E63;
}

.location-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(233, 30, 99, 0.15);
}

.location-item svg {
    width: 40px;
    height: 40px;
    color: #E91E63;
    flex-shrink: 0;
    margin-top: 2px;
}

.location-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.location-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.location-button {
    display: inline-block;
    padding: 14px 35px;
    background: #E91E63;
    color: white;
    border: 2px solid #E91E63;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
}

.location-button:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 16px 40px rgba(233, 30, 99, 0.5);
}

.location-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    animation: fadeInRight 0.8s ease-out;
}

.location-map iframe {
    border-radius: 20px;
}

/* ============== PROPIEDADES ============== */

.section-propiedades {
    background: linear-gradient(135deg, #ffffff 0%, #f5f7ff 100%);
    position: relative;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.property-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    border: 1px solid rgba(233, 30, 99, 0.1);
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.property-card:nth-child(1) { animation-delay: 0.1s; }
.property-card:nth-child(2) { animation-delay: 0.2s; }
.property-card:nth-child(3) { animation-delay: 0.3s; }
.property-card:nth-child(4) { animation-delay: 0.25s; }
.property-card:nth-child(5) { animation-delay: 0.35s; }
.property-card:nth-child(6) { animation-delay: 0.45s; }

.property-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 0 40px 100px rgba(233, 30, 99, 0.2);
    border-color: rgba(233, 30, 99, 0.3);
}

.property-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: brightness(1) saturate(1);
}

.property-card:hover .property-image img {
    transform: scale(1.15) rotate(2deg);
    filter: brightness(1.1) saturate(1.2);
}

.property-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--pink-primary), var(--purple-primary));
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.4);
    animation: bounceIn 0.6s ease-out;
}

.property-info {
    padding: 30px;
}

.property-info h3 {
    margin: 0 0 15px 0;
    font-size: 22px;
    color: var(--dark-gray);
    font-weight: 700;
    transition: all 0.3s ease;
}

.property-card:hover .property-info h3 {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.property-location {
    color: #888;
    font-size: 14px;
    margin: 10px 0;
    font-weight: 600;
}

.property-price {
    color: var(--pink-primary);
    font-size: 28px;
    font-weight: 900;
    margin: 20px 0;
    background: linear-gradient(135deg, var(--pink-primary), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.property-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid rgba(233, 30, 99, 0.1);
}

.property-features span {
    font-size: 13px;
    color: #666;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.1), rgba(142, 36, 170, 0.1));
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(233, 30, 99, 0.2);
}

.property-features span:hover {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.2), rgba(142, 36, 170, 0.2));
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.2);
}

.section-cta {
    display: flex;
    justify-content: center;
    margin-top: 60px;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.section-cta a {
    text-decoration: none;
}

/* ============== TESTIMONIOS ============== */

.section-testimonios {
    background: linear-gradient(135deg, var(--dark-gray) 0%, #2a2a4e 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.testimonial-card:hover::before {
    left: 100%;
}

.testimonial-card:hover {
    transform: translateY(-15px);
    background: rgba(233, 30, 99, 0.15);
    border-color: rgba(233, 30, 99, 0.5);
    box-shadow: 0 20px 60px rgba(233, 30, 99, 0.3);
}

.testimonial-stars {
    font-size: 20px;
    margin-bottom: 20px;
    color: #ffd700;
    animation: fadeInUp 0.8s ease-out;
}

.star {
    display: inline-block;
    animation: pulse 1.5s ease-in-out infinite;
}

.star:nth-child(1) { animation-delay: 0s; }
.star:nth-child(2) { animation-delay: 0.1s; }
.star:nth-child(3) { animation-delay: 0.2s; }
.star:nth-child(4) { animation-delay: 0.3s; }
.star:nth-child(5) { animation-delay: 0.4s; }

.testimonial-text {
    font-size: 16px;
    font-style: italic;
    margin: 20px 0;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink-primary), var(--accent-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 18px;
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
}

.testimonial-author h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.testimonial-author p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* ============== CONTACTO ============== */

.section-contacto {
    background: linear-gradient(135deg, #ffffff 0%, #f5f7ff 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h3 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 20px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info > p {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    animation: slideInLeft 0.8s ease-out;
    animation-fill-mode: both;
}

.contact-item:nth-child(1) { animation-delay: 0.1s; }
.contact-item:nth-child(2) { animation-delay: 0.2s; }
.contact-item:nth-child(3) { animation-delay: 0.3s; }

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--pink-primary), var(--purple-primary));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.3);
    transition: all 0.4s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotateY(360deg);
    box-shadow: 0 20px 60px rgba(233, 30, 99, 0.5);
}

.contact-icon svg {
    width: 35px;
    height: 35px;
}

.contact-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: var(--dark-gray);
}

.contact-item p {
    font-size: 15px;
    color: #666;
    margin: 5px 0 0 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: slideInRight 0.8s ease-out;
}

.contact-form input,
.contact-form textarea {
    padding: 18px 25px;
    border: 2px solid rgba(233, 30, 99, 0.2);
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    color: var(--dark-gray);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--pink-primary);
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
    background: white;
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-button {
    padding: 16px 40px;
    background: #E91E63;
    color: white;
    border: 2px solid #E91E63;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
    margin-top: 10px;
}

.submit-button:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 16px 40px rgba(233, 30, 99, 0.5);
}

.submit-button:active {
    transform: translateY(-2px) scale(1.03);
}

/* ============== FOOTER ============== */

.footer {
    background: var(--dark-gray);
    color: white;
    padding: 80px 20px 40px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.05) 0%, rgba(0, 212, 255, 0.05) 100%);
    pointer-events: none;
}

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

.footer-logo h3 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 15px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-links h4,
.footer-social h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a,
.social-icons a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    padding-left: 0;
}

.footer-links a:hover,
.social-icons a:hover {
    color: var(--accent-blue);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    position: relative;
    z-index: 1;
}

/* ============== RESPONSIVE ============== */

@media (max-width: 768px) {
    .logo-svg {
        width: 300px;
        height: 150px;
    }

    .hero-content {
        bottom: 5%;
    }

    .carousel-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .carousel-btn.prev { left: 15px; }
    .carousel-btn.next { right: 15px; }

    .service-card,
    .property-card,
    .testimonial-card {
        padding: 30px 25px;
    }

    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .location-map {
        height: 300px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .properties-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .section {
        padding: 60px 20px;
    }
}

@media (max-width: 480px) {
    .logo-svg {
        width: 200px;
        height: 120px;
    }

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

    .carousel-indicators {
        gap: 10px;
        bottom: 20px;
    }

    .indicator {
        width: 8px;
        height: 8px;
    }
}

/* ============== SCROLL ANIMATIONS ============== */

.scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.scroll-animate.in-view {
    opacity: 1;
    transform: translateY(0);
}
