/* Modern Booking Form Styles with Professional Color Theme */
:root {
    --primary-blue: #2c3e50;
    --secondary-blue: #34495e;
    --accent-blue: #3498db;
    --accent-orange: #e67e22;
    --text-light: #f8f9fa;
    --text-dark: #333333;
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.25);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

/* Contact Section */
.contact {
    position: relative;
    padding: 100px 5%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    min-height: 80vh;
}

/* Contact Container */
.contact-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

/* Section Title */
.contact .section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.contact-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact .section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.contact .section-title h2::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 4px;
    background: var(--accent-orange);
    left: 25%;
    bottom: -10px;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(230, 126, 34, 0.5);
}

/* Response Indicator */
.response-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 15px;
    background: rgba(52, 152, 219, 0.2);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(52, 152, 219, 0.4);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.pulse-dot {
    width: 16px;
    height: 16px;
    background-color: #e67e22; /* Changed from green to orange */
    border-radius: 50%;
    margin-bottom: 15px;
    position: relative;
    box-shadow: 0 0 10px rgba(230, 126, 34, 0.7); /* Updated shadow color to match */
}

.pulse-dot::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(230, 126, 34, 0.7); /* Changed from green to orange */
    animation: pulse 1.5s infinite;
    top: 0;
    left: 0;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(230, 126, 34, 0.5); /* Changed from green to orange */
    animation: pulse 1.5s infinite 0.3s;
    top: 0;
    left: 0;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(3);
        opacity: 0;
    }
}

.response-indicator p {
    color: white;
    font-size: 1rem;
    margin: 5px 0;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.highlight {
    color: var(--accent-orange);
    font-weight: 700;
    font-size: 1.1rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.status-text {
    color: #e67e22; /* Changed from green to orange to match website theme */
    font-weight: 600;
    font-size: 1.05rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    position: relative;
    padding-left: 20px;
}

.status-text::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: #e67e22; /* Changed from green to orange to match website theme */
    font-size: 1.5rem;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Booking Form */
.booking-form {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--glass-shadow);
    transition: all 0.3s ease;
}

.booking-form:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: white;
    font-size: 0.95rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.3);
    border-color: var(--accent-blue);
    box-shadow: 0 0 15px rgba(52, 152, 219, 0.5);
    color: white;
}

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

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: var(--accent-orange);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
}

.submit-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(230, 126, 34, 0.4);
    background: #d35400;
}

/* WhatsApp Button */
.whatsapp-button {
    margin-top: 20px;
    text-align: center;
}

.whatsapp-button a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    background: #25D366;
    color: white;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-button a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-button i {
    font-size: 1.2rem;
}

/* Contact Info */
.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.info-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--glass-shadow);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.info-icon i {
    font-size: 24px;
    color: white;
}

.info-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 10px;
}

.info-card p {
    color: var(--text-light);
    opacity: 0.9;
}

.info-card a {
    color: var(--accent-blue);
    transition: all 0.3s ease;
}

.info-card a:hover {
    opacity: 0.8;
}

/* Emergency Contact */
.emergency-contact {
    grid-column: span 1;
    background: rgba(231, 76, 60, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(231, 76, 60, 0.2);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.15);
}

.emergency-contact h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #e74c3c;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.emergency-contact p {
    color: var(--text-light);
    margin-bottom: 20px;
    opacity: 0.9;
}

.emergency-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 25px;
    background: #e74c3c;
    color: white;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.emergency-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.4);
}

.emergency-btn i {
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact .section-title h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 80px 5% 60px;
    }
    
    .booking-form {
        padding: 25px;
    }
    
    .info-card {
        padding: 15px;
    }
    
    .info-icon {
        width: 50px;
        height: 50px;
    }
    
    .info-icon i {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .contact .section-title h2 {
        font-size: 1.8rem;
    }
    
    .booking-form {
        padding: 20px;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .submit-btn {
        padding: 12px;
        font-size: 0.95rem;
    }
}
