    :root {
    --gold: #D4AF37;
    --gold-hover: #B8860B;
    --burnt-orange: #CC5500;
    --dark-green: #2F4F4F;
    --light-cream: #FFF8DC;
    --dark-brown: #3C2A21;
    --light-brown: #8B7355;
}



/* Hero Section */
.hero {
    height: 70vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url('/Images/Hero/contact.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Contact Methods Section */
.contact-methods {
    padding: 80px 0;
    background-color: white;
}

.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.section-heading h2 {
    font-size: 2.5rem;
    color: var(--dark-brown);
    margin-bottom: 15px;
}

.section-heading p {
    color: var(--light-brown);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.method-card {
    background-color: #FFFCF5;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.method-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--gold);
}

.method-icon {
    font-size: 3rem;
    color: var(--burnt-orange);
    margin-bottom: 20px;
}

.method-card h3 {
    font-size: 1.5rem;
    color: var(--dark-brown);
    margin-bottom: 15px;
}

.method-card p {
    color: var(--light-brown);
    margin-bottom: 20px;
    line-height: 1.8;
}

.method-card .contact-details {
    font-weight: 600;
    color: var(--dark-brown);
}

.method-card .contact-details a {
    color: var(--burnt-orange);
    text-decoration: none;
    transition: all 0.3s ease;
}

.method-card .contact-details a:hover {
    color: var(--gold-hover);
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background-color: #F9F5EB;
}

.form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.form-info h3 {
    font-size: 2rem;
    color: var(--dark-brown);
    margin-bottom: 20px;
}

.form-info p {
    color: var(--light-brown);
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.form-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature-icon {
    color: var(--burnt-orange);
    margin-right: 15px;
    font-size: 1.2rem;
}

.contact-form {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark-brown);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

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

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

.submit-btn {
    background-color: var(--gold);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background-color: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background-color: white;
}

.map-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.map-info h3 {
    font-size: 2rem;
    color: var(--dark-brown);
    margin-bottom: 20px;
}

.map-info p {
    color: var(--light-brown);
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.office-details {
    background-color: #FFFCF5;
    padding: 30px;
    border-radius: 8px;
    margin-top: 30px;
}

.office-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.office-icon {
    color: var(--burnt-orange);
    margin-right: 15px;
    font-size: 1.2rem;
    margin-top: 2px;
}

.office-item div h4 {
    color: var(--dark-brown);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.office-item div p {
    color: var(--light-brown);
    margin: 0;
}

.map-placeholder {
    height: 400px;
    background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1586901533048-0e856dff2c0d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.map-overlay {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    z-index: 1;
    position: relative;
}

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

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 25px 30px;
    background-color: white;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-brown);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: #FFFCF5;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: #FFFCF5;
}

.faq-answer.active {
    padding: 25px 30px;
    max-height: 300px;
}

.faq-answer p {
    color: var(--light-brown);
    line-height: 1.8;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-icon.active {
    transform: rotate(180deg);
}

/* Footer */
footer {
    background-color: #2C2C2C;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--gold);
}

.footer-column p {
    margin-bottom: 20px;
    color: #ccc;
    line-height: 1.8;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--burnt-orange);
    padding-left: 5px;
}

.contact-info {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-icon {
    color: var(--gold);
    margin-right: 10px;
    font-size: 18px;
}

.social-icons {
    display: flex;
    margin-top: 20px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #444;
    color: white;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--burnt-orange);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
    color: #ccc;
    font-size: 0.9rem;
}

/* Live Chat Button */
.live-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--gold);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: all 0.3s ease;
}

.live-chat:hover {
    background-color: var(--gold-hover);
    transform: scale(1.1);
}

.live-chat i {
    font-size: 24px;
}

/* Success Message */
.success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    border: 1px solid #c3e6cb;
    display: none;
}

/* Responsive */
@media (max-width: 992px) {
    .menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .menu.active {
        display: flex;
    }

    .menu li {
        margin: 15px 0;
        text-align: center;
    }

    .mobile-toggle {
        display: block;
    }

    .form-container,
    .map-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .section-heading h2 {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .methods-grid {
        grid-template-columns: 1fr;
    }
}
    