
/* Global Variables - Matching main site */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #1000BE;
    --accent-color: #e74c3c;
    --light-color: #f8f9fa;
    --dark-color: #000000;
    --text-color: #000000;
    --text-light: #00000096;
    --success-color: #27ae60;
    --warning-color: #f39c12;
    --error-color: #e74c3c;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    background-color: #ffffff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/*========================================
    HEADER / NAVIGATION 
  ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: translateY(-2px);
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    margin-left: 40px;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary-color);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--secondary-color);
}

.nav-cta {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 30px;
}

.nav-cta:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--text-color);
    transition: all 0.3s ease;
}

/* ========================================
    PAGE HEADER
   ======================================== */
.page-header {
    margin-top: 80px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2980b9 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.header-content {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 20px;
    opacity: 0.95;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
    margin-top: 20px;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.breadcrumb a:hover {
    opacity: 1;
    text-decoration: underline;
}

.breadcrumb i {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* ========================================
    CONTACT INFO CARDS
   ======================================== */
.contact-info-section {
    padding: 80px 0 60px;
    background-color: white;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.info-card {
    background: var(--light-color);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary-color);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-color), #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.info-card:hover .icon-wrapper {
    transform: rotate(360deg);
}

.icon-wrapper i {
    font-size: 1.8rem;
    color: white;
}

.info-card h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 10px;
}

.info-card p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.contact-link {
    display: block;
    color: var(--secondary-color);
    font-weight: 600;
    margin: 8px 0;
    text-decoration: none;
    transition: all 0.3s;
}

.contact-link:hover {
    color: #2980b9;
    transform: translateX(5px);
}

.info-card address {
    font-style: normal;
    line-height: 1.8;
}

.hours-list {
    margin-top: 15px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.95rem;
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item span:first-child {
    font-weight: 600;
    color: var(--text-color);
}

.hours-item span:last-child {
    color: var(--text-light);
}



/* ========================================
    FAQ SECTION
   ======================================== */
.faq-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px 25px;
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--light-color);
}

.faq-question i {
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 20px 25px 20px;
    color: var(--text-light);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* ========================================
    CTA SECTION
   ======================================== */
.cta-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2980b9 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button.primary-large,
.cta-button.secondary-large {
    padding: 20px 48px;
    font-size: 1.5rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-button.primary-large {
    background: white;
    color: var(--secondary-color);
    border: none;
}

.cta-button.primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cta-button.secondary-large {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.secondary-large:hover {
    background: white;
    color: var(--secondary-color);
    transform: translateY(-3px);
}

/* ========================================
    FOOTER 
   ======================================== */
.footer {
    background-color: #0C0C0C;
    color: white;
    padding: 80px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand h2 {
    color: white;
    margin-bottom: 20px;
    font-size: 2rem;
}

.footer-brand p {
    color: #bdc3c7;
}

.footer-links h3,
.footer-services h3,
.footer-social h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul,
.footer-services ul {
    list-style: none;
}

.footer-links li,
.footer-services li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-services a {
    color: #bdc3c7;
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--secondary-color);
}

.footer-social .social-icons a {
    background-color: rgba(255, 255, 255, 0.1);
}

.footer-social .social-icons a i {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #bdc3c7;
    font-size: 0.9rem;
}

/* ========================================
    LOADING OVERLAY
   ======================================== */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 10000;
}

.loading-overlay.active {
    display: flex;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-overlay p {
    color: white;
    margin-top: 20px;
    font-size: 1.1rem;
}

/* ========================================
    RESPONSIVE STYLES
   ======================================== */

/* Tablet Landscape (992px - 1200px) */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
}

/* Tablet Portrait (768px - 992px) */
@media (max-width: 992px) {
    .nav-links li {
        margin-left: 20px;
    }
    
    .page-header {
        padding: 60px 0;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .form-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-container {
        padding: 30px;
    }
    
    .info-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Landscape & Small Tablets (576px - 768px) */
@media (max-width: 768px) {
    .header {
        padding: 12px 0;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .hamburger {
        display: block;
        z-index: 1001;
    }
    
    .nav-links {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        padding: 30px 0;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
        margin-left: 0;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 0;
        padding: 15px 0;
        border-bottom: 1px solid #f0f0f0;
        width: 100%;
    }
    
    .nav-links a {
        display: block;
        padding: 10px 20px;
    }
    
    .nav-cta {
        margin: 15px 20px 0;
        width: calc(100% - 40px);
    }
    
    .page-header {
        padding: 50px 0;
        margin-top: 60px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .contact-info-section {
        padding: 60px 0 40px;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .info-card {
        padding: 30px 20px;
    }
    
    .contact-form-section {
        padding: 60px 0;
    }
    
    .contact-form-container {
        padding: 25px 20px;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .map-container {
        height: 350px;
    }
    
    .faq-section,
    .cta-section,
    .map-section {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button.primary-large,
    .cta-button.secondary-large {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-social .social-icons {
        justify-content: center;
    }
}

/* iPhone SE / Small Mobile (320px - 576px) */
@media (max-width: 576px) {
    .page-header h1 {
        font-size: 1.75rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .form-intro h2 {
        font-size: 1.85rem;
    }
    
    .contact-form-container {
        padding: 20px 15px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 11px 13px;
        font-size: 0.95rem;
    }
    
    .cta-button.primary {
        padding: 13px 30px;
        font-size: 1rem;
    }
    
    .icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .icon-wrapper i {
        font-size: 1.5rem;
    }
    
    .info-card h3 {
        font-size: 1.3rem;
    }
    
    .map-container {
        height: 300px;
    }
    
    .faq-question {
        padding: 15px 20px;
        font-size: 0.95rem;
    }
    
    .faq-answer p {
        padding: 0 20px 15px;
        font-size: 0.9rem;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .social-connect {
        padding: 20px;
    }
}

/* Ultra-small devices (iPhone SE 1st gen, etc.) */
@media (max-width: 375px) {
    .page-header h1 {
        font-size: 1.6rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .breadcrumb {
        font-size: 0.85rem;
    }
}

/* Landscape orientation fixes */
@media (max-height: 500px) and (orientation: landscape) {
    .page-header {
        padding: 40px 0;
    }
    
    .nav-links {
        max-height: 70vh;
    }
}

/* Touch device improvements */
@media (hover: none) and (pointer: coarse) {
    .cta-button,
    button,
    a {
        min-height: 44px;
    }
    
    .nav-links a {
        padding: 15px 20px;
    }
    
    .info-card:hover {
        transform: none;
    }
    
    .faq-question {
        -webkit-tap-highlight-color: rgba(16, 0, 190, 0.1);
    }
}

/* Print styles */
@media print {
    .header,
    .hamburger,
    .nav-links,
    .cta-button,
    .page-header,
    .social-icons,
    .cta-section,
    .loading-overlay {
        display: none !important;
    }
    
    .contact-info-section,
    .contact-form-section {
        padding: 20px 0;
    }
    
    .info-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .map-container {
        display: none;
    }
}

/* Accessibility improvements */
.skip-to-main {
    position: absolute;
    left: -9999px;
    z-index: 10001;
    padding: 10px 20px;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
}

.skip-to-main:focus {
    left: 50%;
    transform: translateX(-50%);
    top: 10px;
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .info-card {
        border: 3px solid var(--text-color);
    }
    
    .cta-button.primary {
        border: 2px solid var(--text-color);
    }
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
    /* Uncomment if you want dark mode support
    body {
        background-color: #1a1a1a;
        color: #ffffff;
    }
    
    .header {
        background-color: #2c2c2c;
    }
    
    .info-card,
    .contact-form-container {
        background-color: #2c2c2c;
        color: #ffffff;
    }
    */
}

/* Success/Error states for form */
.form-group.success input,
.form-group.success select,
.form-group.success textarea {
    border-color: var(--success-color);
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: var(--error-color);
}

/* Animation classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in-left {
    animation: slideInLeft 0.5s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slideInRight 0.5s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Pulse animation for icons */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.icon-wrapper:hover {
    animation: pulse 0.6s ease-in-out;
}

/* Notification banner */
.notification-banner {
    position: fixed;
    top: 80px;
    right: 20px;
    background: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    max-width: 400px;
    display: none;
    align-items: center;
    gap: 15px;
    animation: slideInRight 0.3s ease-out;
}

.notification-banner.show {
    display: flex;
}

.notification-banner.success {
    border-left: 4px solid var(--success-color);
}

.notification-banner.error {
    border-left: 4px solid var(--error-color);
}

.notification-banner.warning {
    border-left: 4px solid var(--warning-color);
}

.notification-banner i {
    font-size: 1.5rem;
}

.notification-banner.success i {
    color: var(--success-color);
}

.notification-banner.error i {
    color: var(--error-color);
}

.notification-banner.warning i {
    color: var(--warning-color);
}

.notification-banner .close-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
    font-size: 1.2rem;
    padding: 0;
    margin-left: auto;
}

.notification-banner .close-btn:hover {
    color: #333;
}

/* Utility classes */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #2980b9;
}