/* ========================================
   CONTACT PAGE - COMPLETE STYLES
   ======================================== */

/* Contact Hero Section */
.contact-hero {
    position: relative;
    height: 40vh;
    min-height: 300px;
    background: url('https://images.unsplash.com/photo-1416879595882-3373a0480b5b?w=1920&h=600&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 0 20px;
}

.contact-hero-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.contact-hero-tagline {
    font-size: clamp(0.9rem, 3vw, 1.2rem);
    font-weight: 400;
    letter-spacing: 2px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: #F4EFE6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* Contact Information */
.contact-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #2E4A2E;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.highlight {
    color: #C44D3A;
}

.contact-description {
    color: #6F7C6F;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.info-details {
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    color: #C44D3A;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.info-item:hover .info-icon {
    background: #C44D3A;
    color: white;
    transform: translateY(-3px);
}

.info-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #2E4A2E;
    margin-bottom: 5px;
}

.info-text p {
    color: #6F7C6F;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.info-text a {
    color: #6F7C6F;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-text a:hover {
    color: #C44D3A;
}

.info-coords {
    font-family: monospace;
    font-size: 0.8rem;
}

/* Social Connect */
.social-connect h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #2E4A2E;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C44D3A;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.social-links a:hover {
    background: #C44D3A;
    color: white;
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
    font-size: 1.5rem;
    color: #2E4A2E;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: #FAFAFA;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #C44D3A;
    box-shadow: 0 0 0 3px rgba(196, 77, 58, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    width: 100%;
    background: #C44D3A;
    color: white;
    border: none;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    background: #A83826;
    transform: translateY(-2px);
}

/* Map Section */
.map-section {
    padding: 60px 0;
    background: white;
}

.container-full {
    max-width: 100%;
    padding: 0;
}

.map-title {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.3rem);
    color: #2E4A2E;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.map-subtitle {
    text-align: center;
    color: #6F7C6F;
    margin-bottom: 30px;
}

.map-wrapper {
    width: 100%;
    position: relative;
}

.map-wrapper iframe {
    display: block;
}

.map-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.map-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #C44D3A;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.map-btn:hover {
    background: #A83826;
    transform: translateY(-2px);
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background-color: #F4EFE6;
}

.faq-title {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.3rem);
    color: #2E4A2E;
    margin-bottom: 40px;
    font-family: 'Playfair Display', serif;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
}

.faq-question {
    padding: 18px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: #2E4A2E;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #FFF5F0;
}

.faq-question i {
    color: #C44D3A;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 18px 25px;
    max-height: 200px;
}

.faq-answer p {
    color: #6F7C6F;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .map-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .map-btn {
        width: 200px;
        justify-content: center;
    }
    
    .faq-question {
        padding: 15px 20px;
        font-size: 0.9rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 15px 20px;
    }
}

@media (max-width: 480px) {
    .info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .info-icon {
        margin: 0 auto;
    }
    
    .social-links {
        justify-content: center;
    }
}
/* FAQ Wrapper (Replaces Form) */
.faq-wrapper {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.faq-wrapper-title {
    font-size: 1.5rem;
    color: #2E4A2E;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
    text-align: center;
}

.faq-wrapper-subtitle {
    text-align: center;
    color: #6F7C6F;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.faq-wrapper .faq-grid {
    margin-bottom: 25px;
}

.faq-contact-cta {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
    margin-top: 10px;
}

.faq-contact-cta p {
    color: #6F7C6F;
}

.faq-contact-cta a {
    color: #C44D3A;
    text-decoration: none;
    font-weight: 600;
}

.faq-contact-cta a:hover {
    text-decoration: underline;
}
/* ======================================== */
/* MAKE CONTACT INFO FULL WIDTH ON CONTACT PAGE ONLY */
/* ======================================== */

/* Full Width Contact Layout */
.contact-fullwidth {
    max-width: 900px;
    margin: 0 auto;
}

.contact-info-centered {
    background: white;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.contact-decorative {
    text-align: center;
    margin-bottom: 20px;
}

.contact-decorative i {
    font-size: 1.2rem;
    color: #C44D3A;
    margin: 0 8px;
    opacity: 0.6;
}

.contact-title-centered {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #2E4A2E;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    text-align: center;
}

.contact-description-centered {
    color: #6F7C6F;
    margin-bottom: 2rem;
    line-height: 1.8;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.info-details-centered {
    max-width: 600px;
    margin: 0 auto;
}

.info-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .info-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.info-item-centered {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    background: #FAFAFA;
    padding: 20px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.info-item-centered:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.info-icon-centered {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    color: #C44D3A;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.info-text-centered h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2E4A2E;
    margin-bottom: 5px;
}

.info-text-centered p {
    color: #6F7C6F;
    font-size: 0.85rem;
    margin-bottom: 2px;
}

.info-text-centered a {
    color: #6F7C6F;
    text-decoration: none;
}

.info-text-centered a:hover {
    color: #C44D3A;
}

.social-connect-centered {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.social-connect-centered h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #2E4A2E;
    margin-bottom: 15px;
}

.social-links-centered {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-links-centered a {
    width: 45px;
    height: 45px;
    background: #F4EFE6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C44D3A;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-links-centered a:hover {
    background: #C44D3A;
    color: white;
    transform: translateY(-3px);
}

@media (max-width: 480px) {
    .contact-info-centered {
        padding: 30px 20px;
    }
    
    .info-item-centered {
        padding: 15px;
    }
    
    .info-icon-centered {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }
}
/* ========================================
   COMPACT CARDS - SHORT & WIDE (Fits Content)
   ======================================== */

/* Card container - wider layout */
.contact-info-centered .info-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 0;
    align-items: start;  /* Changed from stretch - no forced height */
}

/* Cards - short and compact */
.contact-info-centered .info-item-centered {
    display: flex;
    flex-direction: row;  /* Horizontal layout (icon left, text right) */
    align-items: center;
    text-align: left;
    gap: 14px;
    padding: 14px 18px;  /* Short padding - was 28px 20px */
    background: #FFFFFF;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid #F0EBE0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
    height: auto;  /* Let content determine height */
    min-height: 0;  /* Remove min-height constraint */
}

.contact-info-centered .info-item-centered:hover {
    transform: translateY(-2px);
    border-color: rgba(196, 77, 58, 0.2);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

/* Icons - smaller and compact */
.contact-info-centered .info-icon-centered {
    width: 42px;
    height: 42px;
    background: #FEF8F5;
    border-radius: 12px;  /* Square with rounded corners */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;  /* Remove bottom margin */
    color: #C44D3A;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-info-centered .info-item-centered:hover .info-icon-centered {
    background: #C44D3A;
    color: white;
    transform: scale(1.02);
}

/* Text container - no extra space */
.contact-info-centered .info-text-centered {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;  /* Tight spacing between elements */
}

/* Headings - small and clean */
.contact-info-centered .info-text-centered h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: #2E4A2E;
    margin-bottom: 0;
    letter-spacing: 0.3px;
}

/* All text - compact */
.contact-info-centered .info-text-centered p {
    color: #7A8A7A;
    font-size: 0.75rem;
    margin-bottom: 0;
    line-height: 1.3;
}

.contact-info-centered .info-text-centered a {
    color: #7A8A7A;
    text-decoration: none;
    font-size: 0.75rem;
    line-height: 1.3;
}

.contact-info-centered .info-text-centered a:hover {
    color: #C44D3A;
}

/* Phone numbers - inline or stacked cleanly */
.contact-info-centered .phone-numbers {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-info-centered .phone-line {
    display: block;
    line-height: 1.3;
}

/* Hours - compact */
.contact-info-centered .hours-line {
    line-height: 1.3;
    margin-bottom: 0;
}

/* WhatsApp text styling */
.contact-info-centered .whatsapp-text {
    font-size: 0.7rem;
    color: #C44D3A;
}

/* For location card with multiple lines - keep it tight */
.contact-info-centered .info-text-centered br {
    display: none;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .contact-info-centered .info-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .contact-info-centered .info-item-centered {
        padding: 12px 16px;
    }
}

@media (max-width: 768px) {
    .contact-info-centered .info-item-centered {
        padding: 12px 14px;
        gap: 12px;
    }
    
    .contact-info-centered .info-icon-centered {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    
    .contact-info-centered .info-text-centered h4 {
        font-size: 0.8rem;
    }
    
    .contact-info-centered .info-text-centered p,
    .contact-info-centered .info-text-centered a {
        font-size: 0.7rem;
    }
}

@media (max-width: 576px) {
    .contact-info-centered .info-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .contact-info-centered .info-item-centered {
        padding: 12px 16px;
    }
}
/* Force horizontal layout - IMPORTANT! */
.contact-info-centered .info-row {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
    flex-direction: row !important;
}

/* Make sure cards are horizontal */
.contact-info-centered .info-item-centered {
    display: flex !important;
    flex-direction: row !important;  /* Icon left, text right */
    align-items: center !important;
    gap: 12px !important;
    padding: 2px 4px !important;
}

/* Ultra-wide, ultra-short version */
.contact-fullwidth {
    max-width: 1600px !important;
    width: 98% !important;
}

.contact-info-centered {
    padding: 20px 40px !important;  /* Very short top/bottom */
    border-radius: 20px;
}

.contact-title-centered {
    font-size: 1.6rem !important;
    margin-bottom: 0.3rem !important;
}

.contact-description-centered {
    font-size: 0.85rem !important;
    margin-bottom: 1.2rem !important;
}

.contact-info-centered .info-item-centered {
    padding: 8px 14px !important;  /* Very short padding */
    gap: 8px !important;
}

.contact-info-centered .info-icon-centered {
    width: 32px !important;
    height: 32px !important;
    font-size: 0.85rem !important;
    border-radius: 10px !important;
}

.contact-info-centered .info-text-centered h4 {
    font-size: 0.75rem !important;
    margin-bottom: 2px !important;
}

.contact-info-centered .info-text-centered p,
.contact-info-centered .info-text-centered a {
    font-size: 0.65rem !important;
    line-height: 1.2 !important;
}

.social-connect-centered {
    margin-top: 15px !important;
    padding-top: 15px !important;
}