/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --maroon: #631000;
    --yellow: #FFBF00;
    --grey: #D9D9D9;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    line-height: 1.4;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

/* Navbar Styles */
.navbar {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: inline-block;
    text-decoration: none;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 400;
    transition: font-weight 0.2s ease;
    position: relative;
}

.nav-link:hover {
    font-weight: 700;
}

.dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 10px;
    margin-left: 5px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    list-style: none;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    padding: 10px 0;
    margin-top: 10px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    transition: background 0.2s ease;
}

.dropdown-menu a:hover {
    background: var(--grey);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

/* Contact Hero Section */
.contact-hero {
    width: 100%;
    height: 350px;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.contact-hero img {
    width: 100%;
    height: 100%;
    object-fit:cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-family: 'poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #fff;
    text-align: center;
    letter-spacing: 2px;
    line-height: 130%;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Request a Quote Form Section */
.quote-form-section {
    padding: 60px 10px;
    
}

.form-content {
    display: flex;
    justify-content: center;
}

.form-container {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    width: 80%;
    max-width: 1200px;
}

.form-left {
    position: relative;
}

.form-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--maroon);
    margin-bottom: 20px;
    margin-left: 30px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    
    
}

.form-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
    margin-top: 60px;
}

.form-image img {
    width: 100%;
    height: 100%;
    object-fit:contain;
}

.form-right {
    display: flex;
    flex-direction: column;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 60px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.phone-input-wrapper {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.country-code-select {
    padding: 12px 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.3s ease;
    min-width: 130px;
    flex-shrink: 0;
}

.country-code-select:focus {
    outline: none;
    border-color: var(--maroon);
}

.phone-input-wrapper input {
    flex: 1;
}

.contact-error {
    color: #ff0000;
    font-size: 0.85rem;
    margin-top: 5px;
    display: block;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--maroon);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    background: var(--maroon);
    color: #fff;
    padding: 8px 25px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 42px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: 'Poppins', sans-serif;
    width: fit-content;
}

.submit-btn:hover {
    background: var(--yellow);
}

.submit-btn:disabled {
    background: #999;
    cursor: not-allowed;
    opacity: 0.7;
}

/* Form Message Styles */
.form-message {
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    animation: slideDown 0.3s ease;
}

.form-message-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FAQ Section */
.faq-section {
    padding: 60px 10px;
    background: #f9f9f9;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--maroon);
    margin-bottom: 40px;
    margin-left: 150px;
    
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    transition: all 0.3s ease;
}

.faq-card:hover .faq-question {
    background: rgb(202, 202, 202);
}

.faq-card:hover .faq-title {
    color: rgb(37, 37, 37);
}

.faq-card:hover .faq-arrow {
    color:  rgb(37, 37, 37);
    transform: rotate(90deg);
}

.faq-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--maroon);
    transition: color 0.3s ease;
}

.faq-arrow {
    font-size: 1.5rem;
    color: rgb(37, 37, 37);
    font-weight: bold;
    transition: all 0.3s ease;
}

.faq-card.active .faq-arrow {
    transform: rotate(90deg);
    color:  rgb(37, 37, 37);
}

.faq-card.active .faq-question {
    background: rgb(202, 202, 202);
}

.faq-card.active .faq-title {
    color:  rgb(37, 37, 37);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 25px;
}

.faq-card.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 20px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    padding-top: 10px;
}

/* Social Section */
.social-section {
    padding: 60px 10px;
    
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.social-link {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    display: block;
    transition: transform 0.3s ease;
    border: 3px solid var(--maroon);
}

.social-link:hover {
    transform: scale(1.1);
    border-color: var(--yellow);
}

.social-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Footer */
.footer {
    background: rgb(35, 0, 0);
    color: #fff;
    padding: 40px 10px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 15px;
}

.footer-text {
    font-size: 0.9rem;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.9);
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--yellow);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    overflow: hidden;
    background: #fff;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

.whatsapp-button img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

@media (max-width: 768px) {
    .whatsapp-button {
        width: 55px;
        height: 55px;
        bottom: 15px;
        left: 15px;
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .form-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .form-image {
        height: 300px;
        margin-top: 80px;
    }

    .form-title {
        position: relative;
        margin-bottom: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .phone-input-wrapper {
        flex-direction: column;
    }

    .country-code-select {
        width: 100%;
        min-width: auto;
    }

    .social-icons {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 15px 0;
    }

    .dropdown-menu {
        position: static;
        display: none;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none;
        box-shadow: none;
        background: rgba(0,0,0,0.05);
        margin-top: 0;
        padding: 0;
        transition: opacity 0.3s ease, max-height 0.3s ease, padding 0.3s ease;
    }

    .dropdown.active .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        max-height: 500px;
        padding: 10px 0;
        margin-top: 10px;
    }

    .contact-hero {
        height: 300px;
    }

    .hero-title {
        font-size: 1.3rem;
        letter-spacing: 1px;
        line-height: 1.4;
        padding: 0 15px;
    }

    .form-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
        margin-left: 0;
        text-align: center;
    }

    .social-icons {
        gap: 20px;
    }

    .social-link {
        width: 60px;
        height: 60px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        height: 250px;
    }

    .hero-title {
        font-size: 1.1rem;
        letter-spacing: 0.5px;
        line-height: 1.4;
        padding: 0 10px;
    }

    .section-title {
        font-size: 1.5rem;
        margin-left: 0;
        text-align: center;
    }

    .form-container {
        padding: 25px;
    }

    .social-link {
        width: 50px;
        height: 50px;
    }
}

