        /* Theme Colors - Using CSS Variables from main theme */
        :root {
            --primary-color: #f1913d;
            --primary-light: #fef7f1;
            --primary-dark: #e67e22;
            --secondary-color: #2c2e33;
            --accent-color: #06a788;
            --text-color: #5c5e61;
            --heading-color: #2c2e33;
            --border-color: #ececec;
            --background-light: #f8f9fa;
            --white: #ffffff;
        }
                .blog-hero {
            background: linear-gradient(135deg, rgb(241, 145, 61) 0%, rgb(214, 116, 28) 50%, rgb(139, 63, 0) 100%);
            padding: 90px 0;
            position: relative;
            overflow: hidden;
        }

        .blog-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: asset('{{ asset("images/section/bg-pattern.png") }}') repeat;
            opacity: 0.1;
        }

        .blog-hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
        }

        .blog-hero h1 {
            font-size: 4rem;
            font-weight: 800;
            color: white;
            text-shadow: rgba(0, 0, 0, 0.15) 0px 4px 8px;
            letter-spacing: -2.5px;
        }

        .blog-hero p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.95);
            max-width: 700px;
            line-height: 1.7;
            font-weight: 400;
            margin: 0px auto;
        }
                @media (max-width: 768px) {
            .blog-hero h1 {
                font-size: 2.5rem;
            }

            .blog-hero p {
                font-size: 1rem;
            }

            .blog-sidebar {
                margin-top: 50px;
                position: static;
            }

            .blog-meta {
                flex-wrap: wrap;
                gap: 10px;
            }
        }
        .contact-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/hero-bg.jpg'), url('images/hero-bg.svg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            padding: 80px 0;
            text-align: center;
            position: relative;
            min-height: 400px;
            display: flex;
            align-items: center;
        }
        
        /* Fallback background if image doesn't load */
        .contact-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            z-index: 1;
        }
        
        .hero-content {
            position: relative;
            z-index: 3;
            width: 100%;
            animation: fadeInUp 1s ease-out;
            padding: 20px;
            border-radius: 10px;
            background: rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Contact Section Styling */
        .contact-section {
            padding: 80px 0;
            background: var(--white);
        }
        
        .contact-card {
            background: var(--white);
            padding: 40px 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            height: 100%;
            border: 1px solid var(--border-color);
        }
        
        .contact-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .contact-card .icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, rgb(241, 145, 61) 0%, rgb(214, 116, 28) 50%, rgb(139, 63, 0) 100%);            
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: white;
            font-size: 2rem;
        }
        
        .contact-card h4 {
            color: var(--heading-color);
            font-size: 1.4rem;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .contact-card p {
            color: var(--text-color);
            line-height: 1.6;
            margin: 0;
        }
        
        /* Form Section Styling */
        .form-section {
            padding: 80px 0;
            background: var(--background-light);
        }
        
        .form-container {
            background: var(--white);
            padding: 50px;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
            border: 1px solid var(--border-color);
        }
        
        .form-title {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .form-title h2 {
            color: var(--heading-color);
            font-size: 2.5rem;
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        .form-title p {
            color: var(--text-color);
            font-size: 16px;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--heading-color);
            font-weight: 600;
            font-size: 16px !important;
        }
        
        .form-control {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid var(--border-color);
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: var(--white);
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--primary-color);
            background: var(--white);
            box-shadow: 0 0 0 3px rgba(241, 145, 61, 0.1);
        }
        
        .form-control.select {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
            background-position: right 12px center;
            background-repeat: no-repeat;
            background-size: 16px;
            padding-right: 40px;
            font-size: 16px;
        }
        
        .btn-submit {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
            color: white;
            border: none;
            padding: 18px 40px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(241, 145, 61, 0.4);
        }
        
        .btn-submit:disabled {
            opacity: 0.7;
            cursor: not-allowed;
            transform: none;
        }
        
        /* Success and Error Messages */
        .success-message, .error-message {
            display: none;
            text-align: center;
            padding: 30px;
            border-radius: 15px;
            margin-top: 30px;
        }
        
        .success-message {
            background: #d4edda;
            border: 1px solid #c3e6cb;
            color: #155724;
        }
        
        .error-message {
            background: #f8d7da;
            border: 1px solid #f5c6cb;
            color: #721c24;
        }
        
        /* Info Section Styling */
        .info-section {
            background: var(--secondary-color);
            color: white;
            padding: 80px 0;
        }
        
        .info-card {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .info-card .icon {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .info-card h5 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .info-card p {
            opacity: 0.9;
            line-height: 1.6;
        }
        
        /* Map Section Styling */
        .map-section {
            padding: 80px 0;
            background: var(--background-light);
        }
        
        .map-container {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .map-placeholder {
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            text-align: center;
        }
        
        /* FAQ Section Styling */
        .faq-section {
            padding: 80px 0;
            background: var(--white);
        }
        
        .faq-item {
            margin-bottom: 20px;
            border: 1px solid var(--border-color);
            border-radius: 10px;
            overflow: hidden;
        }
        
        .faq-question {
            background: var(--white);
            padding: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            width: 100%;
            text-align: left;
            font-weight: 600;
            color: var(--heading-color);
                background: #e78126 !important;
        }
        
        .faq-question:hover {
            background: var(--primary-light);
        }
        
        .faq-answer {
            display: none;
            padding: 20px;
            background: var(--background-light);
            color: var(--text-color);
            line-height: 1.6;
            border-top: 1px solid var(--border-color);
        }
        
        /* Loading Spinner */
        .loading-spinner {
            display: inline-block;
            width: 16px;
            height: 16px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top-color: white;
            animation: spin 1s ease-in-out infinite;
            margin-right: 8px;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        /* Responsive design for hero section */
        @media (max-width: 768px) {
            .contact-hero {
                padding: 60px 0;
                min-height: 300px;
                background-attachment: scroll;
            }
            
            .contact-hero h1 {
                font-size: 2.5rem;
            }
            
            .contact-hero p {
                font-size: 1rem;
            }
            
            .hero-content {
                padding: 15px;
                margin: 0 10px;
            }
            
            .form-container {
                padding: 30px 20px;
            }
            
            .contact-card {
                padding: 30px 20px;
                margin-bottom: 30px;
            }
        }
        
        /* Hover effects for hero section */
        .contact-hero:hover .hero-content {
            background: rgba(0, 0, 0, 0.2);
            transform: scale(1.02);
            transition: all 0.3s ease;
        }
        
        .contact-hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
            position: relative;
            z-index: 2;
        }
        
        .contact-hero p {
            font-size: 1.2rem;
            opacity: 1;
            max-width: 600px;
            margin: 0 auto;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
            position: relative;
            z-index: 2;
            font-weight: 500;
        }
        
        .contact-section {
            padding: 80px 0;
            background: #f8f9fa;
        }
        
        .contact-card {
            background: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            height: 100%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        .contact-card .icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, rgb(241, 145, 61) 0%, rgb(214, 116, 28) 50%, rgb(139, 63, 0) 100%) !important;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: white;
            font-size: 2rem;
        }
        
        .contact-card h4 {
            color: #333;
            font-weight: 600;
            margin-bottom: 15px;
            text-align: center;
        }
        
        .contact-card p {
            color: #666;
            text-align: center;
            line-height: 1.6;
        }
        
        .info-section {
            background: #2c3e50;
            color: white;
            padding: 60px 0;
        }
        
        .info-card {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .info-card .icon {
            font-size: 3rem;
            color: #667eea;
            margin-bottom: 20px;
        }
        
        .info-card h5 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .info-card p {
            opacity: 0.9;
            line-height: 1.6;
        }
        
        .map-section {
            padding: 80px 0;
            background: #f8f9fa;
        }
        
        .map-container {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }
        
        .faq-section {
            padding: 80px 0;
            background: white;
        }
        
        .faq-item {
            background: #f8f9fa;
            border-radius: 15px;
            margin-bottom: 20px;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .faq-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .faq-question {
            background: white;
            padding: 25px 30px;
            cursor: pointer;
            border-bottom: 1px solid #e1e5e9;
            transition: all 0.3s ease;
        }
        
        .faq-question:hover {
            background: #667eea;
            color: white;
        }
        
        .faq-question h4 {
            margin: 0;
            font-size: 16px;
            font-weight: 600;
            color: #ffffff;
        }
        
        .faq-answer {
            padding: 25px 30px;
            color: #666;
            line-height: 1.6;
        }
        
        .success-message {
            background: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
            border-radius: 10px;
            padding: 20px;
            margin-top: 20px;
            text-align: center;
            display: none;
        }
        
        .error-message {
            background: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
            border-radius: 10px;
            padding: 20px;
            margin-top: 20px;
            text-align: center;
            display: none;
        }
        
        .loading-spinner {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255,255,255,.3);
            border-radius: 50%;
            border-top-color: #fff;
            animation: spin 1s ease-in-out infinite;
            margin-right: 10px;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        @media (max-width: 768px) {
            .contact-hero h1 {
                font-size: 2.5rem;
            }
            
            .form-container {
                padding: 30px 20px;
            }
            
            .contact-card {
                margin-bottom: 30px;
            }
        }

        /* Icon styling for Font Awesome icons */
        .contact-info i,
        .feature-item i,
        .contact-form i {
            font-size: 1.2rem;
            margin-right: 10px;
            color: var(--primary-color);
            width: 20px;
            text-align: center;
        }
        
        .contact-info .icon-large i {
            font-size: 2.5rem;
            margin-right: 15px;
            color: var(--primary-color);
            width: auto;
        }
        
        .feature-item i {
            font-size: 2rem;
            margin-right: 15px;
            color: var(--secondary-color);
            width: auto;
        }
        
        .contact-form .form-group i {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #666;
            font-size: 1rem;
        }
        
        .contact-form .form-group {
            position: relative;
        }
        
        .contact-form .form-control {
            padding-left: 45px;
        }
        
        /* Hover effects for icons */
        .contact-info:hover i,
        .feature-item:hover i {
            transform: scale(1.1);
            transition: transform 0.3s ease;
        }
        
        /* Responsive icon sizing */
        @media (max-width: 768px) {
            .contact-info i,
            .feature-item i {
                font-size: 1rem;
                margin-right: 8px;
            }
            
            .contact-info .icon-large i {
                font-size: 2rem;
                margin-right: 12px;
            }
            
            .feature-item i {
                font-size: 1.5rem;
                margin-right: 12px;
            }
        }
        
        /* Ensure icons are visible */
        .fas, .far, .fab {
            display: inline-block;
            font-style: normal;
            font-variant: normal;
            text-rendering: auto;
            line-height: 1;
        }
        
        /* Specific icon positioning for contact form */
        .contact-form .form-group .fas {
            pointer-events: none;
            z-index: 2;
        }
        
        /* Icon colors for different sections */
        .contact-info .fas {
            color: var(--primary-color);
        }
        
        .feature-item .fas {
            color: var(--secondary-color);
        }
        
        .contact-form .fas {
            color: #666;
        }
        
        /* Icon animations */
        @keyframes iconPulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }
        
        .contact-info:hover .fas,
        .feature-item:hover .fas {
            animation: iconPulse 0.6s ease-in-out;
        }
/* Map Section */
.map-title {
    color: #333;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
}

.map-subtitle {
    color: #666;
    font-size: 1.1rem;
}

.map-iframe {
    border: 0;
}

/* FAQ Section */
.faq-title {
    color: #333;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
}

.faq-subtitle {
    color: #666;
    font-size: 1.1rem;
}

.faq-answer {
    display: none; /* hidden by default, shown via JS */
}
