/* --- How It Works Section Enhancements --- */
#how-it-works {
    background: linear-gradient(135deg, #f0f4ff 0%, #e0e7ff 100%);
    padding-top: 60px;
    padding-bottom: 60px;
    position: relative;
    z-index: 1;
}

#how-it-works .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: #2563eb;
    text-shadow: 0 2px 12px rgba(37,99,235,0.08);
}

#how-it-works .step-card {
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 4px 32px 0 rgba(37,99,235,0.08), 0 1.5px 6px 0 rgba(0,0,0,0.03);
    padding: 2.5rem 1.5rem 2rem 1.5rem;
    transition: transform 0.25s cubic-bezier(.4,2,.6,1), box-shadow 0.25s;
    position: relative;
    overflow: hidden;
    border: none;
}

#how-it-works .step-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 40px 0 rgba(37,99,235,0.18), 0 2px 8px 0 rgba(0,0,0,0.06);
}

#how-it-works .step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #2563eb 60%, #60a5fa 100%);
    color: #fff;
    font-size: 2.2rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem auto;
    box-shadow: 0 2px 12px 0 rgba(37,99,235,0.18);
    position: relative;
    z-index: 2;
    animation: bounceIn 1s cubic-bezier(.68,-0.55,.27,1.55);
}

@keyframes bounceIn {
  0% { transform: scale(0.5); opacity: 0; }
  60% { transform: scale(1.2); opacity: 1; }
  80% { transform: scale(0.95); }
  100% { transform: scale(1); }
}

#how-it-works .step-image {
    text-align: center;
    margin-bottom: 1.1rem;
}

#how-it-works .step-image i {
    font-size: 2.5rem;
    color: #2563eb;
    background: linear-gradient(135deg, #e0e7ff 60%, #bae6fd 100%);
    border-radius: 50%;
    padding: 0.7rem;
    transition: color 0.3s, background 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 8px 0 rgba(37,99,235,0.10);
}

#how-it-works .step-card:hover .step-image i {
    color: #fff;
    background: linear-gradient(135deg, #2563eb 60%, #60a5fa 100%);
    box-shadow: 0 4px 16px 0 rgba(37,99,235,0.18);
}

#how-it-works .step-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.7rem;
    letter-spacing: -0.5px;
}

#how-it-works .step-card p {
    color: #475569;
    font-size: 1.05rem;
    margin-bottom: 0;
}

#how-it-works .step-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, #2563eb22 60%, transparent 100%);
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.3s;
    opacity: 0.7;
}

#how-it-works .step-card:hover::before {
    opacity: 1;
}
/* =================================
   Delivery Plan - Main Stylesheet
   ================================= */

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

/* =================================
   Navigation
   ================================= */
.navbar {
    background: white !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
    transition: transform 0.3s;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

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

/* =================================
   Hero Section
   ================================= */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    pointer-events: auto;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>') repeat;
    opacity: 0.3;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-icon {
    font-size: 5rem;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.company-name {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-cta {
    background: white;
    color: var(--primary-color);
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    text-decoration: none;
    display: inline-block;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    background: #f8fafc;
    color: var(--primary-color);
}

.btn-cta-secondary {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    border: 2px solid white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* =================================
   Section Styles
   ================================= */
section {
    padding: 80px 0;
}

.bg-light-section {
    background: var(--bg-light);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* =================================
   Step Cards (How It Works)
   ================================= */
.step-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #e0e7ff 0%, #dbeafe 100%);
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary-color);
}

/* =================================
   Benefits/Pros Cards
   ================================= */
.pros-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 20px;
    height: 100%;
}

.pros-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transform: translateX(5px);
}

.pros-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* =================================
   Game Section
   ================================= */
.game-container {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.map-container {
    position: relative;
    background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
    border-radius: 15px;
    padding: 20px;
    min-height: 600px;
    border: 3px solid var(--primary-color);
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.05);
}

.map-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 49px, rgba(37, 99, 235, 0.1) 49px, rgba(37, 99, 235, 0.1) 50px),
        repeating-linear-gradient(90deg, transparent, transparent 49px, rgba(37, 99, 235, 0.1) 49px, rgba(37, 99, 235, 0.1) 50px);
    border-radius: 15px;
}

.delivery-marker {
    position: absolute;
    width: 45px;
    height: 45px;
    background: white;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    z-index: 10;
}

.delivery-marker:hover {
    transform: scale(1.2);
    box-shadow: 0 5px 20px rgba(37, 99, 235, 0.4);
    background: var(--primary-color);
    color: white;
    z-index: 20;
}

.delivery-marker.selected {
    background: var(--success-color);
    border-color: var(--success-color);
    color: white;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.start-marker {
    background: var(--success-color) !important;
    border-color: var(--success-color) !important;
    color: white !important;
}

.start-marker::after {
    content: '🏢';
    position: absolute;
    font-size: 1.2rem;
}

.route-line {
    position: absolute;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform-origin: 0 50%;
    pointer-events: none;
    z-index: 5;
    opacity: 0.7;
}

.route-line.optimal {
    background: linear-gradient(90deg, var(--success-color), #34d399);
    height: 4px;
    opacity: 0.9;
    z-index: 6;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.route-line.user-route {
    background: linear-gradient(90deg, #ef4444, #f97316);
    opacity: 0.6;
    z-index: 4;
}

.route-sequence {
    background: white;
    border-radius: 10px;
    padding: 20px;
    max-height: 500px;
    overflow-y: auto;
    border: 2px solid var(--primary-color);
}

.sequence-item {
    background: var(--bg-light);
    padding: 12px;
    margin-bottom: 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    transition: all 0.3s;
    cursor: pointer;
}

.sequence-item:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.sequence-item.active {
    background: var(--success-color);
    color: white;
}

.sequence-number {
    background: var(--primary-color);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 12px;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.sequence-item:hover .sequence-number,
.sequence-item.active .sequence-number {
    background: white;
    color: var(--primary-color);
}

.efficiency-bar {
    height: 30px;
    background: #e5e7eb;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.efficiency-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--warning-color), var(--success-color));
    transition: width 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

/* =================================
   Pricing Cards
   ================================= */

.pricing-card {
    background: white;
    border-radius: 18px;
    padding: 28px 20px 32px 20px;
    box-shadow: 0 8px 32px rgba(37,99,235,0.08), 0 2px 8px 0 rgba(0,0,0,0.03);
    transition: all 0.3s cubic-bezier(.4,2,.6,1);
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 16px 48px rgba(37,99,235,0.18), 0 4px 16px 0 rgba(0,0,0,0.08);
    border-color: var(--primary-color);
    z-index: 2;
}

.plan-gradient {
    background: linear-gradient(135deg, #fffbe6 0%, #fff 100%);
}
.plan-gradient-alt {
    background: linear-gradient(135deg, #fff3cd 0%, #fff 100%);
}

.plan-icon-bg {
    background: linear-gradient(135deg, #fff3cd 60%, #fffbe6 100%);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem auto;
    box-shadow: 0 2px 12px 0 rgba(255,243,205,0.18);
    font-size: 2.2rem;
    color: #b08900;
}
.plan-icon-bg-alt {
    background: linear-gradient(135deg, #fffbe6 60%, #fff 100%);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem auto;
    box-shadow: 0 2px 12px 0 rgba(255,251,230,0.18);
    font-size: 2.2rem;
    color: #b08900;
}
.limited-offer-badge {
    animation: pulse-badge 1.2s infinite;
    border: 2px solid #fff3cd;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    left: 50% !important;
    top: 12px !important;
    transform: translateX(-50%) !important;
    margin-top: 0 !important;
    white-space: nowrap;
    max-width: 90%;
    overflow: visible;
    text-align: center;
}
.limited-offer-badge {
    animation: pulse-badge 1.2s infinite;
    border: 2px solid #fff3cd;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
@keyframes pulse-badge {
    0%, 100% { box-shadow: 0 0 0 0 #ffe066; }
    50% { box-shadow: 0 0 0 8px #ffe06644; }
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    position: relative;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 0;
}

.price-subtext {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* =================================
   Blog Cards
   ================================= */
.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.blog-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
}

.blog-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-content h4 {
    margin: 10px 0 15px;
    color: var(--text-dark);
}

.blog-content p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.blog-content .btn {
    margin-top: auto;
}

.blog-meta {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

/* =================================
   Testimonials
   ================================= */
.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    height: 100%;
    position: relative;
}

.testimonial-quote {
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 20px;
}

.testimonial-text {
    font-style: italic;
    margin: 30px 0 20px;
    color: var(--text-dark);
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-dark);
}

.testimonial-role {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* /* =================================
   Modal Styles
   ================================= */
.modal-content {
    border-radius: 15px;
    border: none;
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 15px 15px 0 0;
    padding: 25px 30px;
} */

/* =================================
   Modal Styles
   ================================= */
.modal-content {
    border-radius: 15px;
    border: none;
}

/* Modal Header */
.modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 15px 15px 0 0;
    padding: 25px 30px;
}

/* Modal Body */
.modal-body {
    padding: 25px 30px;
    overflow-x: hidden; /* prevent horizontal scroll */
}

/* Form Styles */
.form-label {
    font-weight: 600;
    color: var(--text-dark);
}

.form-control,
.form-select,
textarea {
    border-radius: 8px;
    padding: 12px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    width: 100%; /* ensures full width on mobile */
    box-sizing: border-box;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.15);
}

/* Pricing Section */
.pricing-display {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.pricing-amount {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
}

/* =================================
   Mobile Optimizations
   ================================= */
@media (max-width: 576px) {
    .modal-dialog {
        max-width: 95%; /* small margin on sides */
        margin: 1rem;
    }

    .modal-header {
        padding: 15px 20px;
    }

    .modal-body {
        padding: 15px 20px;
        max-height: calc(100vh - 120px); /* adjust height to avoid cut-off */
        overflow-y: auto; /* vertical scroll for tall content */
    }

    .btn {
        font-size: 0.9rem; /* smaller buttons on small screens */
        padding: 10px;
    }
}


.form-label {
    font-weight: 600;
    color: var(--text-dark);
}

.form-control, .form-select {
    border-radius: 8px;
    padding: 12px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.15);
}

.pricing-display {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.pricing-amount {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
}

/* =================================
   Footer
   ================================= */
footer {
    background: var(--text-dark);
    color: white;
    padding: 40px 0 20px;
}

footer h4, footer h5 {
    color: white;
    margin-bottom: 20px;
}

footer a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: var(--accent-color);
}

footer ul {
    padding: 0;
    list-style: none;
}

footer li {
    margin-bottom: 10px;
}

/* =================================
   Blog Page Specific Styles
   ================================= */
.blog-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.blog-hero h1 {
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.featured-post {
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.featured-image {
    height: 100%;
    min-height: 300px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: white;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

/* =================================
   Responsive Design
   ================================= */
@media (max-width: 768px) {
    .company-name {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .hero-icon {
        font-size: 3rem;
    }
    
    .map-container {
        min-height: 340px;
        padding: 24px 8px 24px 8px;
    }
    .delivery-marker {
        width: 32px;
        height: 32px;
        font-size: 1rem;
        border-width: 2px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.13);
    }
    .delivery-marker.start-marker {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
    .map-grid {
        background-image: 
            repeating-linear-gradient(0deg, transparent, transparent 54px, rgba(37, 99, 235, 0.07) 54px, rgba(37, 99, 235, 0.07) 55px),
            repeating-linear-gradient(90deg, transparent, transparent 54px, rgba(37, 99, 235, 0.07) 54px, rgba(37, 99, 235, 0.07) 55px);
    }
    
    .blog-hero {
        padding: 60px 0 40px;
    }
    
    .blog-hero h1 {
        font-size: 2rem;
    }
    
    .featured-image {
        min-height: 200px;
    }
    
    .step-image {
        height: 150px;
        font-size: 3rem;
    }
    
    .btn-cta {
        font-size: 1rem;
        padding: 12px 30px;
    }
}

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

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

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


.hero-glow {
    background-color: #1d3557; /* deep blue */
    color: white;
}

.hero-glow:hover {
    background-color: #16324f; /* slightly darker on hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}


@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(255, 105, 135, 0.5), 0 0 20px rgba(255, 105, 135, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 105, 135, 0.7), 0 0 30px rgba(255, 105, 135, 0.4);
    }
}

.hero-glass {
    background-color: rgba(255, 255, 255, 0.9);
    color: #1d3557;
    border: 2px solid #1d3557;
}

.hero-glass:hover {
    background-color: #f1f1f1;
    transform: translateY(-2px);
}

.trophy-icon {
    color: #fbbc04; /* strong yellow/orange (Google-style yellow) */
}

.trophy-icon {
    color: #FFA500; /* classic orange */
}

.calendar-icon {
    color: #218c4a; /* dark, serious green */
}

.red-icon {
  color: #8B1A10;
}

.lead.mb-4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #e0e7ff;  /* A nice bold blue */
  font-style: italic;
  letter-spacing: 0.03em;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
  margin-bottom: 1.5rem;
}

   .accordion {
      border-radius: 10px;
      overflow: hidden;
    }

    .accordion-item {
      border: none;
      border-bottom: 1px solid #d8e3f3;
      background-color: #ffffff;
      box-shadow: 0 2px 10px rgba(0, 32, 63, 0.05);
      margin-bottom: 8px;
      border-radius: 10px;
    }

    .accordion-button {
      background-color: #f2f8ff;
      color: #1b2f4c;
      font-weight: 500;
      font-size: 1.05rem;
      padding: 1rem 1.25rem;
      border-radius: 10px;
      transition: all 0.3s ease;
    }

    .accordion-button:not(.collapsed) {
      background-color: #dceeff;
      color: #0d2c5d;
      box-shadow: none;
    }

    .accordion-button::after {
      transform: scale(1.2);
      filter: brightness(0.6);
    }

    .accordion-body {
      background-color: #ffffff;
      font-size: 0.97rem;
      padding: 1rem 1.5rem;
      color: #3b4e68;
    }

    @media (min-width: 768px) {
      .accordion-body {
        font-size: 1rem;
      }

