 /* Contact Page Styles */
        .contact-hero {
            background: linear-gradient(rgba(30, 58, 138, 0.8), rgba(30, 58, 138, 0.8)), url('../img/ge.jfif');
            background-size: cover;
            background-position: center;
            padding: 100px 0;
            color: white;
            text-align: center;
        }
        
        .contact-content {
            padding: 80px 5%;
        }
        
        .section-titles {
            font-size: 2rem;
            color: #555;
            margin-bottom: 20px;
            font-weight: 600;
            text-align: center;
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            color: var(--primary-600);
            margin-bottom: 50px;
            text-align: center;
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 50px;
        }
        
        @media (min-width: 992px) {
            .contact-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        .contact-info-card {
            background: white;
            border-radius: 12px;
            padding: 40px;
           
        }
        
        .contact-info-title {
            font-size: 1.3rem;
            color: #1e3a8a;
            margin-bottom: 30px;
            font-weight: 600;
        }
        
        .contact-detail {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }
        
        .contact-icon-wrapper {
            width: 50px;
            height: 50px;
            background: var(--primary-100);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: var(--primary-700);
            font-size: 1.2rem;
            flex-shrink: 0;
        }
        
        .contact-text h4 {
            font-size: 1.1rem;
            color: #1e3a8a;
            margin-bottom: 5px;
            font-weight: 600;
        }
        
        .contact-text p {
            color: #4b5563;
            line-height: 1.6;
        }
        
        .contact-text a {
            color: #4b5563;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .contact-text a:hover {
            color: var(--primary-600);
        }
        
        .business-hours {
            margin-top: 30px;
        }
        
        .business-hours h4 {
            font-size: 1.1rem;
            color: #1e3a8a;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .hours-list {
            list-style: none;
        }
        
        .hours-list li {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
            padding-bottom: 8px;
            border-bottom: 1px solid #e5e7eb;
        }
        
        .hours-list li:last-child {
            border-bottom: none;
        }
        
        .day {
            color: #4b5563;
        }
        
        .time {
            color: #1e3a8a;
            font-weight: 500;
        }
        
        .contact-form-card {
            background: white;
            border-radius: 12px;
            padding: 40px;
          
        }
        
        .contact-form-title {
            font-size: 1.8rem;
            color: #1e3a8a;
            margin-bottom: 30px;
            font-weight: 600;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-label {
            display: block;
            margin-bottom: 8px;
            color: #374151;
            font-weight: 500;
        }
        
        .form-input,
        .form-textarea {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid #d1d5db;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }
        
        .form-input:focus,
        .form-textarea:focus {
            outline: none;
            border-color: var(--primary-500);
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
        }
        
        .form-textarea {
            min-height: 120px;
            resize: vertical;
        }
        
        .submit-btn {
            background: var(--primary-600);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.3s ease, transform 0.3s ease;
            display: inline-flex;
            align-items: center;
        }
        
        .submit-btn:hover {
            background: var(--primary-700);
            transform: translateY(-2px);
        }
        
        .submit-btn i {
            margin-left: 8px;
        }
        
        .map-container {
            margin-top: 80px;
            border-radius: 12px;
            overflow: hidden;
           
            height: 450px;
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }
            
            .contact-info-card,
            .contact-form-card {
                padding: 30px 20px;
            }
            
            .contact-detail {
                flex-direction: column;
            }
            
            .contact-icon-wrapper {
                margin-bottom: 10px;
            }
        }