/* Contact Page Styles */
:root {
    --primary-gold: #D4AF37;
    --secondary-gold: #FFD700;
    --primary-green: #2E8B57;
    --secondary-green: #3CB371;
    --dark-green: #1a5f3a;
    --light-gold: #FFF8DC;
    --white: #ffffff;
    --black: #333333;
    --gray: #666666;
    --light-gray: #f5f5f5;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --gold-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    --green-shadow: 0 4px 20px rgba(46, 139, 87, 0.3);
}

/* Contact Hero Section */
.contact-hero {
    position: relative;
    min-height: 80vh;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 2rem 0;
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.contact-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 30% 70%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    animation: patternMove 15s ease-in-out infinite;
}

@keyframes patternMove {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(0.5deg); }
}

.contact-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--gold-shadow);
    animation: floatIcon 6s ease-in-out infinite;
}

.floating-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.floating-icon.phone {
    top: 15%;
    right: 10%;
    animation-delay: 0s;
}

.floating-icon.email {
    bottom: 20%;
    left: 10%;
    animation-delay: 2s;
}

.floating-icon.location {
    top: 60%;
    right: 15%;
    animation-delay: 4s;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-20px) scale(1.1); }
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 2rem;
}

.hero-icon {
    margin-bottom: 2rem;
}

.hero-icon i {
    font-size: 4rem;
    color: var(--primary-gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.contact-hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-hero-title .highlight {
    color: var(--primary-gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.contact-message {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item i {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

.stat-item span {
    font-weight: 600;
}

/* Contact Info Section */
.contact-info-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-gold);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--gold-shadow);
}

.contact-icon i {
    font-size: 2rem;
    color: var(--white);
}

.contact-card h3 {
    color: var(--primary-green);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.contact-card p {
    color: var(--gray);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--white);
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--green-shadow);
}

.contact-btn.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.contact-btn.whatsapp:hover {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

/* Contact Form Section */
.contact-form-section {
    padding: 5rem 0;
    background: var(--white);
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    color: var(--primary-green);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.form-header p {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-form {
    background: var(--light-gray);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    color: var(--black);
    font-weight: bold;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit-contact {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 2rem auto 0;
    min-width: 200px;
}

.btn-submit-contact:hover {
    transform: translateY(-3px);
    box-shadow: var(--gold-shadow);
}

/* Map Section */
.map-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.map-header {
    text-align: center;
    margin-bottom: 3rem;
}

.map-header h2 {
    color: var(--primary-green);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.map-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

.map-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-overlay {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    z-index: 10;
    max-width: 300px;
}

.map-info h3 {
    color: var(--primary-green);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.map-info p {
    color: var(--gray);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.map-info i {
    color: var(--primary-gold);
    width: 16px;
}

/* Working Hours Section */
.working-hours-section {
    padding: 5rem 0;
    background: var(--white);
}

.working-hours-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hours-info h2 {
    color: var(--primary-green);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: bold;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.day-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 15px;
    border-left: 4px solid var(--primary-gold);
}

.day-item .day {
    font-weight: bold;
    color: var(--black);
}

.day-item .time {
    color: var(--primary-green);
    font-weight: 600;
}

.quick-contact h3 {
    color: var(--primary-green);
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: bold;
}

.quick-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quick-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    color: var(--white);
}

.quick-btn.call {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
}

.quick-btn.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.quick-btn.email {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
}

.quick-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.quick-btn i {
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-hero-title {
        font-size: 2.5rem;
    }
    
    .contact-message {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-item {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .working-hours-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .map-overlay {
        position: static;
        margin-bottom: 1rem;
        max-width: none;
    }
    
    .floating-icon {
        display: none;
    }
}

@media (max-width: 480px) {
    .contact-hero-title {
        font-size: 2rem;
    }
    
    .contact-hero {
        min-height: 70vh;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-header h2 {
        font-size: 2rem;
    }
    
    .map-header h2,
    .hours-info h2,
    .quick-contact h3 {
        font-size: 1.8rem;
    }
} 