:root {
    /* Color Palette */
    --burgundy: #b30464;
    --burgundy-dark: #8a024c;
    --burgundy-light: #d1067a;
    --white: #FFFFFF;
    --charcoal: #2D3748;
    --gray-medium: #718096;
    --gray-light: #E2E8F0;
    --gray-bg: #FDFDFD;
    --gold: #FFFFFF;
    --gold-light: #FFFFFF;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15), 0 4px 10px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);

    /* Transitions */
    --transition-fast: all 0.2s ease;
    --transition-smooth: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.lower-element {
    margin-top: 16vh !important;
}

.bye-bottom {
    margin-bottom: 4vh !important;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--charcoal);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
    font-weight: 400;
}

/* Utility Classes */
.text-burgundy {
    color: var(--burgundy) !important;
}

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

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

.bg-burgundy {
    background-color: var(--burgundy) !important;
}

.bg-gold {
    background-color: var(--gold) !important;
}

/* Navigation */
.navbar {
    background: var(--burgundy);
    box-shadow: var(--shadow-md);
    padding: 1.5rem 0;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    padding: 0.8rem 0;
    background: rgba(179, 4, 100, 0.95);
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white) !important;
    transition: var(--transition-fast);
}

.navbar-brand:hover {
    color: var(--white) !important;
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    margin: 0 0.2rem;
    border-radius: 0.375rem;
    transition: var(--transition-fast);
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--white) !important;
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--white);
    transition: var(--transition-fast);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

.btn-login {
    border: 2px solid var(--white);
    border-radius: 50px !important;
    padding: 0.5rem 1.5rem !important;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.btn-login:hover {
    background-color: var(--white);
    color: var(--burgundy) !important;
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

/* Buttons */
.btn-primary {
    background: var(--burgundy);
    border: none;
    border-radius: 0.5rem;
    padding: 0.8rem 2.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background: var(--burgundy-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}


.btn-secondary {
    border: 2px solid var(--burgundy-dark);
    background-color: white;
    color: var(--charcoal);
    border-radius: 0.5rem;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    border-radius: 0.5rem;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--burgundy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-primary {
    border: 2px solid var(--burgundy);
    color: var(--burgundy);
    border-radius: 0.5rem;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.btn-outline-primary:hover {
    background-color: var(--burgundy);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Flash Messages */
.flash-messages {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1050;
    width: 90%;
    max-width: 500px;
}

.alert {
    border-radius: 0.5rem;
    box-shadow: var(--shadow-lg);
    border: none;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(179, 4, 100, 0.704) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: -1;
}

.hero-content {
    color: var(--white);
    z-index: 1;
    padding: 2rem 0;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    letter-spacing: -1px;
}

.text-highlight {
    color: #ffffff;
    position: relative;
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
}

.text-accent {
    background: linear-gradient(to right, white, #b30464);
    background-clip: text;
    color: transparent;
    text-shadow: rgba(229, 255, 0, 0.251) 2px 4px 25px;
    font-weight: 900;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.7;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.hero-stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(to right, white, #b30464);
    background-clip: text;
    color: transparent;
    text-shadow: rgba(229, 255, 0, 0.251) 2px 4px 25px;
    line-height: 1;
}

.stat-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin-top: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons .btn {
    margin: 0.5rem 0.5rem 0.5rem 0;
    font-size: 1.1rem;
}

/* Page Header */
.page-header {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 76px;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.page-header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(179, 4, 100, 0.85) 0%, rgba(45, 55, 72, 0.7) 100%);
    z-index: -1;
}

.page-header-content {
    color: var(--white);
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Sections */
.py-5 {
    padding: 8rem 0;
}

.section-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 4rem;
    text-align: center;
    letter-spacing: -0.8px;
    line-height: 1.1;
}

.section-subtitle {
    font-size: 1.4rem;
    color: var(--gray-medium);
    text-align: center;
    margin-bottom: 6rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 400;
}

/* Features Section */
.features {
    background-color: var(--white);
    padding: 9rem 0;
}

.feature-card {
    background: var(--gray-bg);
    padding: 5rem 4rem;
    border-radius: 1.5rem;
    text-align: center;
    height: 100%;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-light);
    margin-bottom: 4rem;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--burgundy);
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: var(--burgundy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: var(--transition-smooth);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-lg);
}

.feature-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--gray-medium);
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 8rem 0;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 3rem;
}

.about-content h2 {
    text-align: center;
}

.stats-row {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
    margin: 3rem 0;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 140px;
    padding: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-medium);
    font-weight: 500;
}

.about-image img {
    transition: var(--transition-smooth);
}

.about-image img:hover {
    transform: scale(1.05);
}

/* Services Preview */
.service-preview-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 1rem;
    text-align: center;
    height: 100%;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-light);
    margin-bottom: 2rem;
}

.service-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--burgundy);
}

.service-preview-card .service-icon {
    width: 70px;
    height: 70px;
    background: var(--burgundy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition-smooth);
}

.service-preview-card .service-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.service-preview-card:hover .service-icon {
    transform: scale(1.1);
}

/* Service Cards (Full Services Page) */
.service-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-light);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--burgundy);
}

.service-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.service-header .service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.service-header .service-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.service-header h3 {
    margin-bottom: 0;
    color: var(--charcoal);
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-light);
    transition: var(--transition-fast);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li:hover {
    padding-left: 0.5rem;
    color: var(--burgundy);
}

/* Additional Services Cards */
.additional-service-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 1rem;
    text-align: center;
    height: 100%;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-light);
}

.additional-service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--burgundy);
}

.additional-service-card .service-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.additional-service-card .service-icon i {
    font-size: 1.25rem;
    color: var(--white);
}

/* Process Steps */
.process-step {
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
}

.step-number {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 2;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--gray-bg);
    border: 3px solid var(--gray-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto 1rem;
    transition: var(--transition-smooth);
}

.step-icon i {
    font-size: 2rem;
    color: var(--burgundy);
}

.process-step:hover .step-icon {
    background: var(--burgundy);
    border-color: var(--burgundy);
    transform: scale(1.1);
}

.process-step:hover .step-icon i {
    color: var(--white);
}

/* CTA Sections */
.cta,
.services-cta {
    position: relative;
    padding: 5rem 0;
    color: var(--white);
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: -1;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: var(--charcoal);
}

.cta-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    color: #080808;
}

/* MVV Cards (Mission, Vision, Values) */
.mvv-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 1rem;
    text-align: center;
    height: 100%;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-light);
}

.mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--burgundy);
}

.mvv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.mvv-icon i {
    font-size: 2rem;
    color: var(--white);
}

.values-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.values-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.values-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--burgundy);
    font-weight: bold;
}

/* Team Cards */
.team-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    height: 100%;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-light);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--burgundy);
}

.team-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gray-medium) 0%, var(--charcoal) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.team-image i {
    font-size: 2rem;
    color: var(--white);
}

/* Certification Cards */
.certification-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    height: 100%;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-light);
}

.certification-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--burgundy);
}

.cert-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.cert-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

/* Technology Features */
.tech-features .tech-feature {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Provider Categories */
.provider-category-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    height: 100%;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-light);
}

.provider-category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--burgundy);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.category-icon i {
    font-size: 2rem;
    color: var(--white);
}

.category-services {
    list-style: none;
    padding: 0;
}

.category-services li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-light);
    color: var(--gray-medium);
    font-weight: 500;
}

.category-services li:last-child {
    border-bottom: none;
}

/* Emergency Cards */
.emergency-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    height: 100%;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-light);
    position: relative;
    overflow: hidden;
}

.emergency-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--burgundy) 0%, #ff4fa3 100%);
}

.emergency-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: #ff4fa3;
}

.emergency-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff4fa3 0%, #b30464 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.emergency-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.emergency-time {
    background: var(--gray-bg);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: var(--burgundy);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Quality Features */
.quality-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.quality-feature .feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.quality-feature .feature-icon i {
    font-size: 1.25rem;
    color: var(--white);
}

.feature-content h5 {
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

.feature-content p {
    margin-bottom: 0;
    color: var(--gray-medium);
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
}

.form-label {
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    border: 2px solid var(--gray-light);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--burgundy);
    box-shadow: 0 0 0 0.2rem rgba(139, 21, 56, 0.25);
}

/* Contact Info */
.contact-info {
    background: var(--gray-bg);
    padding: 2rem;
    border-radius: 1rem;
    height: fit-content;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.25rem;
    color: var(--white);
}

.contact-details h5 {
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

.contact-details p {
    margin-bottom: 0;
    color: var(--gray-medium);
}

.contact-link {
    color: var(--burgundy);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
}

.contact-link:hover {
    color: var(--burgundy-dark);
    text-decoration: underline;
}

/* Map */
.map-container {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-placeholder iframe {
    border-radius: 1rem;
}

.transport-info {
    background: var(--white);
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-sm);
}

.transport-info i {
    font-size: 2rem;
    display: block;
}

.transport-info h6 {
    margin: 0.5rem 0;
    color: var(--charcoal);
}

/* FAQ */
.accordion-item {
    border: 1px solid var(--gray-light);
    border-radius: 0.5rem !important;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
}

.accordion-button {
    background-color: var(--white);
    color: var(--charcoal);
    font-weight: 600;
    border: none;
    border-radius: 0.5rem !important;
}

.accordion-button:not(.collapsed) {
    background-color: var(--burgundy);
    color: var(--white);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(139, 21, 56, 0.25);
}

/* Login Section */
.login-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.login-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.login-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.login-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 21, 56, 0.9) 0%, rgba(45, 55, 72, 0.8) 100%);
    z-index: -1;
}

.login-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-light);
}

.login-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.login-logo i {
    font-size: 2rem;
    color: var(--white);
}

.input-group-text {
    background-color: var(--gray-bg);
    border: 2px solid var(--gray-light);
    border-right: none;
}

.input-group .form-control {
    border-left: none;
}

.input-group:focus-within .input-group-text {
    border-color: var(--burgundy);
    background-color: rgba(179, 4, 100, 0.1);
}

.login-links a {
    color: var(--burgundy);
    text-decoration: none;
    font-weight: 500;
}

.login-links a:hover {
    text-decoration: underline;
}

.portal-features .feature-item {
    background: var(--gray-bg);
    padding: 1rem 0.5rem;
    border-radius: 0.5rem;
    transition: var(--transition-fast);
}

.portal-features .feature-item:hover {
    background: rgba(179, 4, 100, 0.1);
    transform: scale(1.05);
}

.portal-features .feature-item i {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.portal-features .feature-item small {
    font-weight: 500;
    color: var(--charcoal);
}

.demo-notice {
    max-width: 500px;
    margin: 0 auto;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    text-decoration: none;
    z-index: 9999;
    transition: var(--transition-smooth);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #20B856;
    transform: scale(1.05);
    color: white;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Footer */
.footer {
    background: #080808;
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer h5,
.footer h6 {
    color: var(--white);
    margin-bottom: 2rem;
    font-weight: 600;
}

.footer p,
.footer li {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.5rem 0;
}

.footer-nav li {
    margin-bottom: 1rem;
    width: 100%;
}

.footer-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transition-fast);
    padding: 0.3rem 0;
    font-weight: 400;
}

.footer-link:hover {
    color: var(--white);
    padding-left: 5px;
}



/* Provider Requirements */
.provider-requirements .requirement-item {
    background: var(--gray-bg);
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: center;
    transition: var(--transition-fast);
}

.provider-requirements .requirement-item:hover {
    background: rgba(112, 28, 46, 0.1);
    transform: translateY(-2px);
}

.provider-requirements .requirement-item i {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.provider-requirements .requirement-item span {
    font-weight: 500;
    color: var(--charcoal);
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    animation: fadeInLeft 0.8s ease forwards;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInRight 0.8s ease forwards;
}

.slide-in-up {
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 1s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stats-row {
        justify-content: center;
        gap: 1rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .navbar-nav {
        text-align: center;
        padding-top: 1rem;
    }

    .btn-login {
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 2rem 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .feature-card,
    .service-card,
    .mvv-card {
        margin-bottom: 2rem;
    }

    .stats-row {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .quality-feature {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .process-step {
        margin-bottom: 3rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .login-card {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .contact-info {
        padding: 1.5rem;
        margin-top: 2rem;
    }
}

/* Print Styles */
@media print {

    .navbar,
    .whatsapp-float,
    .hero,
    .page-header {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    .section-title {
        font-size: 18pt;
        color: black !important;
    }

    .btn {
        display: none !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --burgundy: #000000;
        --charcoal: #000000;
        --gray-medium: #666666;
        --white: #FFFFFF;
    }

    .btn-primary {
        background: #000000;
        border: 2px solid #000000;
    }

    .feature-card,
    .service-card {
        border: 2px solid #000000;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .whatsapp-float {
        animation: none;
    }
}

/* New component styles for simplified pages */

/* Stats row for info page */
.stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    flex: 1;
    min-width: 150px;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-medium);
    margin: 0;
}

/* Approach items for info page */
.approach-item {
    padding: 2rem 1rem;
}

.approach-icon {
    font-size: 2.5rem;
    color: var(--burgundy);
    margin-bottom: 1rem;
}

.approach-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.approach-item p {
    color: var(--gray-medium);
    margin: 0;
}

/* Cert badges for info page */
.cert-badge {
    padding: 2rem 1rem;
}

.cert-badge i {
    font-size: 2.5rem;
    display: block;
}

.cert-badge h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

.cert-badge p {
    color: var(--gray-medium);
    margin: 0;
    font-size: 0.9rem;
}

/* Benefit items for services page */
.benefit-item {
    padding: 1.5rem;
}

.benefit-item i {
    font-size: 2rem;
    display: block;
}

.benefit-item h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

.benefit-item p {
    color: var(--gray-medium);
    margin: 0;
    font-size: 0.9rem;
}

/* Provider benefits for providers page */
.provider-benefit {
    padding: 1.5rem;
}

.provider-benefit i {
    font-size: 2rem;
    display: block;
}

.provider-benefit h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

.provider-benefit p {
    color: var(--gray-medium);
    margin: 0;
    font-size: 0.9rem;
}

/* Service categories for providers page */
.service-category {
    padding: 2rem 1rem;
    border: 1px solid var(--gray-light);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(179, 4, 100, 0.1);
}

.category-icon {
    font-size: 2.5rem;
    color: var(--burgundy);
}

.service-category h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

.service-category p {
    color: var(--gray-medium);
    margin: 0;
    font-size: 0.9rem;
}

/* Contact methods for contact page */
.contact-method {
    padding: 2rem 1rem;
}

.contact-method i {
    font-size: 2.5rem;
    display: block;
}

.contact-method h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.contact-method p {
    color: var(--gray-medium);
    margin: 0;
    font-size: 0.9rem;
}

.contact-link {
    color: var(--burgundy);
    text-decoration: none;
    font-weight: 500;
}

.contact-link:hover {
    color: var(--charcoal);
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .stats-row {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .approach-icon,
    .category-icon,
    .contact-method i {
        font-size: 2rem;
    }
}