/* Contact Page Styles */

/* Contact Hero */
.contact-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
    text-align: center;
    position: relative;
    z-index: 1;
}

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

.contact-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #F2F2F2;
    margin-bottom: 24px;
    line-height: 1.2;
}

.text-accent {
    color: #FF4545;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 300;
    color: rgba(242, 242, 242, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 80px 0 120px;
    background: #121212;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, auto);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.bento-item {
    background: rgba(242, 242, 242, 0.02);
    border: 1px solid rgba(242, 242, 242, 0.1);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
}

.bento-item:hover {
    background: rgba(242, 242, 242, 0.04);
    border-color: rgba(255, 69, 69, 0.3);
    transform: translateY(-2px);
}

/* Bento Grid Layout */
.bento-form {
    grid-column: 1 / 3;
    grid-row: 1 / 4;
    padding-right: 20px; /* Add right padding to prevent content from touching the edge */
    box-sizing: border-box; /* Ensure padding is included in width calculation */
}

.bento-info {
    grid-column: 3 / 5;
    grid-row: 1 / 2;
    margin-left: 10px; /* Add left margin to create space from form */
}

.bento-whatsapp {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
    margin-left: 10px; /* Add left margin to create space from form */
}

.bento-response {
    grid-column: 4 / 5;
    grid-row: 2 / 3;
    margin-left: 10px; /* Add left margin to create space from form */
}

.bento-hours {
    grid-column: 3 / 4;
    grid-row: 3 / 4;
    margin-left: 10px; /* Add left margin to create space from form */
}

.bento-emergency {
    grid-column: 4 / 5;
    grid-row: 3 / 4;
    margin-left: 10px;
}

/* Form Styling */
.form-header {
    margin-bottom: 20px;
}

.form-header h2 {
    font-size: 22px;
    font-weight: 600;
    color: #F2F2F2;
    margin-bottom: 6px;
}

.form-header p {
    font-size: 13px;
    font-weight: 300;
    color: rgba(242, 242, 242, 0.7);
    line-height: 1.4;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
    box-sizing: border-box;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
}

.form-group label {
    font-size: 11px;
    font-weight: 500;
    color: #F2F2F2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select {
    padding: 8px 10px;
    background: rgba(242, 242, 242, 0.05);
    border: 1px solid rgba(242, 242, 242, 0.2);
    border-radius: 6px;
    color: #F2F2F2;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s ease;
    width: 100%;
    box-sizing: border-box;
    height: 38px;
}

.form-group textarea {
    padding: 10px 12px;
    min-height: 100px;
    resize: vertical;
}

.bento-form .form-group input,
.bento-form .form-group select,
.bento-form .form-group textarea {
    max-width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF4545;
    background: rgba(242, 242, 242, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: rgba(242, 242, 242, 0.8);
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    background: rgba(242, 242, 242, 0.1);
    border: 2px solid rgba(242, 242, 242, 0.3);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #FF4545;
    border-color: #FF4545;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid #F2F2F2;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 32px;
    background: #FF4545;
    color: #F2F2F2;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 16px;
}

.submit-btn:hover {
    background: #E63946;
    transform: translateY(-2px);
}

/* Contact Info */
.info-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #F2F2F2;
    margin-bottom: 24px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
}

.method-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 69, 69, 0.1);
    border-radius: 12px;
    color: #FF4545;
}

.method-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.method-label {
    font-size: 12px;
    font-weight: 500;
    color: rgba(242, 242, 242, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.method-value {
    font-size: 16px;
    font-weight: 400;
    color: #F2F2F2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.method-value:hover {
    color: #FF4545;
}

/* WhatsApp */
.whatsapp-content {
    text-align: center;
}

.whatsapp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: #25D366;
    border-radius: 20px;
    color: #F2F2F2;
    margin: 0 auto 20px;
}

.whatsapp-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #F2F2F2;
    margin-bottom: 12px;
}

.whatsapp-content p {
    font-size: 14px;
    color: rgba(242, 242, 242, 0.7);
    margin-bottom: 20px;
    line-height: 1.5;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #25D366;
    color: #F2F2F2;
    text-decoration: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background: #1DA851;
    transform: translateY(-2px);
}

/* Response Time */
.response-content {
    text-align: center;
}

.response-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: rgba(255, 69, 69, 0.1);
    border-radius: 16px;
    color: #FF4545;
    margin: 0 auto 16px;
}

.response-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #F2F2F2;
    margin-bottom: 12px;
}

.response-content p {
    font-size: 14px;
    color: rgba(242, 242, 242, 0.7);
    line-height: 1.5;
}

/* Office Hours */
.hours-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #F2F2F2;
    margin-bottom: 20px;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.hours-item span:first-child {
    color: rgba(242, 242, 242, 0.7);
}

.hours-item span:last-child {
    color: #F2F2F2;
    font-weight: 500;
}

/* Emergency Contact */
.emergency-content {
    text-align: center;
}

.emergency-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 16px;
    color: #FFC107;
    margin: 0 auto 16px;
}

.emergency-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #F2F2F2;
    margin-bottom: 12px;
}

.emergency-content p {
    font-size: 14px;
    color: rgba(242, 242, 242, 0.7);
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    
    .bento-form {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
    }
    
    .bento-info {
        grid-column: 1 / 3;
        grid-row: 2 / 3;
    }
    
    .bento-whatsapp {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
    }
    
    .bento-response {
        grid-column: 2 / 3;
        grid-row: 3 / 4;
    }
    
    .bento-hours {
        grid-column: 1 / 2;
        grid-row: 4 / 5;
    }
    
    .bento-emergency {
        grid-column: 2 / 3;
        grid-row: 4 / 5;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .contact-section {
        padding: 60px 0 80px;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .bento-form,
    .bento-info,
    .bento-whatsapp,
    .bento-response,
    .bento-hours,
    .bento-emergency {
        grid-column: 1 / 2;
        grid-row: auto;
    }
    
    .bento-item {
        padding: 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        gap: 16px;
    }
}

/* Footer */
.footer {
    background: #0A0A0A;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(242, 242, 242, 0.1);
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo-text {
    font-size: 28px;
    font-weight: 700;
    color: #F2F2F2;
    letter-spacing: -0.5px;
}

.footer-tagline {
    font-size: 16px;
    font-weight: 300;
    color: rgba(242, 242, 242, 0.7);
    margin-top: 12px;
    line-height: 1.5;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-label {
    font-size: 12px;
    font-weight: 500;
    color: #FF4545;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-value {
    font-size: 16px;
    font-weight: 400;
    color: #F2F2F2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value:hover {
    color: #FF4545;
}

.footer-links-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column-title {
    font-size: 12px;
    font-weight: 500;
    color: #FF4545;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-nav-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav-link {
    font-size: 14px;
    font-weight: 400;
    color: rgba(242, 242, 242, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.footer-nav-link:hover {
    color: #FF4545;
}

.footer-social {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.social-label {
    font-size: 12px;
    font-weight: 500;
    color: #FF4545;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(242, 242, 242, 0.05);
    border: 1px solid rgba(242, 242, 242, 0.1);
    border-radius: 12px;
    color: rgba(242, 242, 242, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #FF4545;
    border-color: #FF4545;
    color: #F2F2F2;
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    padding-top: 40px;
}

.footer-divider {
    height: 1px;
    background: rgba(242, 242, 242, 0.1);
    margin-bottom: 40px;
}

.footer-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright p {
    font-size: 14px;
    font-weight: 300;
    color: rgba(242, 242, 242, 0.5);
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-link {
    font-size: 14px;
    font-weight: 400;
    color: rgba(242, 242, 242, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #FF4545;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-social {
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-social {
        align-items: center;
    }
    
    .footer-links-section {
        gap: 30px;
    }
    
    .footer-copyright {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}
