/* ===== COLOR SCHEME ===== */
:root {
    --primary-brown: #8B4513;
    --dark-brown: #5D2906;
    --light-brown: #D4A76A;
    --gold-yellow: #FFD700;
    --orange-yellow: #FFA500;
    --cream-white: #FFFBF0;
    --ivory-white: #FFF9E6;
    --pure-white: #FFFFFF;
    --shadow-color: rgba(139, 69, 19, 0.2);
}

/* ===== ANIMATIONS ===== */
@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 215, 0, 0.6);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes waveFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(2deg);
    }
    75% {
        transform: translateY(5px) rotate(-1deg);
    }
}

@keyframes borderShimmer {
    0% {
        border-color: rgba(255, 215, 0, 0.3);
        background-position: 0% 50%;
    }
    50% {
        border-color: rgba(255, 215, 0, 0.8);
        background-position: 100% 50%;
    }
    100% {
        border-color: rgba(255, 215, 0, 0.3);
        background-position: 0% 50%;
    }
}

/* Colorful Contact Form Styles */
.colorful-form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-brown) 0%, var(--light-brown) 100%);
    position: relative;
    overflow: hidden;
}

.colorful-form-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: center;
    animation: waveFloat 20s infinite linear;
}

.colorful-form-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(255, 251, 240, 0.95) 100%);
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 25px 70px var(--shadow-color);
    position: relative;
    z-index: 1;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: floatIn 1s ease-out;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.colorful-form-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(
        90deg,
        var(--primary-brown) 0%,
        var(--gold-yellow) 25%,
        var(--light-brown) 50%,
        var(--orange-yellow) 75%,
        var(--primary-brown) 100%
    );
    animation: shimmer 3s infinite linear;
    background-size: 200% auto;
    z-index: 2;
}

.colorful-form-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--primary-brown), 
        var(--gold-yellow), 
        var(--light-brown),
        var(--orange-yellow));
    border-radius: 27px;
    z-index: -1;
    animation: borderShimmer 4s infinite;
    background-size: 400% 400%;
}

.form-header-gradient {
    background: linear-gradient(135deg, var(--primary-brown) 0%, var(--gold-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 3rem;
    margin-bottom: 15px;
    text-align: center;
    animation: shimmer 3s infinite linear;
    background-size: 200% auto;
    font-weight: 700;
}

.form-subtitle {
    text-align: center;
    color: var(--primary-brown);
    margin-bottom: 50px;
    font-size: 1.2rem;
    opacity: 0.9;
    animation: floatIn 0.8s ease-out 0.2s both;
}

.colorful-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.form-group-colorful {
    position: relative;
    animation: floatIn 0.8s ease-out;
    animation-delay: calc(var(--group-index) * 0.1s);
    animation-fill-mode: both;
}

.form-group-colorful.full-width {
    grid-column: 1 / -1;
}

.colorful-input {
    width: 100%;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(139, 69, 19, 0.1);
    border-radius: 15px;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--primary-brown);
    font-weight: 500;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.colorful-input::placeholder {
    color: rgba(139, 69, 19, 0.5);
}

.colorful-input:focus {
    outline: none;
    border-color: var(--gold-yellow);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    background: var(--pure-white);
    transform: translateY(-2px);
}

.colorful-label {
    position: absolute;
    left: 20px;
    top: 18px;
    color: rgba(139, 69, 19, 0.7);
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(255, 251, 240, 0.95) 100%);
    padding: 0 10px;
    border-radius: 10px;
    font-weight: 600;
}

.colorful-input:focus + .colorful-label,
.colorful-input:not(:placeholder-shown) + .colorful-label {
    top: -12px;
    left: 15px;
    font-size: 13px;
    color: var(--primary-brown);
    background: var(--gold-yellow);
    padding: 4px 15px;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.colorful-textarea {
    min-height: 180px;
    resize: vertical;
    font-family: inherit;
    line-height: 1.6;
}

.whatsapp-submit-button {
    background: linear-gradient(135deg, var(--primary-brown) 0%, var(--light-brown) 100%);
    color: var(--pure-white);
    border: none;
    padding: 20px 45px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    position: relative;
    overflow: hidden;
    grid-column: 1 / -1;
    margin-top: 20px;
    box-shadow: 0 10px 30px var(--shadow-color);
    animation: glow 3s infinite;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.whatsapp-submit-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: 0.6s;
}

.whatsapp-submit-button:hover::before {
    left: 100%;
}

.whatsapp-submit-button:hover {
    background: linear-gradient(135deg, var(--gold-yellow) 0%, var(--orange-yellow) 100%);
    color: var(--primary-brown);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.whatsapp-submit-button i {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.whatsapp-submit-button:hover i {
    transform: translateX(5px) rotate(15deg);
}

.form-icons {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold-yellow);
    font-size: 1.2rem;
    z-index: 1;
    transition: all 0.3s ease;
}

.colorful-input:focus ~ .form-icons {
    color: var(--primary-brown);
    transform: translateY(-50%) scale(1.2);
}

.colorful-select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238B4513' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 20px;
    padding-right: 50px;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
    animation: floatIn 1s ease-out 0.4s both;
}

.contact-info-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(255, 251, 240, 0.95) 100%);
    padding: 35px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px var(--shadow-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid transparent;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.6s;
}

.contact-info-card:hover::before {
    left: 100%;
}

.contact-info-card:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: var(--gold-yellow);
    box-shadow: 0 25px 50px rgba(139, 69, 19, 0.3);
}

.contact-info-card:nth-child(1) {
    border-top: 5px solid var(--primary-brown);
    animation-delay: 0.5s;
}

.contact-info-card:nth-child(2) {
    border-top: 5px solid var(--gold-yellow);
    animation-delay: 0.6s;
}

.contact-info-card:nth-child(3) {
    border-top: 5px solid var(--light-brown);
    animation-delay: 0.7s;
}

.contact-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 28px;
    color: var(--pure-white);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 25px var(--shadow-color);
}

.contact-info-card:nth-child(1) .contact-icon {
    background: linear-gradient(135deg, var(--primary-brown) 0%, var(--dark-brown) 100%);
}

.contact-info-card:nth-child(2) .contact-icon {
    background: linear-gradient(135deg, var(--gold-yellow) 0%, var(--orange-yellow) 100%);
}

.contact-info-card:nth-child(3) .contact-icon {
    background: linear-gradient(135deg, var(--light-brown) 0%, var(--primary-brown) 100%);
}

.contact-info-card:hover .contact-icon {
    transform: scale(1.1) rotateY(180deg);
    box-shadow: 0 12px 30px rgba(139, 69, 19, 0.4);
}

.contact-info-card h3 {
    margin: 15px 0;
    color: var(--primary-brown);
    font-size: 1.5rem;
    font-weight: 700;
}

.contact-info-card p {
    color: var(--primary-brown);
    line-height: 1.8;
    margin: 0;
    opacity: 0.9;
}

/* WhatsApp Direct Button */
.whatsapp-direct-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: var(--pure-white);
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    position: relative;
    overflow: hidden;
    animation: pulse 2s infinite;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.whatsapp-direct-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.whatsapp-direct-button:hover::before {
    left: 100%;
}

.whatsapp-direct-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
    color: var(--pure-white);
}

.whatsapp-direct-button i {
    transition: transform 0.3s ease;
}

.whatsapp-direct-button:hover i {
    transform: translateX(5px);
}

.whatsapp-direct-section {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(255, 251, 240, 0.95) 100%);
    border-radius: 20px;
    box-shadow: 0 15px 40px var(--shadow-color);
    border: 2px solid rgba(255, 215, 0, 0.2);
    animation: floatIn 1s ease-out 0.8s both;
}

.whatsapp-direct-section h3 {
    color: var(--primary-brown);
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.whatsapp-direct-section p {
    color: var(--primary-brown);
    opacity: 0.9;
    margin-bottom: 20px;
}

/* Real Google Map Styles */
.real-map-container {
    /* width: 100%; */
    width: 100vw;
        margin-left: calc(-50vw + 50%);
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px var(--shadow-color);
    margin-top: 40px;
    position: relative;
    animation: floatIn 1s ease-out;
    border: 3px solid transparent;
    background: linear-gradient(45deg, var(--primary-brown), var(--gold-yellow), var(--light-brown)) border-box;
    animation: borderShimmer 4s infinite;
}

.real-map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-info-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(255, 251, 240, 0.95) 100%);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 15px 40px var(--shadow-color);
    max-width: 320px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    animation: floatIn 1s ease-out 0.5s both;
}

.map-info-overlay h3 {
    margin: 0 0 15px 0;
    color: var(--primary-brown);
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-info-overlay h3 i {
    color: var(--gold-yellow);
}

.map-info-overlay p {
    margin: 8px 0;
    color: var(--primary-brown);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.9;
}

.map-info-overlay i {
    color: var(--gold-yellow);
    width: 20px;
}

/* WhatsApp Animation */
.whatsapp-animate {
    animation: pulse 2s infinite;
}

/* WhatsApp Chat Icon */
.whatsapp-chat-icon {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: var(--pure-white);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    animation: pulse 3s infinite;
}

.whatsapp-chat-icon:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 15px 50px rgba(37, 211, 102, 0.6);
}

.whatsapp-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(135deg, var(--primary-brown) 0%, var(--dark-brown) 100%);
    color: var(--gold-yellow);
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 700;
    box-shadow: 0 4px 15px var(--shadow-color);
    animation: pulse 1.5s infinite;
}

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(rgba(139, 69, 19, 0.85), rgba(139, 69, 19, 0.95)),
        url('https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    padding: 150px 0;
    text-align: center;
    color: var(--pure-white);
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(255, 215, 0, 0.1) 0%, 
        rgba(255, 251, 240, 0.05) 100%);
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 25px;
    animation: floatIn 1s ease-out;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, var(--gold-yellow), var(--pure-white), var(--gold-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: shimmer 3s infinite linear;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 40px;
    animation: floatIn 1s ease-out 0.3s both;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
    opacity: 0.95;
}

.hero-animation {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
    animation: floatIn 1s ease-out 0.6s both;
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background: var(--gold-yellow);
    border-radius: 50%;
    animation: pulseDot 1.5s infinite;
    box-shadow: 0 0 10px var(--gold-yellow);
}

.pulse-dot:nth-child(2) { animation-delay: 0.3s; }
.pulse-dot:nth-child(3) { animation-delay: 0.6s; }

@keyframes pulseDot {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}

.wave-animation {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100%;
}

.wave1 {
    animation: wave 15s linear infinite;
    opacity: 0.7;
    background: rgba(255, 215, 0, 0.2);
}

.wave2 {
    animation: wave 12s linear infinite;
    opacity: 0.5;
    animation-delay: -5s;
    background: rgba(255, 255, 255, 0.15);
}

.wave3 {
    animation: wave 18s linear infinite;
    opacity: 0.3;
    animation-delay: -2s;
    background: rgba(212, 167, 106, 0.2);
}

@keyframes wave {
    0% {
        transform: translateX(0) translateZ(0) scaleY(1);
    }
    50% {
        transform: translateX(-25%) translateZ(0) scaleY(0.8);
    }
    100% {
        transform: translateX(-50%) translateZ(0) scaleY(1);
    }
}

/* Contact Info Section */
.contact-info-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--cream-white) 0%, var(--ivory-white) 100%);
    position: relative;
    overflow: hidden;
}

.contact-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--primary-brown), 
        var(--gold-yellow), 
        var(--light-brown),
        var(--primary-brown));
    animation: shimmer 3s infinite linear;
    background-size: 200% auto;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-brown);
    position: relative;
    padding-bottom: 20px;
    animation: floatIn 0.8s ease-out;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--primary-brown), 
        var(--gold-yellow), 
        var(--primary-brown));
    border-radius: 2px;
    animation: shimmer 2s infinite linear;
    background-size: 200% auto;
}

.section-subtitle {
    text-align: center;
    color: var(--primary-brown);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    animation: floatIn 0.8s ease-out 0.2s both;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.contact-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(255, 251, 240, 0.95) 100%);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 20px 50px var(--shadow-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid transparent;
    animation: floatIn 0.8s ease-out;
}

.contact-card:nth-child(1) { animation-delay: 0.3s; }
.contact-card:nth-child(2) { animation-delay: 0.4s; }
.contact-card:nth-child(3) { animation-delay: 0.5s; }

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.6s;
}

.contact-card:hover::before {
    left: 100%;
}

.contact-card:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: var(--gold-yellow);
    box-shadow: 0 30px 60px rgba(139, 69, 19, 0.3);
}

.animated-card {
    animation: waveFloat 4s ease-in-out infinite;
}

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--pure-white);
    font-size: 32px;
    box-shadow: 0 10px 30px var(--shadow-color);
    transition: all 0.4s ease;
}

.contact-card:hover .card-icon {
    transform: scale(1.1) rotateY(180deg);
}

.card-title {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 25px;
    color: var(--primary-brown);
    font-weight: 700;
}

.card-content {
    text-align: center;
    color: var(--primary-brown);
    line-height: 1.8;
    opacity: 0.9;
}

.card-content p {
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.phone-number, .email {
    color: var(--primary-brown);
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.phone-number:hover, .email:hover {
    color: var(--gold-yellow);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.card-action {
    text-align: center;
    margin-top: 30px;
}

.action-btn {
    background: linear-gradient(135deg, var(--gold-yellow) 0%, var(--orange-yellow) 100%);
    color: var(--primary-brown);
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.action-btn:hover::before {
    left: 100%;
}

.action-btn:hover {
    background: linear-gradient(135deg, var(--primary-brown) 0%, var(--light-brown) 100%);
    color: var(--pure-white);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px var(--shadow-color);
}

/* Map Section */
.map-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--cream-white) 0%, var(--ivory-white) 100%);
    position: relative;
}

.map-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--primary-brown), 
        var(--gold-yellow), 
        var(--light-brown),
        var(--primary-brown));
    animation: shimmer 3s infinite linear;
    background-size: 200% auto;
}

.transport-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.transport-card {
    text-align: center;
    padding: 35px 30px;
    border-radius: 20px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(255, 251, 240, 0.95) 100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    box-shadow: 0 15px 40px var(--shadow-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: floatIn 0.8s ease-out;
}

.transport-card:nth-child(1) { animation-delay: 0.2s; }
.transport-card:nth-child(2) { animation-delay: 0.3s; }
.transport-card:nth-child(3) { animation-delay: 0.4s; }

.transport-card:hover {
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.1) 0%, 
        rgba(255, 251, 240, 0.9) 100%);
    transform: translateY(-10px) scale(1.03);
    border-color: var(--gold-yellow);
    box-shadow: 0 25px 50px rgba(139, 69, 19, 0.3);
}

.transport-icon {
    font-size: 48px;
    color: var(--gold-yellow);
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.transport-card:hover .transport-icon {
    transform: scale(1.2) rotate(15deg);
    color: var(--primary-brown);
}

.transport-card h4 {
    margin: 15px 0;
    color: var(--primary-brown);
    font-size: 1.4rem;
    font-weight: 700;
}

.transport-card p {
    color: var(--primary-brown);
    line-height: 1.8;
    margin: 8px 0;
    opacity: 0.9;
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, var(--primary-brown) 0%, var(--dark-brown) 100%);
    color: var(--pure-white);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-yellow), var(--pure-white), var(--gold-yellow));
    animation: shimmer 3s infinite linear;
    background-size: 200% auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.footer-section h3 {
    font-size: 1.6rem;
    margin-bottom: 25px;
    color: var(--gold-yellow);
    position: relative;
    padding-bottom: 15px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gold-yellow);
    border-radius: 2px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer-section ul li:hover {
    transform: translateX(10px);
}

.footer-section a {
    color: var(--cream-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--gold-yellow);
}

.footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 215, 0, 0.3);
    color: var(--cream-white);
    position: relative;
    z-index: 2;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.social-links a {
    color: var(--primary-brown);
    font-size: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-yellow);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.social-links a:hover::before {
    left: 100%;
}

.social-links a:hover {
    background: var(--pure-white);
    color: var(--primary-brown);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

/* Additional Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* Form group focused styles */
.form-group-colorful.focused .colorful-input {
    border-color: var(--gold-yellow);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    background: var(--pure-white);
}

.form-group-colorful.focused .colorful-label {
    top: -12px;
    left: 15px;
    font-size: 13px;
    color: var(--primary-brown);
    background: var(--gold-yellow);
    padding: 4px 15px;
    box-shadow: 0 5px 15px var(--shadow-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .colorful-form {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .colorful-form-card {
        padding: 30px 25px;
        margin: 0 20px;
    }

    .form-header-gradient {
        font-size: 2.2rem;
    }
    
    .contact-hero {
        padding: 100px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .contact-cards,
    .transport-info {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .form-header-gradient {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-card,
    .transport-card {
        padding: 25px 20px;
    }
    
    .whatsapp-chat-icon {
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .whatsapp-badge {
        font-size: 10px;
        padding: 3px 8px;
    }
    
    .map-info-overlay {
        left: 20px;
        right: 20px;
        max-width: none;
    }
}

/* Loading Animation */
@keyframes loadingShimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

.loading {
    background: linear-gradient(90deg, 
        var(--cream-white) 25%, 
        var(--gold-yellow) 50%, 
        var(--cream-white) 75%);
    background-size: 200px 100%;
    animation: loadingShimmer 1.5s infinite;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--cream-white);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-brown), var(--light-brown));
    border-radius: 6px;
    border: 2px solid var(--cream-white);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--gold-yellow), var(--orange-yellow));
}