body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--primary-black);
    color: var(--white);
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin: 0 0 20px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header and Navigation - Consistent with other pages */
header {
    background-color: var(--primary-black);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Logo styling */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px; /* Adjust height as needed */
    margin-right: 15px;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}
.logo h1 {
    margin: 0 0 0 30px;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    position: relative;
    overflow: hidden;
    animation: fadeIn 1.2s ease-out;
}

.logo span {
    color: var(--gold);
    position: relative;
    display: inline-block;
    animation: shimmer 3s infinite;
}
nav,
nav a,
.logo h1,
.logo span {
    font-family: 'Montserrat', sans-serif;
}

nav ul {
    display: flex;
    list-style-type: none;
    margin: 0 30px 0 0;
    padding: 0;
}

nav li {
    margin: 0 15px;
}

nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    position: relative;
    padding: 6px 0;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px; /* Thinner line for elegance */
    background: linear-gradient(90deg, 
                transparent, 
                rgba(190, 165, 93, 0.6), 
                #BEA55D, 
                rgba(190, 165, 93, 0.6),
                transparent);
    transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform-origin: center;
}

nav a:hover {
    color: #BEA55D; /* More subtle gold shade */
    text-shadow: 0 0 10px rgba(190, 165, 93, 0.2); /* Softer glow */
}

nav a:hover::after {
    width: 100%;
}

/* Active page styling */
nav a[aria-current="page"],
nav a.active {
    color: #BEA55D; /* Matching hover color */
    font-weight: 500;
}

nav a[aria-current="page"]::after,
nav a.active::after {
    width: 100%;
    height: 1px;
    background: #BEA55D;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    color: var(--white);
    cursor: pointer;
}

/* Contact Page Styling with consistent site-wide styling */
:root {
    --primary-black: #000000;
    --secondary-black: #1a1a1a;
    --gold: #D4AF37;
    --light-gold: #F5EEC8;
    --white: #ffffff;
    --gray: #808080;
}

/* Hero Section */
.contact-hero {
    background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.6)), 
                url('../assets/images/ali.png');
    background-size: cover;
    background-position: center;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px; /* Account for header */
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--white);
}

.hero-tagline {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Enhanced Contact Info Section */
.contact-info-section {
    padding: 80px 0;
    background: linear-gradient(160deg, #0a0a0a 0%, #141414 100%);
    position: relative;
}

.contact-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(190,165,93,0.3), rgba(190,165,93,0.8), rgba(190,165,93,0.3), transparent);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    background: linear-gradient(145deg, rgba(10, 10, 10, 0.95) 0%, rgba(22, 22, 22, 0.95) 100%);
    border-radius: 12px;
    padding: 45px 30px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(190, 165, 93, 0.1);
}

.contact-card .icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(190, 165, 93, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border: 1px solid rgba(190, 165, 93, 0.3);
    position: relative;
}

.contact-card .icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 1px solid rgba(190, 165, 93, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-card:hover .icon::before {
    opacity: 1;
}

.contact-card .icon i {
    font-size: 36px;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.contact-card:hover .icon i {
    transform: scale(1.1);
}

.contact-card h3 {
    margin-bottom: 10px;
    font-size: 24px;
    color: var(--white);
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.5px;
}

.contact-card p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 25px;
    font-size: 15px;
}

.contact-link {
    color: var(--gold);
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    display: block;
}

.contact-link:hover {
    color: #D4AF37;
    text-shadow: 0 0 10px rgba(190, 165, 93, 0.3);
    transform: translateX(2px);
}

.contact-card .fab.fa-whatsapp {
    margin-right: 8px;
}

.timing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-top: 10px;
}

.timing::before {
    content: '\f017';  /* Clock icon in FontAwesome */
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
    color: var(--gold);
}

/* Section Headers - Matching site style */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    width: 100%;
}

.section-header h2 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25%;
    right: 25%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.section-header p {
    color: var(--white);
    opacity: 0.8;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

/* Inquiry Form Section */
.inquiry-form-section {
    padding: 80px 0;
    background-color: var(--secondary-black);
    width: 100%;
}

.inquiry-form {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 50px;
    background: linear-gradient(145deg, rgba(10, 10, 10, 0.8) 0%, rgba(25, 25, 25, 0.8) 100%);
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    width: 100%;
}

.form-group {
    position: relative;
    width: 100%;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    color: var(--white);
    margin-bottom: 8px;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 85%;
    padding: 14px;
    background-color: darkgray;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--white);
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.radio-group {
    display: flex;
    gap: 30px;
    margin-top: 10px;
}

.radio-group input[type="radio"] {
    width: auto;
    margin-right: 8px;
}

.radio-group label {
    display: inline;
    margin-bottom: 0;
}

.preference-options p {
    color: var(--white);
    margin-bottom: 10px;
}

.submit-button {
    background-color: var(--gold);
    color: var(--primary-black);
    border: none;
    padding: 16px 30px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: auto;
    margin: 0 auto;
}

.submit-button i {
    transition: transform 0.3s ease;
}

.submit-button:hover {
    background-color: var(--light-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.submit-button:hover i {
    transform: translateX(5px);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--primary-black);
    width: 100%;
}

.faq-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    overflow: hidden;
    width: 100%;
}

.faq-question {
    background-color: rgba(255, 255, 255, 0.03);
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(212, 175, 55, 0.1);
}

.faq-question h3 {
    margin: 0;
    font-size: 18px;
    color: var(--white);
}

.toggle-icon {
    color: var(--gold);
    transition: all 0.3s ease;
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: rgba(0, 0, 0, 0.3);
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 300px;
}

.faq-answer p {
    margin: 0;
    color: var(--white);
    opacity: 0.9;
    line-height: 1.6;
}

.faq-answer a {
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.faq-answer a:hover {
    text-decoration: underline;
    color: var(--light-gold);
}

/* Map Section */
.location-section {
    padding: 80px 0;
    background-color: var(--primary-black);
    width: 100%;
}

.map-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(212, 175, 55, 0.2);
    width: 100%;
}

.google-map-embed {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

.area-highlights {
    display: flex;
    justify-content: space-around;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    flex-wrap: wrap;
    width: 100%;
}

.highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    min-width: 120px;
}

.highlight i {
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 10px;
}

.highlight span {
    color: var(--white);
    font-size: 14px;
    text-align: center;
}

/* CTA Section */
.contact-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-black), var(--secondary-black), var(--primary-black));
    text-align: center;
    width: 100%;
}

.contact-cta h2 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 20px;
}

.contact-cta p {
    color: var(--white);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 18px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 14px 30px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    gap: 10px;
}

.cta-button i {
    font-size: 18px;
}

.cta-button.primary {
    background-color: var(--gold);
    color: var(--primary-black);
}

.cta-button.primary:hover {
    background-color: var(--light-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-button.secondary {
    background-color: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.cta-button.secondary:hover {
    background-color: rgba(212, 175, 55, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Footer styling to match other pages */
footer {
    background-color: var(--primary-black);
    padding: 60px 0 20px;
    color: var(--white);
    background: linear-gradient(to bottom, #0a0a0a 0%, #000000 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
}

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

.footer-section h3 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 20px;
    position: relative;
    padding-bottom: 10px;
}

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

.footer-section span {
    color: var(--gold);
}

.social-icons {
    display: flex;
    gap: 30px;
    margin-top: 15px;
    margin-left: 125px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: transparent;
    color: var(--gold);
    text-decoration: none;
    border-radius: 50%;
    border: 1px solid var(--gold);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    font-size: 18px;
}

.social-icon:hover {
    transform: translateY(-5px);
    background-color: var(--gold);
    color: var(--primary-black);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

/* Form validation styles */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #e74c3c;
}

.error-message {
    color: #e74c3c;
    font-size: 12px;
    margin-top: 5px;
}

/* Success message */
.success-message {
    display: none;
    background-color: rgba(46, 204, 113, 0.1);
    border: 1px solid #2ecc71;
    color: #2ecc71;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    text-align: center;
    width: 100%;
}

/* Success Message Styling */
.success-message {
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.3);
    border-radius: 8px;
    padding: 40px 30px;
    margin: 30px 0;
    text-align: center;
    animation: fadeIn 0.5s ease-in-out;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(46, 204, 113, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.success-icon i {
    font-size: 40px;
    color: #2ecc71;
}

.success-message h3 {
    color: #2ecc71;
    margin-bottom: 15px;
    font-size: 24px;
}

.success-message p {
    color: var(--text-dark);
    font-size: 18px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Improved response & business hours section */
.response-section {
    padding: 80px 0;
    background-color: var(--secondary-black);
}

.response-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Business Hours styling */
.hours-info {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 35px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.hours-info h3 {
    color: var(--gold);
    font-size: 24px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    font-family: 'Playfair Display', serif;
}

.hours-info h3 i {
    margin-right: 15px;
    font-size: 28px;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 15px;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.hours-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 18px;
}

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

.availability-note {
    margin-top: 25px;
    font-size: 15px;
    opacity: 0.8;
    padding-top: 15px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

/* Our Commitment styling */
.response-info {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 35px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.response-info h3 {
    color: var(--gold);
    font-size: 24px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    font-family: 'Playfair Display', serif;
}

.response-info h3 i {
    margin-right: 15px;
    font-size: 26px;
}

.response-list {
    padding: 0;
    margin: 0;
}

.response-time {
    font-size: 36px;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
}

.response-time-label {
    font-size: 16px;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 25px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: 1;
    }
    
    .container {
        width: 95%;
    }
}

@media (max-width: 768px) {
    /* Center aligned header for mobile */
    header {
        flex-direction: column;
        padding: 15px 0;
        align-items: center;
        justify-content: center;
    }
    
    /* Remove right margin from logo */
    .logo {
        margin: 0;
        margin-bottom: 10px;
    }
    
    .logo h1 {
        margin: 0; /* Remove left margin */
    }
    
    /* Center the mobile toggle button */
    .mobile-menu-toggle {
        display: block;
        margin: 10px 0 0;
        position: relative;
    }
    
    /* Center the dropdown menu */
    nav ul {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--primary-black);
        flex-direction: column;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        margin: 0 auto;
        width: 100%;
        text-align: center;
    }
    
    nav ul.open {
        max-height: 300px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    }
    
    nav li {
        margin: 0;
        text-align: center;
        width: 100%;
    }
    
    nav a {
        display: block;
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
    }
    
    .contact-hero h1 {
        font-size: 36px;
    }
    
    .inquiry-form {
        padding: 30px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-icons {
        justify-content: center;
    }
    
    /* Enhanced Mobile Fixes for contact.css */
    /* Fix existing issues */
    
    /* 1. Improve touch targets */
    .submit-button,
    .cta-button,
    .faq-question,
    .contact-link,
    .social-icon {
        min-height: 44px !important;
        min-width: 44px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    /* 2. Fix contact cards grid */
    .contact-cards {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    /* 3. Form element width fix */
    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* 4. Fix radio group alignment */
    .radio-group {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 15px !important;
    }
    
    /* 5. Make submit button more visible */
    .submit-button {
        width: 100% !important;
        padding: 16px !important;
        margin-top: 20px !important;
    }
    
    /* 6. Fix social icons in footer */
    .social-icons {
        margin-left: auto !important;
        margin-right: auto !important;
        justify-content: center !important;
        gap: 20px !important;
    }
    
    /* 7. Fix area highlights overflow */
    .area-highlights {
        flex-direction: column !important;
        align-items: center !important;
    }
}

/* Fix for smaller phones */
@media (max-width: 380px) {
    .contact-hero h1 {
        font-size: 32px !important;
    }
    
    .contact-card {
        padding: 25px 15px !important;
    }
}

/* Add support for notched phones */
@supports (padding: max(0px)) {
    @media (max-width: 768px) {
        .contact-hero,
        .contact-info-section,
        .inquiry-form-section,
        .location-section,
        .response-section,
        .faq-section,
        .contact-cta {
            padding-left: max(20px, env(safe-area-inset-left)) !important;
            padding-right: max(20px, env(safe-area-inset-right)) !important;
        }
        
        footer {
            padding-bottom: max(20px, env(safe-area-inset-bottom)) !important;
        }
    }
}