
/* Enquiry Page Specific Styles */

/* Page Hero Section */
.page-hero {
    background: linear-gradient(135deg, #2F80ED, #2F80ED),
                url('../images/interior-bg.jpg') center/cover no-repeat;
    padding: 60px 0 60px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

/* Enquiry Section */
.enquiry-section {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.05), rgba(160, 82, 45, 0.03));
    padding: 80px 0;
    position: relative;
}

.enquiry-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/interior-texture.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: 0;
}

.enquiry-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    position: relative;
    z-index: 1;
}

/* Form Column */
.form-column {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(139, 69, 19, 0.15);
    border: 1px solid rgba(139, 69, 19, 0.1);
}

/* Enquiry Form Styles */
.enquiry-form {
    width: 100%;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
    font-size: 0.95rem;
}

.form-group .required {
    color: #d32f2f;
    margin-left: 3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(139, 69, 19, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: #fff;
    color: #333;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8B4513;
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

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

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

/* Checkbox Group */
.checkbox-group {
    margin: 25px 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 400;
    color: #555;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    cursor: pointer;
    accent-color: #8B4513;
}

.checkbox-label span {
    user-select: none;
}

/* Submit Button */
.btn-submit {
    width: 100%;
    padding: 16px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

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

.btn-submit i {
    font-size: 1rem;
}

/* Form Note */
.form-note {
    margin-top: 15px;
    font-size: 0.85rem;
    color: #777;
    text-align: center;
    line-height: 1.5;
}

/* Info Column */
.info-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(139, 69, 19, 0.12);
    border: 1px solid rgba(139, 69, 19, 0.1);
}

.info-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2F80ED;
}

/* Benefits List */
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #555;
    font-size: 0.95rem;
}

.benefits-list li:last-child {
    margin-bottom: 0;
}

.benefits-list i {
    color: #2F80ED;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Contact Info List */
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-info-item i {
    color:#2F80ED;
    font-size: 1.3rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.contact-info-item strong {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.contact-info-item a,
.contact-info-item p {
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    margin: 0;
}

.contact-info-item a:hover {
    color:#2F80ED;
}

/* Call to Action Buttons in Info Card */
.info-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.info-card .btn {
    width: 100%;
    justify-content: center;
    margin-bottom: 12px;
}

.info-card .btn:last-child {
    margin-bottom: 0;
}

.btn-outline-white {
    background: transparent;
    border: 2px solid#2F80ED;
    color:#2F80ED;
    font-weight: 600;
}

.btn-outline-white:hover {
    background: #2F80ED;
    color: #fff;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    border: 2px solid #25D366;
    font-weight: 600;
}

.btn-whatsapp:hover {
    background: #20BA5A;
    border-color: #20BA5A;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #fff;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 50px;
    color: #2F80ED;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-item {
    background: rgba(139, 69, 19, 0.03);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #2F80ED;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.1);
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
}

.faq-item p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Footer */
.footer {
    background: #2c2c2c;
    color: #fff;
    padding: 30px 0;
    text-align: center;
}

.footer p {
    margin: 0;
    font-size: 0.95rem;
}

/* WhatsApp Floating Button */
.whatsapp-mobile-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-mobile-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

/* Responsive Design */
@media (max-width: 992px) {
    .enquiry-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .form-column {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 100px 0 60px;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .page-hero p {
        font-size: 1rem;
    }
    
    .enquiry-section {
        padding: 60px 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-column {
        padding: 30px 20px;
    }
    
    .info-card {
        padding: 25px 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .faq-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .page-hero h1 {
        font-size: 1.75rem;
    }
    
    .whatsapp-mobile-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
}

/* Animation for Form Elements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-group {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.form-group:nth-child(1) { animation-delay: 0.1s; }
.form-group:nth-child(2) { animation-delay: 0.2s; }
.form-group:nth-child(3) { animation-delay: 0.3s; }
.form-group:nth-child(4) { animation-delay: 0.4s; }
.form-group:nth-child(5) { animation-delay: 0.5s; }
.form-group:nth-child(6) { animation-delay: 0.6s; }

/* Select Dropdown Styling */
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238B4513' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}
 

