:root {
    --primary: #0F172A;
    --secondary: #1D4ED8;
    --bg-light: #F8FAFC;
    --accent: #16A34A;
    --success-bg: #ecfdf5;
    --success-border: #10b981;
    --success-text: #065f46;
    --error-bg: #fef2f2;
    --error-border: #ef4444;
    --error-text: #991b1b;
}

body {
    background-color: var(--bg-light);
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--primary);
}

/* Navbar/Header */
.navbar-custom {
    background-color: var(--primary);
    padding: 1rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.logo-text {
    color: white;
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: -0.5px;
    margin: 0;
    line-height: 1.2;
}

.logo-text span {
    color: var(--accent);
    font-weight: 600;
}

.tagline-custom {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

/* Navigation */
.nav-custom {
    background-color: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.nav-custom .nav-link {
    color: var(--primary);
    font-weight: 500;
    padding: 1rem 1.2rem;
    transition: color 0.2s;
}

.nav-custom .nav-link:hover {
    color: var(--secondary);
}

.nav-custom .nav-link.active {
    color: var(--secondary);
    border-bottom: 3px solid var(--secondary);
}

/* Enhanced Alert Messages */
.notification-container {
    max-width: 1200px;
    margin: 1.5rem auto;
    padding: 0 1rem;
}

.alert-custom {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    animation: slideDown 0.5s ease-out;
    position: relative;
    overflow: hidden;
}

.alert-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-success-custom {
    background: var(--success-bg);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.alert-success-custom::before {
    background: var(--success-border);
}

.alert-error-custom {
    background: var(--error-bg);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.alert-error-custom::before {
    background: var(--error-border);
}

.alert-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.alert-success-custom .alert-icon {
    background: rgba(16, 185, 129, 0.15);
    color: var(--success-border);
}

.alert-error-custom .alert-icon {
    background: rgba(239, 68, 68, 0.15);
    color: var(--error-border);
}

.alert-content {
    flex: 1;
}

.alert-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.alert-success-custom .alert-title {
    color: var(--success-text);
}

.alert-error-custom .alert-title {
    color: var(--error-text);
}

.alert-message {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.alert-close {
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.5rem;
    margin: -0.5rem;
    border-radius: 8px;
    transition: background 0.2s;
    color: #9ca3af;
}

.alert-close:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #4b5563;
}

/* Page Header */
.page-header {
    margin: 2rem 0 2.5rem;
}

.page-header h2 {
    color: var(--primary);
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
}

.page-header p {
    color: #475569;
    font-size: 1.1rem;
    max-width: 800px;
}

/* Contact Layout */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-info-section,
.contact-form-section {
    background: white;
    border-radius: 32px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
    border: 1px solid #e9eef2;
}

.contact-info-section h3,
.contact-form-section h3 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.contact-info-section h3 i,
.contact-form-section h3 i {
    color: var(--secondary);
    font-size: 1.8rem;
}

/* Contact Methods */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    gap: 1.5rem;
    padding: 1.2rem;
    background: var(--bg-light);
    border-radius: 20px;
    transition: transform 0.2s;
}

.contact-method:hover {
    transform: translateY(-3px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(29, 78, 216, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 2rem;
    color: var(--secondary);
}

.contact-details h4 {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.contact-details p {
    color: #475569;
    margin-bottom: 0.2rem;
}

.contact-link {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.contact-link:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* Hours List */
.hours-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid #e2e8f0;
    color: #475569;
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list .day {
    font-weight: 600;
    color: var(--primary);
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
    display: block;
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.btn {
    background-color: var(--primary);
    color: white;
    padding: 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    width: 100%;
    transition: all 0.2s;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn:hover {
    background-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(29, 78, 216, 0.3);
}

.btn i {
    font-size: 1.1rem;
}

/* FAQ Section */
.faq-section {
    background: white;
    border-radius: 32px;
    padding: 2.5rem;
    margin-bottom: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
    border: 1px solid #e9eef2;
}

.faq-section h3 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.faq-section h3 i {
    color: var(--secondary);
    font-size: 1.8rem;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
}

.faq-question {
    background: var(--bg-light);
    padding: 1.2rem 1.5rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.faq-question:hover {
    background: #eef2f6;
}

.faq-question::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--secondary);
    transition: transform 0.2s;
}

.faq-question.active::after {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 1.5rem;
    background: white;
    border-top: 1px solid #e2e8f0;
    color: #475569;
    line-height: 1.6;
    display: none;
}

/* Footer */
.footer-custom {
    background-color: var(--primary);
    color: white;
    padding: 4rem 0 2rem;
    margin-top: 3rem;
}

.footer-title {
    color: white;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--accent);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.copyright a {
    color: #FFD700;
    text-decoration: none;
    font-weight: 500;
}

.copyright a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .contact-method {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .alert-custom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}