/* Contact Page Styles */

/* Contact Hero Section */
.contact-hero {
    position: relative;
    height: 50vh;
    background: linear-gradient(135deg, #9E8600 0%, #B8860B 50%, #9E8600 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-top: 3px solid #9E8600;
    border-bottom: 3px solid #9E8600;
    box-shadow: 0 4px 20px rgba(158, 134, 0, 0.3);
}

.contact-hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.contact-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 
        3px 3px 0px #B8860B,
        6px 6px 10px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(255, 215, 0, 0.5);
    letter-spacing: 2px;
}

/* Main Contact Section */
.contact-main-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 248, 248, 0.98) 50%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(2px);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 4rem;
    align-items: start;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

/* Contact Card */
.contact-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(158, 134, 0, 0.15);
    border: 2px solid rgba(158, 134, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #9E8600, #FFD700, #9E8600);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(158, 134, 0, 0.25);
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-icon-container {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #9E8600 0%, #B8860B 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(158, 134, 0, 0.3);
    transition: all 0.4s ease;
}

.contact-card:hover .contact-icon-container {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(158, 134, 0, 0.4);
}

.contact-icon-container i {
    font-size: 2rem;
    color: white;
}

.contact-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #9E8600;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.contact-card-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* Logo Section */
.contact-logo-section {
    position: sticky;
    top: 2rem;
    text-align: center;
    background: white;
    border-radius: 25px;
    padding: 2rem;
    box-shadow: 0 15px 40px rgba(158, 134, 0, 0.2);
    border: 3px solid rgba(158, 134, 0, 0.1);
}

.contact-logo-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(158, 134, 0, 0.2);
}

/* Calendar Wrapper */
.calendar-wrapper {
    margin-top: 3rem;
}

/* Calendar Section */
.calendar-section {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(158, 134, 0, 0.25);
    border: 3px solid rgba(158, 134, 0, 0.15);
    max-width: 800px;
    margin: 0 auto;
}

.calendar-header {
    background: linear-gradient(135deg, #9E8600 0%, #B8860B 100%);
    padding: 2rem;
    text-align: center;
    position: relative;
}

.calendar-header::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 30px;
    background: linear-gradient(135deg, #9E8600 0%, #B8860B 100%);
    border-radius: 50% 50% 0 0;
    z-index: 1;
}

.calendar-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: white;
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.calendar-grid {
    padding: 2.5rem;
    position: relative;
    z-index: 2;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.weekday {
    text-align: center;
    font-weight: 700;
    color: #9E8600;
    font-size: 1.1rem;
    padding: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(158, 134, 0, 0.05);
    border-radius: 10px;
}

.calendar-dates {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.8rem;
}

.date-cell {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #333;
    background: #f8f8f8;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: 2px solid transparent;
    font-weight: 500;
}

.date-cell.empty {
    background: transparent;
    border: none;
    cursor: default;
}

.date-cell:hover:not(.empty):not(.selected) {
    background: linear-gradient(135deg, rgba(158, 134, 0, 0.1), rgba(184, 160, 0, 0.15));
    border-color: #9E8600;
    transform: scale(1.15);
    box-shadow: 0 4px 15px rgba(158, 134, 0, 0.2);
}

.date-cell.selected {
    background: linear-gradient(135deg, #9E8600 0%, #B8860B 100%);
    color: white;
    border-color: #9E8600;
    box-shadow: 0 8px 25px rgba(158, 134, 0, 0.4);
    font-weight: 700;
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-hero-title {
        font-size: 2rem;
    }
    
    .quote-icon {
        width: 80px;
        height: 80px;
    }
    
    .quote-icon i {
        font-size: 2.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-logo-section {
        position: relative;
        order: -1;
    }
    
    .contact-info-item h3 {
        font-size: 1.3rem;
    }
    
    .contact-info-item p {
        font-size: 1rem;
    }
    
    .calendar-grid {
        padding: 1.5rem;
    }
    
    .calendar-header h2 {
        font-size: 1.5rem;
    }
    
    .weekday {
        font-size: 0.9rem;
    }
    
    .date-cell {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        height: 40vh;
    }
    
    .contact-hero-title {
        font-size: 1.5rem;
    }
    
    .quote-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .quote-icon i {
        font-size: 2rem;
    }
    
    .contact-container {
        padding: 0 1rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .contact-card-title {
        font-size: 1.3rem;
    }
    
    .contact-icon-container {
        width: 70px;
        height: 70px;
    }
    
    .contact-icon-container i {
        font-size: 1.8rem;
    }
    
    .calendar-wrapper {
        margin-top: 2rem;
    }
    
    .calendar-section {
        border-radius: 20px;
    }
    
    .calendar-header {
        padding: 1.5rem;
    }
    
    .calendar-header h2 {
        font-size: 1.8rem;
    }
    
    .calendar-grid {
        padding: 1.5rem;
    }
    
    .calendar-weekdays,
    .calendar-dates {
        gap: 0.5rem;
    }
    
    .weekday {
        font-size: 0.9rem;
        padding: 0.5rem;
    }
    
    .date-cell {
        font-size: 0.9rem;
    }
    
    .calendar-header {
        padding: 1rem;
    }
    
    .calendar-header h2 {
        font-size: 1.2rem;
    }
}
