/* ========================================
   CAG Tours - Modern Minimalistic Styles
   ======================================== */

/* Root Variables */
:root {
    --primary-green: #2D5016;
    --primary-orange: #FF6B35;
    --accent-gold: #FFD23F;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --medium-gray: #E9ECEF;
    --dark-gray: #6C757D;
    --text-dark: #212529;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo-section .logo {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    font-size: 15px;
    color: var(--text-dark);
    transition: var(--transition);
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: var(--transition);
}

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

.nav-link.cta-button {
    background: var(--primary-green);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 8px;
}

.nav-link.cta-button:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.nav-link.cta-button::after {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-green);
    border-radius: 2px;
    transition: var(--transition);
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(45,80,22,0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.hero-background::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,107,53,0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

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

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 900px;
}

.welcome-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
    font-weight: 500;
    color: var(--primary-green);
}

.welcome-badge i {
    font-size: 20px;
    color: var(--primary-orange);
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-title .highlight {
    color: var(--primary-green);
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 12px;
    background: var(--accent-gold);
    opacity: 0.3;
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--dark-gray);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.stat-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-orange));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.stat-icon i {
    font-size: 24px;
    color: var(--white);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 5px;
}

.stat-label {
    color: var(--dark-gray);
    font-size: 0.95rem;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-green);
    border-radius: 20px;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-green);
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { top: 10px; opacity: 1; }
    100% { top: 30px; opacity: 0; }
}

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

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: var(--primary-green);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-orange);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

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

.btn-outline {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-outline:hover {
    background: var(--primary-green);
    color: var(--white);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 14px;
}

.btn-block {
    width: 100%;
}

/* Quick Services */
.quick-services {
    padding: 60px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--medium-gray);
    transition: var(--transition);
    cursor: pointer;
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 32px;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--primary-green);
}

.service-card p {
    color: var(--dark-gray);
    font-size: 0.95rem;
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Routes Section */
.routes-section {
    background: var(--light-gray);
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.route-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.route-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.route-header {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-orange));
    padding: 25px 20px;
}

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

.city-badge {
    background: var(--white);
    padding: 10px 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--primary-green);
}

.route-arrow {
    color: var(--white);
    font-size: 20px;
}

.route-details {
    padding: 25px 20px;
}

.route-info {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--medium-gray);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.info-item i {
    color: var(--primary-orange);
}

.route-price {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.price-option {
    text-align: center;
}

.price-label {
    display: block;
    font-size: 0.85rem;
    color: var(--dark-gray);
    margin-bottom: 5px;
}

.price-amount {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
}

.route-departures {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.departure-time {
    flex: 1;
    background: var(--light-gray);
    padding: 8px;
    border-radius: 6px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-green);
}

/* Parcels Section */
.parcels-section {
    background: var(--white);
}

.parcels-wrapper {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.parcel-tabs {
    display: flex;
    background: var(--light-gray);
}

.tab-button {
    flex: 1;
    padding: 20px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark-gray);
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.tab-button:hover {
    background: var(--white);
    color: var(--primary-green);
}

.tab-button.active {
    background: var(--white);
    color: var(--primary-green);
    border-bottom-color: var(--primary-green);
}

.tab-content {
    display: none;
    padding: 40px;
}

.tab-content.active {
    display: block;
}

.parcel-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--primary-green);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--medium-gray);
    border-radius: 8px;
    font-size: 15px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
}

.form-actions {
    display: flex;
    gap: 15px;
}

.estimated-cost {
    margin-top: 30px;
    padding: 25px;
    background: var(--light-gray);
    border-radius: 12px;
    text-align: center;
}

.cost-label {
    font-size: 1rem;
    color: var(--dark-gray);
    margin-bottom: 10px;
}

.cost-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
}

/* Track Parcel */
.track-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.track-form {
    text-align: center;
    margin-bottom: 40px;
}

.track-form h3 {
    font-size: 1.75rem;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.track-form p {
    color: var(--dark-gray);
    margin-bottom: 30px;
}

.tracking-input-group {
    display: flex;
    gap: 15px;
}

.tracking-input {
    flex: 1;
    padding: 15px;
    border: 2px solid var(--medium-gray);
    border-radius: 8px;
    font-size: 16px;
}

.tracking-input:focus {
    outline: none;
    border-color: var(--primary-green);
}

.tracking-result {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.tracking-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.tracking-status {
    background: var(--primary-orange);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.9rem;
}

.tracking-timeline {
    position: relative;
}

.timeline-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 22px;
    top: 45px;
    bottom: -30px;
    width: 2px;
    background: var(--medium-gray);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-icon {
    width: 45px;
    height: 45px;
    background: var(--medium-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.timeline-item.completed .timeline-icon {
    background: var(--primary-green);
    color: var(--white);
}

.timeline-item.active .timeline-icon {
    background: var(--primary-orange);
    color: var(--white);
    animation: pulse 2s infinite;
}

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

.timeline-content h5 {
    color: var(--primary-green);
    margin-bottom: 5px;
}

.timeline-content p {
    color: var(--dark-gray);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.timeline-time {
    font-size: 0.85rem;
    color: var(--dark-gray);
    font-style: italic;
}

.tracking-actions {
    text-align: center;
}

.track-info {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.track-info h4 {
    color: var(--primary-green);
    margin-bottom: 10px;
}

/* Rates */
.rates-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.rates-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.rate-card {
    background: var(--white);
    border: 2px solid var(--medium-gray);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

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

.rate-card.featured {
    border-color: var(--primary-green);
    box-shadow: var(--shadow-md);
}

.rate-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-orange);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.rate-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.rate-icon i {
    font-size: 28px;
    color: var(--white);
}

.rate-card h3 {
    font-size: 1.25rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.rate-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

.rate-features {
    list-style: none;
    text-align: left;
}

.rate-features li {
    padding: 8px 0;
    color: var(--dark-gray);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rate-features i {
    color: var(--primary-green);
}

.rates-note {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.rates-note p {
    margin-bottom: 20px;
    color: var(--dark-gray);
}

/* Fleet Section */
.fleet-section {
    background: var(--light-gray);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.fleet-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.fleet-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.fleet-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.fleet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fleet-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-green);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 500;
}

.fleet-badge.standard {
    background: var(--primary-orange);
}

.fleet-content {
    padding: 30px;
}

.fleet-content h3 {
    font-size: 1.75rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.fleet-content p {
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.fleet-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    list-style: none;
}

.fleet-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.fleet-features i {
    color: var(--primary-green);
    font-size: 18px;
}

.fleet-gallery h3 {
    text-align: center;
    font-size: 1.75rem;
    color: var(--primary-green);
    margin-bottom: 30px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Rating Section */
.rating-section {
    background: var(--white);
}

.rating-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.rating-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.rating-card {
    background: var(--light-gray);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
}

.rating-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.rating-icon i {
    font-size: 32px;
    color: var(--white);
}

.rating-card h3 {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.star-rating {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

.star-rating i {
    font-size: 32px;
    color: var(--medium-gray);
    cursor: pointer;
    transition: var(--transition);
}

.star-rating i:hover,
.star-rating i.fas {
    color: var(--accent-gold);
}

.rating-label {
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.rating-card input {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--medium-gray);
    border-radius: 8px;
    margin-bottom: 15px;
}

.feedback-form {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 16px;
}

.feedback-form h3 {
    font-size: 1.75rem;
    color: var(--primary-green);
    margin-bottom: 25px;
    text-align: center;
}

/* About Section */
.about-section {
    background: var(--light-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.about-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 40px;
}

.timeline {
    position: relative;
}

.timeline .timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.timeline-year {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.timeline .timeline-content h4 {
    font-size: 1.25rem;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.timeline .timeline-content p {
    color: var(--dark-gray);
    line-height: 1.7;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.stat-box {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-box i {
    font-size: 36px;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.stat-box h3 {
    font-size: 1.25rem;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.stat-box p {
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.mission-statement {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-orange));
    padding: 60px;
    border-radius: 16px;
    text-align: center;
}

.mission-statement blockquote {
    font-size: 1.75rem;
    color: var(--white);
    font-style: italic;
    font-weight: 500;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    background: var(--white);
}

.contact-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.contact-card {
    background: var(--light-gray);
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

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

.contact-card h3 {
    font-size: 1.25rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.contact-link {
    display: block;
    color: var(--primary-orange);
    margin-bottom: 5px;
    transition: var(--transition);
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-card p {
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.terminals-section {
    margin-bottom: 50px;
}

.terminals-section h3 {
    font-size: 1.75rem;
    color: var(--primary-green);
    margin-bottom: 25px;
    text-align: center;
}

.terminals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.terminal-card {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
}

.terminal-card h4 {
    color: var(--primary-green);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.terminal-card i {
    color: var(--primary-orange);
}

.query-form {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 16px;
}

.query-form h3 {
    font-size: 1.75rem;
    color: var(--primary-green);
    margin-bottom: 25px;
    text-align: center;
}

/* Footer */
.footer {
    background: var(--primary-green);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-section h4 {
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.footer-section p {
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    opacity: 0.9;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    opacity: 1;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-orange);
    transform: translateY(-3px);
}

.contact-list {
    list-style: none;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    margin-bottom: 5px;
    opacity: 0.8;
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: bounce 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    font-size: 32px;
    color: var(--white);
}

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

/* Chatbot Customization */
#chatpilot-chatbot-bubble {
    bottom: 110px !important;
    right: 30px !important;
}

/* Hide "Powered by" text */
#chatpilot-chatbot iframe {
    /* Customize chatbot appearance */
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title { font-size: 3rem; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .routes-grid { grid-template-columns: repeat(2, 1fr); }
    .fleet-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .rates-grid { grid-template-columns: repeat(2, 1fr); }
    .about-content { grid-template-columns: 1fr; }
    .contact-info { grid-template-columns: repeat(2, 1fr); }
    .terminals-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .mobile-menu-toggle { display: flex; }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        transition: var(--transition);
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-stats { grid-template-columns: 1fr; }
    .hero-cta { flex-direction: column; }
    .services-grid { grid-template-columns: 1fr; }
    .routes-grid { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .rates-grid { grid-template-columns: 1fr; }
    .rating-cards { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .contact-info { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; }
    .section-title { font-size: 2rem; }
    .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; }
    .whatsapp-float i { font-size: 26px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .section-title { font-size: 1.75rem; }
    .container { padding: 0 15px; }
}