:root {
    --primary: #044168;
    --secondary: #0069AA;
    --accent: #00A9FF;
    --text-primary: #2C3E50;
    --border-color: #E5E9EF;
}
 

.bg-primary-custom {
    background-color: var(--primary);
}

.bg-secondary-custom {
    background-color: var(--secondary);
}

.bg-accent-custom {
    background-color: var(--accent);
}

.text-primary-custom {
    color: var(--primary) !important;
}

.text-secondary-custom {
    color: var(--secondary) !important;
}

.text-accent-custom {
    color: var(--accent) !important;
}

.btn-primary-custom {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: white;
}

.btn-accent-custom {
    background-color: var(--accent);
    border-color: var(--accent);
    color: white;
    transition: all 0.3s ease;
}

.btn-accent-custom:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
}

  

.page-header {
    background-color: var(--primary);
    color: white;
    padding: 100px 0 50px;
    position: relative;
    overflow: hidden;
}

.page-header-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: radial-gradient(var(--accent) 2px, transparent 2px);
    background-size: 30px 30px;
}

.contact-info-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--border-color);
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--accent);
}

.contact-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 169, 255, 0.1);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    color: var(--accent);
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-icon {
    background-color: var(--accent);
    color: white;
}

.contact-form {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
}

.form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 0.25rem rgba(0, 169, 255, 0.25);
}

.form-label {
    font-weight: 500;
}

.custom-input {
    border-radius: 5px;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.map-container {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent);
}

.faq-header {
    padding: 1.5rem;
    background-color: #f8f9fa;
    cursor: pointer;
    position: relative;
}

.faq-header h5 {
    margin: 0;
    padding-right: 30px;
}

.faq-header::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.faq-header.active::after {
    transform: translateY(-50%) rotate(180deg);
}

.faq-body {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-body.show {
    padding: 1.5rem;
    max-height: 500px;
}

 

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--accent);
    transform: translateY(-5px);
}

.newsletter-input {
    border-radius: 50px 0 0 50px !important;
    border: none;
    padding: 0.75rem 1.5rem;
    height: 50px;
}

.newsletter-btn {
    border-radius: 0 50px 50px 0 !important;
    background-color: var(--accent);
    border: none;
    height: 50px;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background-color: var(--secondary);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    animation: fadeInUp 0.6s ease-out forwards;
}

.animate-delay-1 {
    animation-delay: 0.2s;
}

.animate-delay-2 {
    animation-delay: 0.4s;
}

.animate-delay-3 {
    animation-delay: 0.6s;
}

/* Mobile Responsive Adjustments */
@media (max-width: 991.98px) {
    .contact-form {
        margin-top: 2rem;
    }
}

@media (max-width: 767.98px) {
    .navbar-collapse {
        background-color: white;
        padding: 1rem;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        margin-top: 1rem;
    }
    
    .contact-info-card {
        margin-bottom: 1.5rem;
    }
    
    .footer {
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
        margin-bottom: 2rem;
    }
}