
        /* Page Header */
        .page-header {
            background: linear-gradient(rgba(35, 46, 60, 0.8), rgba(35, 46, 60, 0.8)), url('../img/contact/contact_hero.jpg') no-repeat center center/cover;
            padding: 120px 0 80px;
            color: var(--white);
            text-align: center;
        }
        
        .breadcrumb {
            background: transparent;
            justify-content: center;
        }
        
        .breadcrumb-item a {
            color: var(--sky-blue);
        }
        
        .breadcrumb-item.active {
            color: var(--white);
        }
        
        .breadcrumb-item+.breadcrumb-item::before {
            color: var(--white);
        }
        
        /* Section Padding */
        section {
            padding: 80px 0;
        }
        
        .section-title {
            margin-bottom: 50px;
            position: relative;
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background-color: var(--deep-blue);
            margin-top: 15px;
        }
        
        /* Contact Section */
        .contact-info {
            background: var(--white);
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            height: 100%;
        }
        
        .contact-icon {
            width: 60px;
            height: 60px;
            background: var(--deep-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: var(--white);
            font-size: 1.5rem;
        }
        
        .contact-details h4 {
            margin-bottom: 15px;
            color: var(--dark-navy);
        }
        
        .contact-details p {
            color: var(--gray);
            margin-bottom: 5px;
        }
        
        /* Contact Form Styling Enhancement */
.contact-form {
    background: var(--white);
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(51, 111, 148, 0.1);
}

.contact-form:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--deep-blue), var(--sky-blue));
    border-radius: 15px 15px 0 0;
}

.contact-form h3 {
    color: var(--dark-navy);
    margin-bottom: 30px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
    text-align: center;
}

.contact-form h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--deep-blue);
    border-radius: 3px;
}

.form-label {
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 8px;
    font-size: 0.95rem;
    display: block;
}

.form-control {
    border-radius: 8px;
    padding: 14px 18px;
    border: 1.5px solid #e1e5e9;
    transition: all 0.3s ease;
    font-size: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    width: 100%;
}

.form-control:focus {
    border-color: var(--deep-blue);
    box-shadow: 0 0 0 0.2rem rgba(51, 111, 148, 0.15);
    transform: translateY(-2px);
}

.form-control::placeholder {
    color: #a0a7b0;
    opacity: 1;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
    line-height: 1.6;
}

/* Submit Button Enhancement */
.btn-primary {
    background: linear-gradient(135deg, var(--deep-blue), var(--sky-blue));
    border: none;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(51, 111, 148, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
    min-width: 180px;
}

.btn-primary:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(135deg, var(--sky-blue), var(--deep-blue));
    transition: all 0.4s ease;
    z-index: -1;
}

.btn-primary:hover:before {
    width: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(51, 111, 148, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px);
}

/* Form Row Spacing */
.row .mb-3 {
    margin-bottom: 1.5rem !important;
}

/* Loading State */
.btn-loading {
    pointer-events: none;
    opacity: 0.8;
}

.btn-loading:after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-radius: 50%;
    border-top-color: #ffffff;
    animation: spin 1s ease infinite;
    margin-left: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-form {
        padding: 35px 25px;
    }
    
    .contact-form h3 {
        font-size: 1.5rem;
    }
    
    .btn-primary {
        padding: 12px 30px;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .contact-form {
        padding: 30px 20px;
    }
    
    .contact-form h3 {
        font-size: 1.4rem;
    }
    
    .form-control {
        padding: 12px 15px;
    }
}
        
        /* Map Section */
        .map-container {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            height: 400px;
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        /* FAQ Section */
        .accordion-item {
            border: none;
            margin-bottom: 15px;
            border-radius: 10px !important;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        
        .accordion-button {
            background: var(--white);
            border: none;
            padding: 20px;
            font-weight: 600;
            color: var(--dark-navy);
            border-radius: 10px 10px 0 0;
        }
        
        .accordion-button:not(.collapsed) {
            background: var(--deep-blue);
            color: var(--white);
            box-shadow: none;
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border-color: transparent;
        }
        
        .accordion-body {
            padding: 20px;
            background: #f8f9fa;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .page-header h1 {
                font-size: 2.5rem;
            }
            
            .navbar-collapse {
                background-color: var(--dark-navy);
                padding: 20px;
                border-radius: 10px;
                margin-top: 15px;
            }
        }
        
        @media (max-width: 768px) {
            section {
                padding: 60px 0;
            }
            
            .page-header h1 {
                font-size: 2rem;
            }
            
            .section-title {
                margin-bottom: 30px;
            }
            
            .contact-form {
                padding: 30px;
            }
            
            .contact-info {
                margin-bottom: 30px;
            }
        }
        
        @media (max-width: 576px) {
            .page-header {
                padding: 100px 0 60px;
            }
            
            .page-header h1 {
                font-size: 1.8rem;
            }
            
            .contact-form {
                padding: 20px;
            }
            
            .btn-primary {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
        }