﻿/* ============================================
   GLOBAL STYLES & RESET
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* ============================================
   HEADER STYLES
   ============================================ */
/*.main-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-bar {
    background: #1a237e;
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.highlight {
    color: #ffcc80;
    font-weight: 600;
}

.top-phone {
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.call-label {
    opacity: 0.8;
    font-weight: 500;
}

.contact-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.main-nav {
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    font-size: 28px;
    font-weight: bold;
    color: #1a237e;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
    margin: 0;
}

.nav-link {
    color: #333;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #1a237e;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #1a237e;
}

.btn-login {
    background: #1a237e;
    color: #fff !important;
    padding: 10px 25px !important;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: #283593;
    transform: translateY(-2px);
}

.nav-cta {
    background: #ff6f00;
    color: #fff !important;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(255, 111, 0, 0.25);
}

.nav-cta:hover {
    background: #e65100;
    transform: translateY(-2px);
    color: #fff !important;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #1a237e;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}*/

/* ============================================
   MAIN CONTENT
   ============================================ */
/*.main-content {
    min-height: calc(100vh - 400px);
}*/

/* ============================================
   HERO SECTION
   ============================================ */
/*.hero-section {
    background: url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    color: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.55) 40%, rgba(0,0,0,0.65) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}*/

/* PickRails hero layout */
/*.hero-pickrails .hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    align-items: center;
}

.hero-pickrails .hero-copy {
    text-align: left;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 20px;
}

.btn-primary {
    background: #ff6f00;
    color: #fff;
    padding: 14px 22px;
    border-radius: 6px;
    font-weight: 700;
    display: inline-block;
    text-align: center;
    box-shadow: 0 10px 25px rgba(255, 111, 0, 0.35);
}

.btn-primary:hover {
    background: #e65100;
}

.phone-label {
    font-size: 14px;
    opacity: 0.9;
}

.booking-panel {
    background: #fff;
    color: #333;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.28);
    max-width: 1100px;
    margin: 0 auto;
}

.trip-toggle {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}

.toggle-btn {
    border: 1px solid #e0e0e0;
    background: #f7f7f7;
    padding: 10px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}

.toggle-btn.active {
    background: #1a237e;
    color: #fff;
    border-color: #1a237e;
}

.pickrails-form .form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    margin-bottom: 12px;
}

.passenger-group .passenger-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 10px;
}

.passenger-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
    color: #555;
}

.hidden {
    display: none !important;
}

.hero-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}*/

/* Booking Form */
/*.booking-form {
    background: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group select {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s ease;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a237e;
    box-shadow: 0 0 0 3px rgba(26, 35, 126, 0.1);
}

.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s ease;
    width: 100%;
    font-family: inherit;
    resize: vertical;
}

.btn-search {
    background: #ff6f00;
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-search:hover {
    background: #e65100;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 111, 0, 0.3);
}

.btn-search:active {
    transform: translateY(0);
}*/

/* ============================================
   FEATURES SECTION
   ============================================ */
/*.features-section {
    padding: 60px 0;
    background: #fff;
}

.section-title {
    text-align: center;
    font-size: 36px;
    color: #1a237e;
    margin-bottom: 50px;
    font-weight: bold;
}

.section-subtitle {
    text-align: center;
    color: #666;
    max-width: 780px;
    margin: -30px auto 40px;
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: #f9f9f9;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a237e;
}

.feature-card h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    line-height: 1.8;
}*/

/* ============================================
   OFFERS SECTION
   ============================================ */
/*.offers-section {
    padding: 60px 0;
    background: #f5f5f5;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.offer-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.offer-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 48px;
}

.offer-content {
    padding: 25px;
}

.offer-content h3 {
    color: #1a237e;
    margin-bottom: 10px;
    font-size: 22px;
}

.offer-content p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.offer-price {
    font-size: 24px;
    font-weight: bold;
    color: #ff6f00;
    margin-bottom: 15px;
}

.btn-offer {
    background: #1a237e;
    color: #fff;
    padding: 10px 25px;
    border-radius: 5px;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-offer:hover {
    background: #283593;
    transform: translateX(5px);
}*/

/* ============================================
   BENEFITS & EXPERIENCE
   ============================================ */
/*.benefits-section,
.experience-section,
.stats-section,
.how-help-section,
.how-works-section,
.routes-section,
.about-snapshot,
.testimonials-section,
.audience-section,
.faq-section {
    padding: 60px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.benefit-card {
    background: #fff;
    border-radius: 10px;
    padding: 24px 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    text-align: center;
}

.experience-grid,
.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.experience-card,
.route-card {
    background: #fff;
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    line-height: 1.7;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
}

.stat-card {
    background: #1a237e;
    color: #fff;
    padding: 24px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
}

.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    color: #fff;
}

.cta-card {
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
    line-height: 1.8;
}

.cta-card h2 {
    font-size: 32px;
    margin-bottom: 12px;
}

.how-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.step-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.step-number {
    color: #ff6f00;
    font-weight: 700;
    margin-bottom: 8px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.testimonial-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    line-height: 1.7;
}

.testimonial-name {
    display: block;
    margin-top: 12px;
    color: #1a237e;
    font-weight: 700;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}

.audience-card {
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    font-weight: 600;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

.faq-item {
    background: #fff;
    border-radius: 10px;
    padding: 18px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.faq-question {
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 10px;
}

.faq-answer {
    color: #555;
    line-height: 1.7;
}*/

/* ============================================
   RESPONSIVE TWEAKS
   ============================================ */
/*@media (max-width: 768px) {
    .hero-pickrails .hero-copy {
        text-align: center;
    }

    .hero-actions {
        align-items: center;
    }

    .passenger-group .passenger-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }
}*/

/* ============================================
   FOOTER STYLES
   ============================================ */
/*.main-footer {
    background: #1a237e;
    color: #fff;
    padding: 50px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-section p {
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    padding-left: 5px;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.9;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.8;
}*/

/* Icon Styles */
/*.icon-phone::before,
.icon-email::before,
.icon-location::before {
    font-style: normal;
}

.icon-facebook::before,
.icon-twitter::before,
.icon-instagram::before,
.icon-linkedin::before {
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 14px;
}

.icon-facebook::before { content: 'f'; }
.icon-twitter::before { content: 't'; }
.icon-instagram::before { content: 'i'; }
.icon-linkedin::before { content: 'in'; }*/

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */

/* Tablet Styles */
/*@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .booking-form {
        padding: 30px 20px;
    }

    .hero-pickrails .hero-copy {
        text-align: center;
    }

    .hero-actions {
        align-items: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 10px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        display: none;
        gap: 0;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .nav-link {
        display: block;
        padding: 15px 0;
        width: 100%;
    }
    
    .nav-link.active::after {
        display: none;
    }
    
    .btn-login {
        width: 100%;
        text-align: center;
    }
    
    .features-grid,
    .offers-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}*/

/* Mobile Styles */
/*@media (max-width: 480px) {
    .hero-section {
        padding: 50px 0;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .booking-form {
        padding: 25px 15px;
        margin-top: 30px;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .features-section,
    .offers-section {
        padding: 40px 0;
    }
    
    .feature-card,
    .offer-card {
        padding: 20px;
    }
    
    .main-footer {
        padding: 40px 0 15px;
    }
    
    .logo-link {
        font-size: 20px;
    }
}*/

/* Large Desktop Styles */
/*@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-title {
        font-size: 56px;
    }
    
    .booking-form {
        max-width: 1000px;
    }
}*/

/* ============================================
   UTILITY CLASSES
   ============================================ */
/*.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}*/

/* Override Bootstrap defaults */
/*.body-content {
    margin-top: 0;
    padding-left: 0;
    padding-right: 0;
}

input,
select,
textarea {
    max-width: 100%;
}*/


/* ================= HEADER ================= */
.site-header {
    background: #fff;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 30px;
}

.logo img {
    height: 70px;
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.desktop-nav a {
    text-decoration: none;
    font-weight: 600;
    color: #000;
}

.mobile-tfn {
    display: none;
}
/* 📱 MOBILE VIEW */
@media (max-width: 768px) {

    .header-wrapper {
        justify-content: space-between;
    }

    .desktop-nav,
    .header-phone {
        display: none;
    }

    .mobile-menu-icon {
        display: block;
    }

    .mobile-tfn {
        display: flex;
        flex: 1;
        justify-content: center;
    }

        .mobile-tfn a {
            font-size: 14px;
            font-weight: 600;
            color: #0d6efd;
            text-decoration: none;
            white-space: nowrap;
        }
}
/*.header-phone {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .header-phone img {
        width: 35px;
    }

    .header-phone a {
        font-weight: bold;
        color: #0b4c7a;
        text-decoration: none;
    }

    .header-phone span {
        font-size: 12px;
        display: block;
    }*/


.header-phone {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .header-phone img {
        width: 46px;
        height: 46px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid #0d6efd;
        box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    }

    .header-phone a {
        font-weight: 600;
        color: #0d6efd;
        text-decoration: none;
    }

    .header-phone span {
        display: block;
        font-size: 13px;
        color: #666;
    }


/* Mobile */
.mobile-menu-icon {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* Side Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100%;
    background: #0b4c7a;
    padding: 20px;
    transition: 0.3s;
    z-index: 1000;
}

    .mobile-menu a {
        display: block;
        color: #fff;
        margin: 15px 0;
        text-decoration: none;
        font-size: 16px;
    }

.close-btn {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    float: right;
}

/* ================= FOOTER ================= */
.site-footer {
    background: #083c5d;
    color: #fff;
    padding: 30px 20px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

    .footer-links a {
        border: 1px solid #fff;
        padding: 6px 12px;
        color: #fff;
        text-decoration: none;
        border-radius: 4px;
    }

.footer-disclaimer {
    max-width: 1100px;
    margin: 20px auto;
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 20px 0;
}

    .footer-contact a {
        color: #fff;
        text-decoration: none;
    }

.footer-bottom {
    text-align: center;
    font-size: 13px;
    border-top: 1px solid rgba(255,255,255,0.3);
    padding-top: 10px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .desktop-nav,
    .header-phone {
        display: none;
    }

    .mobile-menu-icon {
        display: block;
    }

    .footer-contact {
        flex-direction: column;
        text-align: center;
    }
}
.hero-section {
    background-image: url('../images/banner-home.png');
/*    background: url('/Content/images/banner.jpg') center/cover no-repeat;
*/    padding: 60px 20px;
}

.search-box {
    background: #fff;
    max-width: 1100px;
    margin: auto;
    padding: 25px;
    border-radius: 10px;
}

.trip-type {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.search-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

    .search-grid input,
    .btn-search {
        padding: 10px;
        border-radius: 5px;
        border: 1px solid #ccc;
    }

.btn-search {
    background: #0b4c7a;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.info-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 10px;
    text-align: left;
}

    .info-card img {
        width: 100%;
        border-radius: 8px;
    }

@media (max-width: 768px) {
    .search-grid {
        grid-template-columns: 1fr;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }
}

/* ================= ONBOARD EXPERIENCE ================= */

.onboard-section {
    background: url('/Content/images/onboard-bg.jpg') center/cover no-repeat;
    padding: 80px 15px;
    position: relative;
}

.onboard-overlay {
    max-width: 1200px;
    margin: auto;
}

.onboard-title {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 30px;
}

.onboard-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 40px 50px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.onboard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 60px;
}

.onboard-item {
    display: flex;
    gap: 18px;
}

    .onboard-item .icon {
        min-width: 48px;
    }

        .onboard-item .icon img {
            width: 42px;
            height: auto;
        }

    .onboard-item h4 {
        color: #0b4c7a;
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 5px;
    }

    .onboard-item p {
        font-size: 15px;
        color: #333;
        line-height: 1.6;
    }

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
    .onboard-card {
        padding: 30px;
    }

    .onboard-grid {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .onboard-grid {
        grid-template-columns: 1fr;
    }

    .onboard-title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .onboard-card {
        padding: 20px;
    }

    .onboard-item {
        gap: 12px;
    }

        .onboard-item h4 {
            font-size: 16px;
        }

        .onboard-item p {
            font-size: 14px;
        }
}

/* ================= WHY CHOOSE US ================= */

.why-choose-section {
    background: #f2f2f2;
    padding: 70px 15px;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
}

    .section-title::after {
        content: "";
        display: block;
        width: 60px;
        height: 3px;
        background: #0b4c7a;
        margin: 10px auto 0;
    }

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.why-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

    .why-card:hover {
        transform: translateY(-5px);
    }

.icon-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

    .icon-circle img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


.why-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #000;
}

.why-card p {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-card {
        padding: 30px 20px;
    }

    .section-title {
        font-size: 24px;
    }
}

/* ================= DESTINATIONS ================= */

.destinations-section {
    padding: 80px 15px;
    background: #ffffff;
}

.section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    font-size: 15px;
    max-width: 750px;
    margin: 0 auto 50px;
    color: #333;
}

/* Grid */
.destination-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Card */
.destination-card {
    border: 1px solid #0b4c7a;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.3s ease;
}

    .destination-card:hover {
        transform: translateY(-5px);
    }

/* Image */
.image-wrapper {
    position: relative;
}

    .image-wrapper img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

/* Badge */
.image-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #0b4c7a;
    color: #fff;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 6px;
    text-transform: uppercase;
}

/* Body */
.destination-body {
    padding: 15px;
}

    .destination-body h4 {
        font-size: 16px;
        font-weight: 700;
        color: #0b4c7a;
        margin-bottom: 8px;
    }

    .destination-body p {
        font-size: 14px;
        color: #000;
        line-height: 1.6;
    }

/* ================= RESPONSIVE ================= */

@media (max-width: 1200px) {
    .destination-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .destination-grid {
        grid-template-columns: 1fr;
    }

    .image-wrapper img {
        height: 180px;
    }
}

.about-section {
    width: 100%;
    background: #ffffff;
    padding: 60px 20px;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin-bottom: 30px;
}

.about-container p {
    font-size: 16px;
    line-height: 1.8;
    color: #000;
    margin-bottom: 20px;
    text-align: left;
}

/* Tablet */
@media (max-width: 992px) {
    .about-title {
        font-size: 28px;
    }

    .about-container p {
        font-size: 15px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .about-section {
        padding: 40px 15px;
    }

    .about-title {
        font-size: 24px;
    }

    .about-container p {
        font-size: 14px;
        line-height: 1.7;
    }
}
/* Banner */
.page-banner {
    background: #bfbfbf;
    padding: 50px 20px;
    text-align: center;
    border-bottom-left-radius: 80% 40px;
    border-bottom-right-radius: 80% 40px;
}

    .page-banner h1 {
        color: #fff;
        font-size: 32px;
        font-weight: 700;
    }

/* Why Choose Us */
.why-choose-section {
    background: #f4f4f4;
    padding: 60px 20px;
    text-align: center;
}

.section-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 40px;
}

.choose-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.choose-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.icon-circle {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: #eaf2ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.choose-card h4 {
    font-size: 16px;
    margin-bottom: 10px;
}

.choose-card p {
    font-size: 14px;
    line-height: 1.6;
}

/* About Content */
.about-content {
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px;
}

    .about-content p {
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 20px;
    }

/* Responsive */
@media (max-width: 992px) {
    .choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .page-banner h1 {
        font-size: 24px;
    }

    .choose-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 22px;
    }

    .about-content p {
        font-size: 14px;
    }
}

/* Header */
.contact-header {
    text-align: center;
    padding: 60px 15px;
    font-size: 30px;
    font-weight: 600;
}

/* Section background */
.contact-section {
    background: #f5f5f5;
    padding: 60px 15px;
}

/* 👇 SHORT WIDTH CENTERED */
.contact-wrapper {
    max-width: 1100px;
    margin: auto;
}

/* Card */
.contact-box {
    background: #fff;
    padding: 35px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    height: 100%;
}

/* Right info style */
.contact-info {
    background: #fafafa;
}

/* Button */
.btn-send {
    background: #0d6efd;
    color: #fff;
    padding: 10px 28px;
    border-radius: 30px;
    border: none;
}

    .btn-send:hover {
        background: #0b5ed7;
    }

/* Map */
.map-wrapper {
    max-width: 1100px;
    margin: 50px auto;
    border-radius: 14px;
    overflow: hidden;
}

    .map-wrapper iframe {
        width: 100%;
        height: 350px;
        border: 0;
    }

/* Mobile */
@media (max-width: 991px) {
    .contact-box {
        padding: 25px;
    }
}

/* Header with curve */
.disclaimer-header {
    background: #bfbfbf;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom-left-radius: 120% 40px;
    border-bottom-right-radius: 120% 40px;
}

    .disclaimer-header h1 {
        color: #fff;
        font-size: 34px;
        font-weight: 600;
    }

/* Page section */
.disclaimer-section {
    background: #f4f4f4;
    padding: 60px 15px;
}

/* Centered white box */
.disclaimer-container {
    max-width: 1000px;
    margin: -80px auto 0;
    background: #ffffff;
    padding: 45px;
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

    /* Content styling */
    .disclaimer-container h3 {
        font-size: 20px;
        margin-bottom: 20px;
        font-weight: 600;
    }

    .disclaimer-container p {
        font-size: 14px;
        line-height: 1.8;
        color: #333;
        margin-bottom: 18px;
        text-align: justify;
    }

/* Responsive */
@media (max-width: 768px) {
    .disclaimer-container {
        padding: 25px;
        margin-top: -60px;
    }

    .disclaimer-header h1 {
        font-size: 26px;
    }
}
.policy-header {
    background: #bfbfbf;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom-left-radius: 120% 40px;
    border-bottom-right-radius: 120% 40px;
}

    .policy-header h1 {
        color: #fff;
        font-size: 34px;
        font-weight: 600;
    }

.policy-section {
    background: #f4f4f4;
    padding: 60px 15px;
}

.policy-container {
    max-width: 1000px;
    margin: -80px auto 0;
    background: #ffffff;
    padding: 45px;
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

    .policy-container h3 {
        font-size: 20px;
        margin-bottom: 20px;
        font-weight: 600;
    }

    .policy-container h4 {
        font-size: 16px;
        margin-top: 25px;
        margin-bottom: 10px;
        font-weight: 600;
    }

    .policy-container p,
    .policy-container li {
        font-size: 14px;
        line-height: 1.8;
        color: #333;
    }

    .policy-container ul {
        padding-left: 20px;
        margin-bottom: 20px;
    }

@media (max-width: 768px) {
    .policy-container {
        padding: 25px;
        margin-top: -60px;
    }

    .policy-header h1 {
        font-size: 26px;
    }
}
.onboard-item .icon img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}
/* HERO BANNER */
.hero-banner {
    position: relative;
    width: 100%;
    height: 85vh;
    background: url('../images/banner-mtrain.png') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Blue Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(23, 45, 130, 0.75);
}

/* Content */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 20px;
}

    .hero-content h1 {
        font-size: 48px;
        font-weight: 700;
        color: #fff;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 30px;
        color: #ffffff;
        margin-bottom: 30px;
    }

        .hero-content p span {
            color: #ffb703;
            font-weight: 700;
        }

/* Call Button */
.call-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffb703;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s ease;
}

    .call-btn:hover {
        background: #e0a800;
    }

    .call-btn i {
        font-size: 20px;
    }
@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .hero-banner {
        height: 70vh;
    }

    .hero-content h1 {
        font-size: 26px;
    }

    .hero-content p {
        font-size: 20px;
    }

    .call-btn {
        font-size: 16px;
        padding: 12px 22px;
    }
}
.hero {
    position: relative;
    height: 75vh;
    background: url('../images/amtrak-banner.png') center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}
img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 76, 122, 0.85);
}

.hero-content {
    position: relative;
    text-align: center;
    color: #fff;
}

    .hero-content h1 {
        font-size: 42px;
        font-weight: 700;
    }

    .hero-content p {
        font-size: 24px;
    }

    .hero-content span {
        color: #ffb703;
        font-weight: 600;
    }

.btn-primary {
    display: inline-block;
    background: #ffb703;
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    margin-top: 15px;
    text-decoration: none;
    font-weight: 600;
}
.info-section {
    padding: 60px 20px;
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.info-section h3,
.info-section h4 {
    color: #0b4c7a;
    margin-bottom: 10px;
}

.info-section ul {
    padding-left: 18px;
}

.info-section li {
    margin-bottom: 6px;
}
.what-we-do {
    background: #f6f9fc;
    padding: 60px 20px;
}

.align-center {
    align-items: center;
}

.what-we-do img {
    width: 100%;
    max-width: 350px;
}
.reservation-section {
    padding: 60px 20px;
}

    .reservation-section h3 {
        color: #0b4c7a;
    }

.features div {
    margin: 10px 0;
    font-weight: 500;
}
@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .hero-content p {
        font-size: 20px;
    }
}
.travel-section {
    padding: 70px 20px;
    background: #fff;
}

.travel-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

/* LEFT CONTENT */
.travel-content h2 {
    font-size: 32px;
    color: #0b4c7a;
    font-weight: 700;
    margin-bottom: 15px;
}

.subtitle {
    color: #f39c12;
    font-size: 16px;
    margin-bottom: 25px;
}

/* SUPPORT BOX */
.support-box {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 2px solid #f39c12;
    padding: 10px 18px;
    border-radius: 10px;
    margin-bottom: 30px;
}

    .support-box i {
        font-size: 24px;
        color: #0b4c7a;
    }

    .support-box span {
        font-size: 13px;
        color: #666;
        display: block;
    }

    .support-box strong {
        color: #0b4c7a;
        font-size: 16px;
    }

/* TIMELINE */
.timeline {
    position: relative;
    padding-left: 25px;
}

    .timeline::before {
        content: "";
        position: absolute;
        left: 4px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: #f39c12;
    }

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    display: flex;
    gap: 15px;
}

    .timeline-item .dot {
        width: 10px;
        height: 10px;
        background: #f39c12;
        border-radius: 50%;
        position: absolute;
        left: -25px;
        top: 6px;
    }

    .timeline-item h4 {
        color: #0b4c7a;
        font-size: 16px;
        margin-bottom: 5px;
    }

    .timeline-item p {
        font-size: 14px;
        color: #444;
        line-height: 1.6;
    }

/* IMAGE */
.travel-image {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(0,0,0,0.08);
}

    .travel-image img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
@media (max-width: 768px) {
    .travel-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .timeline {
        text-align: left;
    }

    .travel-image {
        margin-top: 30px;
    }
}

.auto-train {
    padding: 70px 20px;
    background: #fff;
}

.auto-container {
    max-width: 1200px;
    margin: auto;
}

    .auto-container h2 {
        color: #f39c12;
        font-size: 32px;
        margin-bottom: 15px;
    }

.intro-text {
    color: #0c3a79;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 900px;
}

.auto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

/* HEADINGS */
.auto-left h3,
.auto-right h3 {
    color: #f39c12;
    font-size: 26px;
    margin-bottom: 20px;
}

/* ICON LIST */
.icon-list {
    list-style: none;
    padding: 0;
}

    .icon-list li {
        display: flex;
        gap: 12px;
        margin-bottom: 15px;
        align-items: flex-start;
    }

    .icon-list i {
        color: #0c3a79;
        font-size: 18px;
        margin-top: 3px;
    }

    .icon-list span {
        color: #0c3a79;
        font-size: 15px;
        line-height: 1.6;
    }

/* CALL TEXT */
.call-text {
    margin: 25px 0 15px;
    color: #0c3a79;
    font-size: 15px;
}

    .call-text i {
        margin-right: 8px;
    }

/* SUPPORT BOX */
.support-box {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 2px solid #f39c12;
    padding: 10px 18px;
    border-radius: 10px;
}

    .support-box i {
        font-size: 24px;
        color: #0c3a79;
    }

    .support-box span {
        font-size: 13px;
        color: #555;
        display: block;
    }

    .support-box strong {
        font-size: 16px;
        color: #0c3a79;
    }

/* STEPS */
.steps-list {
    list-style: decimal;
    padding-left: 20px;
}

    .steps-list li {
        margin-bottom: 18px;
        display: flex;
        gap: 12px;
        align-items: flex-start;
    }

    .steps-list i {
        color: #0c3a79;
        font-size: 18px;
        margin-top: 3px;
    }

    .steps-list span {
        color: #0c3a79;
        font-size: 15px;
        line-height: 1.6;
    }

@media (max-width: 768px) {
    .auto-grid {
        grid-template-columns: 1fr;
    }

    .auto-container h2 {
        font-size: 26px;
    }

    .auto-left h3,
    .auto-right h3 {
        font-size: 22px;
    }
}
.what-we-do-section {
    background: #f2f2f2;
    padding: 70px 20px;
}

.what-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

/* IMAGE CARD */
.what-image {
    background: #f7f7f7;
    padding: 30px;
    border-radius: 8px;
}

    .what-image img {
        width: 100%;
        height: auto;
        display: block;
    }

/* CONTENT */
.what-content h2 {
    font-size: 32px;
    color: #0c3a79;
    font-weight: 700;
    margin-bottom: 10px;
}

.title-line {
    display: block;
    width: 100%;
    height: 2px;
    background: #f39c12;
    margin-bottom: 20px;
}

.what-content p {
    font-size: 15px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 10px;
}

/* CHECK LIST */
.check-list {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

    .check-list li {
        position: relative;
        padding-left: 25px;
        padding-bottom: 12px;
        margin-bottom: 12px;
        border-bottom: 1px solid #d6e2f0;
        font-size: 15px;
        color: #0c3a79;
    }

        .check-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 0;
            color: #0c3a79;
            font-weight: bold;
        }
@media (max-width: 768px) {
    .what-container {
        grid-template-columns: 1fr;
    }

    .what-content h2 {
        font-size: 26px;
    }

    .what-image {
        padding: 20px;
    }
}
/* MOBILE TFN FIXED FOOTER */
.mobile-tfn-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #0c3a79, #092c5e);
    display: none;
    align-items: center;
    padding: 12px 14px;
    gap: 12px;
    z-index: 99999;
    box-shadow: 0 -6px 20px rgba(0,0,0,0.25);
}

/* AVATAR */
.tfn-avatar img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #fff;
}

/* TEXT */
.tfn-text {
    flex: 1;
}

    .tfn-text a {
        display: block;
        font-size: 18px;
        font-weight: 700;
        color: #ff9f1c;
        text-decoration: none;
        line-height: 1.2;
    }

    .tfn-text span {
        font-size: 12px;
        color: #ffffff;
        opacity: 0.9;
    }

/* CLOSE BUTTON */
.tfn-close-btn {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 22px;
    cursor: pointer;
}

/* MOBILE ONLY */
@media (max-width: 768px) {
    .mobile-tfn-bar {
        display: flex;
    }

    body {
        padding-bottom: 70px; /* prevents content hiding */
    }
}
.acela-section {
    padding: 50px 20px;
    background: #ffffff;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.main-title {
    color: #f5a000;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.intro-text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

h3 {
    color: #f5a000;
    font-size: 26px;
    margin-bottom: 20px;
}

.icon-list,
.steps {
    list-style: none;
    padding: 0;
}

    .icon-list li,
    .steps li {
        margin-bottom: 15px;
        line-height: 1.6;
    }

    .icon-list i,
    .steps i {
        color: #0c3a79;
        margin-right: 10px;
    }

.call-text {
    margin: 25px 0;
    font-size: 15px;
}

    .call-text i {
        margin-right: 8px;
    }

.call-box {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 2px solid #f5a000;
    padding: 12px 18px;
    width: fit-content;
    border-radius: 6px;
}

    .call-box i {
        font-size: 26px;
        color: #f5a000;
    }

    .call-box span {
        font-size: 13px;
    }

    .call-box strong {
        display: block;
        font-size: 18px;
        color: #0c3a79;
    }

/* RESPONSIVE */
@media (max-width: 900px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .main-title {
        font-size: 26px;
    }

    h3 {
        font-size: 22px;
    }
}