  /* Contact Page Styles */
        .contact-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            padding: 120px 0 80px;
            color: white;
            text-align: center;
        }
        
        .contact-hero h1 {
            font-family: 'Lobster Two', cursive;
            font-size: 4rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .contact-hero p {
            font-size: 1.5rem;
            max-width: 800px;
            margin: 0 auto;
            font-weight: 300;
        }
        
        .contact-section {
            padding: 80px 0;
        }
        
        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .contact-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }
        
        .contact-info {
            flex: 1;
            min-width: 300px;
            background: #fff8f0;
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .contact-form {
            flex: 2;
            min-width: 300px;
        }
        
        .section-title {
            text-align: center;
            font-family: 'Lobster Two', cursive;
            font-size: 2.5rem;
            color: #7B4019;
            margin-bottom: 40px;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background: #ff9d2d;
            margin: 10px auto 0;
        }
        
        .info-box {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .info-icon {
            background: #7B4019;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        }
        
        .info-content h3 {
            font-size: 1.5rem;
            color: #333;
            margin-bottom: 10px;
        }
        
        .info-content p, .info-content a {
            font-size: 1.1rem;
            color: #555;
            line-height: 1.6;
            text-decoration: none;
            display: block;
            transition: color 0.3s;
        }
        
        .info-content a:hover {
            color:#7B4019;
        }
        
        .hours-list {
            list-style: none;
            padding: 0;
        }
        
        .hours-list li {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px dashed #ddd;
        }
        
        .hours-list li:last-child {
            border-bottom: none;
        }
        
        .social-contact {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-contact a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: #7B4019;
            color: white;
            border-radius: 50%;
            font-size: 18px;
            transition: background 0.3s;
        }
        
        .social-contact a:hover {
            background: #ff9d2d;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-control {
            width: 100%;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        
        .form-control:focus {
            border-color: #7B4019;
            outline: none;
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        .submit-btn {
            background: #7B4019;
            color: white;
            border: none;
            padding: 15px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-block;
        }
        
        .submit-btn:hover {
            background: #ff9d2d;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(235, 0, 41, 0.3);
        }
        
        .map-container {
            margin-top: 60px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            height: 450px;
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }
        
        @media (max-width: 768px) {
            .contact-hero h1 {
                font-size: 2.5rem;
            }
            
            .contact-hero p {
                font-size: 1.2rem;
            }
            
            .contact-wrapper {
                flex-direction: column;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }