/* Contact Page Specific Styles */

/* Location Section */
.location-section {
    background: white;
    padding: 80px 20px;
}

.location-section h2 {
    font-family: 'Tenor Sans', serif;
    font-size: 1.8rem;
    color: #333;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.location-info h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: #E05353;
    margin-bottom: 20px;
}

.location-info address {
    font-style: normal;
    line-height: 1.8;
    font-size: 1rem;
    color: #444;
    margin-bottom: 30px;
}

.transport-info,
.venue-features {
    margin-bottom: 30px;
}

.transport-info h4,
.venue-features h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.transport-list,
.location-section .features-list {
    list-style: none;
    padding: 0;
}

.transport-list li,
.location-section .features-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    color: #555;
    position: relative;
    padding-left: 20px;
    font-size: 0.9rem;
}

.transport-list li::before,
.location-section .features-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #E05353;
    font-weight: bold;
}

.transport-list li:last-child,
.location-section .features-list li:last-child {
    border-bottom: none;
}

.map-wrapper {
    border: 1px solid #e0e0e0;
    height: 500px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Contact Bento Section */
.contact-bento-section {
    background-color: #f5f5f5;
    padding: 80px 20px;
}

/* Contact Grid Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left Column - Contact Details */
.contact-left h2 {
    font-family: 'Tenor Sans', serif;
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 30px;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Bento Boxes */
.bento-box {
    background: white;
    padding: 30px;
    border-radius: 0;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s, border-color 0.3s;
}

.bento-box:hover {
    transform: translateY(-3px);
    border-color: #d0d0d0;
}

.bento-box.bento-large {
    grid-column: span 2;
}

.bento-box.bento-wide {
    grid-column: span 2;
}

.bento-box h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #E05353;
    margin-bottom: 15px;
    font-weight: 600;
}

.bento-box p {
    color: #666;
    font-size: 0.85rem;
    margin-top: 8px;
    line-height: 1.6;
}

.bento-box address {
    font-style: normal;
    line-height: 1.8;
    color: #444;
    font-size: 0.9rem;
}

/* Contact Links */
.contact-phone,
.contact-email {
    font-size: 1rem;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: color 0.3s;
}

.contact-phone:hover,
.contact-email:hover {
    color: #E05353;
}

/* Features List */
.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.features-list li {
    color: #333;
    font-size: 0.9rem;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.features-list li:last-child {
    border-bottom: none;
}

/* Right Column - Form */
.contact-right {
    display: flex;
    align-items: flex-start;
}

.form-card {
    background: white;
    padding: 40px;
    border-radius: 0;
    border: 1px solid #e0e0e0;
    width: 100%;
}

/* Form Title and Subtitle */
.form-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: #E05353;
    margin-bottom: 10px;
    font-weight: 700;
    text-align: center;
}

.form-subtitle {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: #444;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 10px 12px;
    border: 2px solid #e0e0e0;
    border-radius: 0;
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #E05353;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
    font-size: 0.85rem;
}

.form-group select {
    cursor: pointer;
}

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

/* Submit Button */
.submit-btn {
    background: linear-gradient(135deg, #E05353, #F07373);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 0;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-top: 10px;
    font-family: 'Poppins', sans-serif;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(224,83,83,0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-left {
        order: 2;
    }
    
    .contact-right {
        order: 1;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
    }
    
    .map-wrapper {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .contact-bento-section,
    .location-section {
        padding: 60px 20px;
    }
    
    .contact-left h2,
    .location-section h2 {
        font-size: 1.5rem;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-box.bento-large,
    .bento-box.bento-wide {
        grid-column: span 1;
    }
    
    .form-card {
        padding: 30px 20px;
    }
    
    .submit-btn {
        width: 100%;
    }
    
    .map-wrapper {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .bento-box {
        padding: 20px;
    }
    
    .contact-phone,
    .contact-email {
        font-size: 1.1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

/* Local Areas Section */
.local-areas-section {
    background: white;
    padding: 80px 20px;
}

.local-areas-section h2 {
    font-family: 'Tenor Sans', serif;
    font-size: 1.8rem;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-intro {
    text-align: center;
    font-size: 1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

/* Areas Bento Grid */
.areas-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

/* Area Bento Boxes */
.area-bento-box {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 0;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s, border-color 0.3s;
}

.area-bento-box:hover {
    transform: translateY(-3px);
    border-color: #d0d0d0;
    background: #f5f5f5;
}

.area-bento-box.bento-large {
    grid-column: span 2;
}

.area-bento-box.bento-wide {
    grid-column: span 3;
}

.area-bento-box h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #E05353;
    margin-bottom: 20px;
    font-weight: 600;
    border-bottom: 2px solid #E05353;
    padding-bottom: 8px;
}

/* Area List */
.area-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.area-list span {
    background: white;
    padding: 4px 10px;
    font-size: 0.8rem;
    color: #555;
    border: 1px solid #e0e0e0;
    transition: all 0.3s;
    font-weight: 400;
}

.area-list span:hover {
    background: #E05353;
    color: white;
    border-color: #E05353;
}

/* Service Note */
.service-note {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: #f8f8f8;
    border-left: 4px solid #E05353;
}

.service-note p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.service-note strong {
    color: #E05353;
}

/* Areas Responsive Design */
@media (max-width: 1024px) {
    .areas-bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .area-bento-box.bento-large {
        grid-column: span 2;
    }
    
    .area-bento-box.bento-wide {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .local-areas-section {
        padding: 60px 20px;
    }
    
    .local-areas-section h2 {
        font-size: 1.5rem;
    }
    
    .areas-bento-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .area-bento-box.bento-large,
    .area-bento-box.bento-wide {
        grid-column: span 1;
    }
    
    .area-bento-box {
        padding: 20px;
    }
    
    .area-list span {
        font-size: 0.75rem;
        padding: 3px 8px;
    }
}

@media (max-width: 480px) {
    .area-bento-box h3 {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .area-list {
        gap: 6px;
    }
    
    .area-list span {
        font-size: 0.7rem;
        padding: 2px 6px;
    }
    
    .service-note {
        padding: 15px;
    }
    
    .service-note p {
        font-size: 0.85rem;
    }
}