/* ===================================
   Contact Page Specific Styles - Enhanced Version
   =================================== */

/* Contact Grid - First Section */

.contact-grid-section {
    padding: 140px 0 100px;
    background: var(--light-bg);
}

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

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* ===================================
   Info Items - Enhanced with Colors
   =================================== */

.info-item {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--primary-green);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(97, 206, 112, 0.15);
}

.info-item:hover::before {
    opacity: 1;
}

.info-item h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Highlighted Info Text */
.info-highlight {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.info-highlight a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.info-highlight a:hover {
    color: var(--primary-green);
}

.info-subtext {
    font-size: 15px;
    color: var(--text-gray);
    font-weight: 400;
    margin-top: 8px;
}

/* Specific Item Styling */
.phone-item h3::before {
    content: '📞 ';
}

.email-item h3::before {
    content: '✉️ ';
}

.address-item h3::before {
    content: '📍 ';
}

.hours-item h3::before {
    content: '🕐 ';
}

/* ===================================
   Hours List - Enhanced
   =================================== */

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 17px;
    padding: 15px 20px;
    background: var(--light-bg);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.hours-row.weekday {
    background: linear-gradient(135deg, #E8F9EA 0%, #f0fdf4 100%);
}

.hours-row.weekend {
    background: linear-gradient(135deg, #fef9e8 0%, #fffbeb 100%);
}

.hours-row.closed {
    background: linear-gradient(135deg, #f5f5f5 0%, #fafafa 100%);
    opacity: 0.7;
}

.hours-row:hover {
    transform: translateX(5px);
}

.hours-row span:first-child {
    color: var(--text-dark);
    font-weight: 600;
}

.time-highlight {
    color: var(--primary-green);
    font-weight: 700;
    font-size: 18px;
    background: var(--white);
    padding: 5px 15px;
    border-radius: 8px;
}

.closed-text {
    color: var(--text-gray);
    font-weight: 600;
    font-style: italic;
}

.hours-note {
    margin-top: 20px;
    padding: 15px;
    background: var(--light-green);
    border-radius: 10px;
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.6;
    border-left: 4px solid var(--primary-green);
}

/* ===================================
   Contact Image
   =================================== */

.contact-image-block {
    position: sticky;
    top: 100px;
}

.contact-image-block img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

/* ===================================
   Contact Statement
   =================================== */

.contact-statement {
    padding: 160px 0;
    text-align: center;
    background: var(--white);
}

.statement-text {
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* ===================================
   Location Section
   =================================== */

.location-section {
    padding: 80px 0 120px;
    background: var(--white);
}

.location-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 768px) {
    .contact-grid-section {
        padding: 100px 0 60px;
    }

    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-info-block {
        gap: 30px;
    }

    .info-item {
        padding: 25px;
    }

    .info-highlight {
        font-size: 20px;
    }

    .contact-image-block {
        position: relative;
        top: 0;
    }

    .contact-image-block img {
        height: 400px;
    }

    .contact-statement {
        padding: 100px 0;
    }

    .hours-row {
        font-size: 15px;
        padding: 12px 15px;
    }

    .time-highlight {
        font-size: 16px;
        padding: 4px 10px;
    }

    .location-image img {
        height: 350px;
    }
}

/* ===================================
   Print Styles
   =================================== */

@media print {
    .contact-image-block,
    .main-nav,
    .main-footer {
        display: none;
    }

    .info-item {
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
}
