        :root {
            --primary-color: #8B4513;
            --secondary-color: #D2691E;
            --accent-color: #F4A460;
            --dark-color: #2C2C2C;
            --light-color: #F8F9FA;
            --text-color: #333333;
            --transition: all 0.3s ease;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-color);
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
        }
        
        /* Contact Hero Section */
        .contact-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1698934641149-93431f3bd4f7?q=80&w=1171&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center/cover;
            padding: 150px 0 100px;
            color: white;
            text-align: center;
        }
        
        .contact-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
        }
        
        .contact-hero .tagline {
            font-size: 1.5rem;
            margin-bottom: 30px;
            color: var(--accent-color);
            font-weight: 500;
        }
        
        .contact-hero .location {
            font-size: 1.2rem;
            margin-bottom: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .contact-hero .location i {
            margin-right: 10px;
            color: var(--accent-color);
        }
        
        /* Contact Intro Section */
        .contact-intro {
            padding: 80px 0;
            background-color: var(--light-color);
        }
        
        .contact-intro-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }
        
        .contact-intro-content h2 {
            color: var(--primary-color);
            margin-bottom: 30px;
        }
        
        .contact-intro-content p {
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 20px;
        }
        
        .ready-to-serve {
            background: var(--primary-color);
            color: white;
            padding: 40px;
            border-radius: 10px;
            margin-top: 40px;
        }
        
        .ready-to-serve h3 {
            color: white;
            margin-bottom: 20px;
        }
        
        /* Contact Main Section */
        .contact-main {
            padding: 100px 0;
        }
        
        .contact-card {
            background: white;
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            height: 100%;
            transition: var(--transition);
        }
        
        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
        }
        
        .contact-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .contact-card h3 {
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .contact-info {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .contact-info li {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }
        
        .contact-info li i {
            color: var(--secondary-color);
            margin-right: 15px;
            margin-top: 5px;
            flex-shrink: 0;
            width: 20px;
            text-align: center;
        }
        
        .contact-form {
            background: white;
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }
        
        .form-control {
            padding: 12px 15px;
            border: 1px solid #e1e1e1;
            border-radius: 5px;
            margin-bottom: 20px;
            transition: var(--transition);
            font-size: 1rem;
        }
        
        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(139, 69, 19, 0.25);
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        /* .btn-primary {
            background-color: var(--primary-color);
            border: none;
            padding: 14px 35px;
            font-weight: 500;
            font-size: 1.1rem;
            transition: var(--transition);
            border-radius: 5px;
            width: 100%;
        }
        
        .btn-primary:hover {
            background-color: var(--secondary-color);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        } */
        
        /* Why Contact Section */
        .why-contact {
            padding: 100px 0;
            background: linear-gradient(rgba(248, 249, 250, 0.9), rgba(248, 249, 250, 0.9)), url('https://images.unsplash.com/photo-1586023492125-27b2c045efd7?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1758&q=80') no-repeat center center/cover;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .section-header h2 {
            color: var(--primary-color);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .section-header h2 i {
            margin-right: 15px;
            color: var(--accent-color);
        }
        
        .section-header:after {
            content: '';
            position: absolute;
            width: 100px;
            height: 3px;
            background-color: var(--primary-color);
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .reasons-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .reason-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: var(--transition);
            border-top: 4px solid var(--primary-color);
        }
        
        .reason-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .reason-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .reason-card h4 {
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        
        /* Delivery Locations */
        .delivery-locations {
            padding: 80px 0;
            background-color: var(--primary-color);
            color: white;
            text-align: center;
        }
        
        .delivery-locations h2 {
            margin-bottom: 40px;
            color: white;
        }
        
        .locations-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .location-badge {
            background: rgba(255, 255, 255, 0.1);
            padding: 12px 25px;
            border-radius: 30px;
            font-weight: 500;
            transition: var(--transition);
        }
        
        .location-badge:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
        }
        
        /* Map Section */
        .map-section {
            padding: 80px 0;
        }
        
        .map-container {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            height: 400px;
        }
        
        /* FAQ Section */
        .faq-section {
            padding: 100px 0;
            background-color: var(--light-color);
        }
        
        .accordion-item {
            border: none;
            margin-bottom: 15px;
            border-radius: 10px !important;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .accordion-button {
            background: white;
            border: none;
            padding: 20px 25px;
            font-weight: 500;
            font-size: 1.1rem;
            color: var(--primary-color);
        }
        
        .accordion-button:not(.collapsed) {
            background: var(--primary-color);
            color: white;
            box-shadow: none;
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border-color: transparent;
        }
        
        .accordion-body {
            padding: 20px 25px;
            background: white;
        }
        
        /* CTA Section */
        .contact-cta {
            padding: 100px 0;
            background: var(--primary-color);
            color: white;
            text-align: center;
        }
        
        .contact-cta h2 {
            margin-bottom: 30px;
            color: white;
        }
        
        .contact-cta p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .btn-light {
            background: white;
            color: var(--primary-color);
            padding: 14px 35px;
            font-weight: 500;
            font-size: 1.1rem;
            transition: var(--transition);
            border-radius: 5px;
        }
        
        .btn-light:hover {
            background: var(--accent-color);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .contact-hero {
                padding: 120px 0 80px;
            }
            
            .contact-hero h1 {
                font-size: 2.5rem;
            }
            
            .contact-hero .tagline {
                font-size: 1.2rem;
            }
            
            .locations-grid {
                flex-direction: column;
                align-items: center;
            }
            
            .contact-card, .contact-form {
                margin-bottom: 30px;
            }
        }
   

        @media (max-width: 576px) {
            .contact-main{
                padding: 4% 2% !important;
            }
            .contact-card{
                padding: 2%;
                margin-bottom: 0px;
            }
            .locations-grid{
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
            }
            .delivery-locations{
                padding: 4% 0px !important;
            }
        }