/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Raleway:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #D4AF37; /* Ana gold rengi */
    --primary-dark: #B8860B; /* Koyu gold */
    --primary-light: #F5DEB3; /* Açık gold */
    --secondary-color: #8B6914; /* Koyu kahverengi-gold */
    --accent-color: #DAA520; /* Golden rod */
    --text-color: #3A2F0B; /* Koyu kahverengi metin */
    --light-bg: #FFF8E5; /* Açık krem arka plan */
    --light-gray: #f9f5e8;
    --white: #ffffff;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
}

/* Top Bar Styles */
.top-bar {
    background: var(--white);
    padding: 15px 0;
    border-bottom: 1px solid rgba(184, 134, 11, 0.1);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: 20px;
    height: 40px;
}

.contact-item i {
    font-size: 18px;
    color: var(--primary-color);
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.contact-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.contact-text span {
    color: var(--secondary-color);
    font-size: 12px;
    display: block;
    line-height: 1.2;
}

.contact-text strong {
    color: var(--text-color);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
}

.header-contact-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 8px;
}

.social-link {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 14px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* Main Header */
.main-header {
    background: var(--white);
    box-shadow: 0 2px 15px rgba(184, 134, 11, 0.1);
    padding: 15px 0;
}

.header-wrapper {
    display: flex;
    align-items: center;
}

.logo-area {
    flex: 0 0 auto;
    margin-right: 40px;
}

.logo img {
    max-height: 60px;
    width: auto;
    transition: all 0.3s ease;
}

.header-info {
    display: flex;
    flex: 1;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
}

/* Main Navigation */
.main-nav {
    background: var(--primary-color);
    border-bottom: 1px solid rgba(184, 134, 11, 0.2);
    position: relative;
    z-index: 100;
}

.nav-wrapper {
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    display: block;
    padding: 18px 25px;
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 3px;
    background: var(--primary-light);
    transform: translateX(-50%);
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link:hover:after,
.nav-link.active:after {
    width: 80%;
}

/* Masaüstü Dropdown Menü - YENİLENDİ */
.dropdown {
    position: relative;
}

/* Dropdown menüsü için çizgi animasyonunu devre dışı bırak */
.dropdown .nav-link:after {
    display: none;
}

.dropdown-toggle {
    position: relative;
    padding-right: 20px;
}

.dropdown-toggle::after {
    display: none;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    width: 220px;
    list-style: none;
    margin: 0;
    padding: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: none;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s;
}

.dropdown-item:hover {
    background-color: #f8f8f8;
    color: var(--primary-color);
}

.dropdown-item:last-child {
    border-bottom: none;
}

/* Mobil Menü - YENİLENDİ */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    display: none;
}

.mobile-menu-overlay.active {
    display: block;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100%;
    background: #fff;
    z-index: 999;
    overflow-y: auto;
    transition: right 0.3s ease;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 20px;
    color: #333;
    cursor: pointer;
}

.mobile-nav {
    list-style: none;
    padding: 15px 0;
    margin: 0;
}

.mobile-nav > li > a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    font-weight: 500;
}

/* Mobil Dropdown Menü - YENİLENDİ */
.mobile-dropdown {
    position: relative;
}

.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    font-weight: 500;
}

.mobile-dropdown-toggle i {
    transition: transform 0.3s;
}

.mobile-dropdown-toggle.active i {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
    background: #f9f9f9;
}

.mobile-dropdown-menu.active {
    display: block;
}

.mobile-dropdown-menu a {
    display: block;
    padding: 12px 20px 12px 35px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.mobile-dropdown-menu a:hover {
    background: #f0f0f0;
    color: var(--primary-color);
}

.mobile-dropdown-menu li:last-child a {
    border-bottom: none;
}

.navbar-toggler {
    border: none;
    background: transparent;
    color: var(--primary-color);
    font-size: 24px;
    cursor: pointer;
}

.mobile-contact {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    cursor: pointer;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    height: 700px;
    background: none;
    margin-bottom: 6rem;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    height: 100%;
}

.hero-slide {
    position: relative;
    height: 700px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    animation: zoomInOut 20s infinite;
}

@keyframes zoomInOut {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(80, 77, 71, 0.8), rgba(33, 26, 8, 0.5));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    animation: fadeInUp 1s ease;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    line-height: 1.6;
}

.btn-detayli-bilgi {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-detayli-bilgi:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(139, 105, 20, 0.3);
}

/* Service Icons Section */
.service-icons {
    margin-top: -80px;
    position: relative;
    z-index: 10;
    padding-bottom: 30px;
}

.service-icon-item {
    background: var(--white);
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(184, 134, 11, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(184, 134, 11, 0.2);
}

.service-icon-item i {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: all 0.3s ease;
    display: inline-block;
}

.service-icon-item:hover i {
    transform: scale(1.2);
    color: var(--accent-color);
}

.service-icon-item h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--secondary-color);
    text-align: center;
}

.service-icon-item p {
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 0;
    line-height: 1.6;
    text-align: center;
}

@media (max-width: 991px) {
    .service-icons {
        margin-top: -50px;
        padding: 0 15px 30px;
    }
    
    .service-icon-item {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .service-icons {
        margin-top: -30px;
    }
    
    .service-icon-item {
        padding: 25px 15px;
    }
    
    .service-icon-item i {
        font-size: 30px;
        margin-bottom: 15px;
    }
    
    .service-icon-item h4 {
        font-size: 18px;
        margin-bottom: 10px;
    }
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.about-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text-color);
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(184, 134, 11, 0.2);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 30px;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(184, 134, 11, 0.3);
}

/* Footer CTA */
.footer-cta {
    background-color: var(--primary-color);
    padding: 60px 0;
}

.footer-cta .cta-wrapper {
    position: relative;
}

.footer-cta h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-button-light {
    background-color: var(--white);
    color: var(--primary-color);
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-button-light:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Main Footer */
.main-footer {
    background-color: #2C2A1E;
    color: rgba(255, 255, 255, 0.8);
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-widget h4 {
    color: var(--white);
    font-size: 22px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.footer-widget h4:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.footer-logo {
    margin-bottom: 20px;
}

.about-widget p {
    margin-bottom: 30px;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary-light);
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--white);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.contact-info p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-info i {
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
}

.footer-bottom {
    background: #201F18;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    margin-left: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-light);
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
    box-shadow: 0 5px 15px rgba(184, 134, 11, 0.3);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
    bottom: 30px;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(184, 134, 11, 0.4);
}

/* Mobile responsiveness */
@media (max-width: 992px) {
    .contact-item {
        display: none;
    }
    
    .navbar-nav {
        padding: 1rem 0;
    }
    
    .nav-link {
        padding: 0.8rem 1rem !important;
    }
    
    .hero-content h1 {
        font-size: 42px;
    }

    .hero-section {
        height: 600px;
        margin-bottom: 4rem;
    }

    .hero-slide {
        height: 600px;
    }

    .service-icons {
        margin-top: -50px;
    }

    .service-icon-item {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .about-section {
        padding: 4rem 0;
    }

    .about-content {
        text-align: center;
        margin-bottom: 2rem;
    }
}

@media (max-width: 991px) {
    .footer-cta {
        text-align: center;
        padding: 40px 0;
    }
    
    .footer-cta .text-lg-end {
        text-align: center !important;
        margin-top: 20px;
    }
    
    .footer-widget h4 {
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .footer-bottom {
        text-align: center;
    }
    
    .footer-bottom-links {
        margin-top: 15px;
        text-align: center !important;
    }
    
    .footer-bottom-links a {
        margin: 0 10px;
    }
    
    .back-to-top {
        right: 15px;
        bottom: 15px;
    }
} 

/* Services Section */
.services-section {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    position: relative;
}

.section-header p {
    color: var(--text-color);
    font-size: 18px;
}

.service-card {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(184, 134, 11, 0.1);
    padding: 35px 25px;
    height: 100%;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(184, 134, 11, 0.15);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--primary-color);
}

.service-icon i {
    font-size: 28px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
    color: var(--white);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.service-card p {
    color: var(--text-color);
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--primary-dark);
    gap: 10px;
}

/* Schedule Section */
.schedule-section {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.schedule-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.schedule-content p {
    margin-bottom: 30px;
    line-height: 1.7;
}

.schedule-table {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(184, 134, 11, 0.1);
    padding: 25px;
}

.schedule-row {
    display: flex;
    gap: 30px;
}

.schedule-col {
    flex: 1;
}

.schedule-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.schedule-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.schedule-col ul li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(184, 134, 11, 0.1);
    color: var(--text-color);
    font-weight: 500;
}

.schedule-col ul li:last-child {
    border-bottom: none;
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(184, 134, 11, 0.1);
    padding: 35px;
}

.contact-form-wrapper h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.contact-form-wrapper p {
    margin-bottom: 25px;
    color: var(--text-color);
}

.about-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--text-color);
    font-weight: 500;
}

.about-features li i {
    font-size: 18px;
    color: var(--primary-color);
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
}

.testimonial-card {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(184, 134, 11, 0.1);
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(184, 134, 11, 0.15);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-info h5 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.author-info span {
    font-size: 14px;
    color: var(--text-color);
    opacity: 0.8;
}

/* Forms */
.form-control {
    height: 50px;
    border-radius: 5px;
    border: 1px solid rgba(184, 134, 11, 0.2);
    padding: 0 15px;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

textarea.form-control {
    height: auto;
    padding: 15px;
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(139, 105, 20, 0.8), rgba(139, 105, 20, 0.8)), url('../images/bg.webp');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: var(--white);
}

.page-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
    text-transform: uppercase;
}

/* Breadcrumbs */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
}

.breadcrumb-item a:hover {
    opacity: 1;
}

.breadcrumb-item.active {
    color: var(--primary-light);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.8);
}

/* Route Info Section */
.route-info-box .alert {
    border: none;
    border-radius: 10px;
    padding: 20px;
    font-size: 16px;
    background-color: rgba(var(--primary-color-rgb), 0.1);
    border-left: 4px solid var(--primary-color);
}

.route-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    overflow: hidden;
}

.route-card-header {
    background: var(--primary-color);
    color: #fff;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.route-card-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
}

.route-tag {
    background: rgba(255,255,255,0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
}

.route-card-body {
    padding: 20px;
}

.route-table {
    margin: 0;
}

.route-table th {
    background: var(--light-gray);
    border: none;
    padding: 15px;
    font-weight: 600;
    color: var(--text-color);
}

.route-table td {
    padding: 15px;
    border-color: #eee;
    vertical-align: middle;
}

.location-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.location-link:hover {
    color: var(--accent-color);
    transform: scale(1.1);
}

/* Route Features */
.route-features {
    padding: 40px 0;
}

.feature-box {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.feature-box i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-box h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.feature-box p {
    color: #666;
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .route-card-header {
        flex-direction: column;
        text-align: center;
    }
    
    .route-tag {
        margin-top: 10px;
    }
    
    .feature-box {
        margin-bottom: 20px;
    }
}

/* Route Buttons */
.route-buttons {
    margin-bottom: 40px;
}

.btn-route {
    width: 100%;
    background: #fff;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 15px 25px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-route i {
    font-size: 20px;
}

.btn-route:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(75, 61, 143, 0.2);
}

.btn-route.active {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 5px 15px rgba(75, 61, 143, 0.3);
}

@media (max-width: 768px) {
    .btn-route {
        margin-bottom: 15px;
    }
}

/* Gallery Section Styles */
.gallery-filter {
    margin-bottom: 40px;
}

.btn-filter {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 20px;
    margin: 0 5px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-filter:hover,
.btn-filter.active {
    background: var(--primary-color);
    color: #fff;
}

.gallery-card {
    position: relative;
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(75, 61, 143, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    padding: 20px;
    text-align: center;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-overlay h5 {
    color: #fff;
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.gallery-overlay p {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.gallery-card:hover .gallery-overlay h5,
.gallery-card:hover .gallery-overlay p {
    transform: translateY(0);
}

.gallery-popup {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 15px;
    transform: translateY(-20px);
    transition: all 0.3s ease;
}

.gallery-card:hover .gallery-popup {
    transform: translateY(0);
}

/* Contact Section Styles */
.contact-info-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: 100%;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 18px;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-details h5 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--text-color);
}

.contact-details p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.contact-form-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.form-group label {
    color: var(--text-color);
    font-weight: 500;
    margin-bottom: 8px;
}

.form-control {
    height: 48px;
    border-color: #eee;
    box-shadow: none;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(75, 61, 143, 0.15);
}

textarea.form-control {
    height: auto;
    min-height: 120px;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

@media (max-width: 768px) {
    .gallery-filter {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .btn-filter {
        margin: 0;
    }

    .contact-info-box,
    .contact-form-box {
        margin-bottom: 30px;
    }
}

/* References Section Styles */
.reference-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.reference-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.reference-logo {
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #f8f9fa;
}

.reference-logo img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 160px;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
    transition: all 0.3s ease;
}

.reference-card:hover .reference-logo img {
    transform: scale(1.05);
}

.reference-content {
    padding: 25px;
}

.reference-content h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-color);
}

.reference-content p {
    color: #666;
    margin-bottom: 20px;
}

.reference-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.reference-details li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #666;
}

.reference-details li:last-child {
    margin-bottom: 0;
}

.reference-details li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 16px;
}

/* Reference Features */
.reference-features {
    background: #f8f9fa;
}

.feature-box {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.feature-box i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-box h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.feature-box p {
    color: #666;
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .reference-logo {
        height: 180px;
    }
    
    .reference-logo img {
        max-height: 140px;
    }
    
    .feature-box {
        margin-bottom: 20px;
    }
}

/* FAQ Section Styles */
.btn-faq-category {
    width: 100%;
    background: #fff;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 15px;
}

.btn-faq-category i {
    font-size: 20px;
    transition: all 0.3s ease;
}

.btn-faq-category:hover,
.btn-faq-category.active {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(75, 61, 143, 0.2);
}

.faq-category {
    display: none;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.faq-category.active {
    display: block;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.accordion-button {
    padding: 20px 25px;
    font-weight: 600;
    color: var(--text-color);
    background: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background: #fff;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(75, 61, 143, 0.15);
}

.accordion-button::after {
    background-size: 18px;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.accordion-button:not(.collapsed)::after {
    opacity: 1;
}

.accordion-body {
    padding: 25px;
    color: #666;
    line-height: 1.7;
    font-size: 15px;
    background: rgba(248, 249, 250, 0.5);
}

.faq-contact-card {
    background: #fff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
    margin-top: 30px;
    transition: all 0.3s ease;
}

.faq-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.card-icon {
    width: 90px;
    height: 90px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.faq-contact-card:hover .card-icon {
    background: var(--primary-color);
}

.card-icon i {
    font-size: 36px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.faq-contact-card:hover .card-icon i {
    color: #fff;
}

.faq-contact-card h3 {
    font-size: 26px;
    margin-bottom: 12px;
    color: var(--text-color);
}

.faq-contact-card p {
    color: #666;
    margin-bottom: 25px;
    font-size: 15px;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-options .btn {
    padding: 14px 25px;
    font-weight: 500;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-options .btn i {
    font-size: 18px;
}

@media (max-width: 768px) {
    .faq-categories {
        margin-bottom: 30px;
    }
    
    .btn-faq-category {
        margin-bottom: 10px;
    }
    
    .accordion-button {
        font-size: 15px;
        padding: 15px 20px;
    }
    
    .accordion-body {
        padding: 20px;
        font-size: 14px;
    }
    
    .faq-contact-card {
        margin-top: 40px;
        padding: 25px;
    }
}

/* Service Pages Styles */
.service-details {
    padding: 80px 0;
    background: #f8f9fa;
}

.service-content {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.service-content h2 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 2rem;
    position: relative;
    padding-bottom: 15px;
}

.service-content h2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.service-features, .corporate-benefits, .vip-benefits {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    border: 1px solid #eee;
}

.service-features h3, .corporate-benefits h3, .vip-benefits h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.service-features h3:after, .corporate-benefits h3:after, .vip-benefits h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.service-features ul, .corporate-benefits ul, .vip-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li, .corporate-benefits li, .vip-benefits li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    padding: 10px;
    background: #fff;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.service-features li:hover, .corporate-benefits li:hover, .vip-benefits li:hover {
    transform: translateX(5px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.service-features i, .corporate-benefits i, .vip-benefits i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.2rem;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(75, 61, 143, 0.1);
    border-radius: 50%;
}

.schedule-table {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    padding: 30px;
    border: 1px solid #eee;
}

.schedule-row {
    display: flex;
    gap: 30px;
}

.schedule-col {
    flex: 1;
}

.schedule-col h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.schedule-col h4:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.schedule-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.schedule-col li {
    margin-bottom: 12px;
    padding: 10px 15px;
    background: #f8f9fa;
    border-radius: 5px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.schedule-col li:hover {
    background: #fff;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.service-sidebar {
    position: sticky;
    top: 20px;
}

.contact-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    padding: 30px;
    border: 1px solid #eee;
}

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.contact-card h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.form-control {
    border: 1px solid #eee;
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(75, 61, 143, 0.15);
}

.btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 12px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(75, 61, 143, 0.3);
}

.service-gallery {
    padding: 80px 0;
    background: #fff;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
}

.gallery-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(75, 61, 143, 0.2);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item:hover:before {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .schedule-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .service-sidebar {
        margin-top: 40px;
    }
    
    .service-content {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .page-header {
        padding: 60px 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .service-content h2 {
        font-size: 1.8rem;
    }
    
    .service-features, .corporate-benefits, .vip-benefits {
        padding: 20px;
    }
    
    .gallery-item img {
        height: 200px;
    }
} 

/* Mobile Menu Styles */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: #fff;
    padding: 20px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 999;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.mobile-menu-close {
    background: transparent;
    border: none;
    font-size: 24px;
    color: var(--text-color);
}

.mobile-nav {
    padding: 20px 0;
    list-style: none;
    margin: 0;
}

.mobile-nav li a {
    display: block;
    padding: 12px 0;
    color: var(--text-color);
    text-decoration: none;
    font-size: 15px;
    border-bottom: 1px solid #eee;
}

.navbar-toggler {
    border: none;
    background: transparent;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
}

.mobile-contact {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    cursor: pointer;
}

/* Main Navigation */
.main-nav {
    background: var(--primary-color);
}

.nav-wrapper {
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    display: block;
    padding: 20px 25px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .header-wrapper {
        padding: 15px 0;
    }
    
    .logo img {
        max-height: 50px;
    }
}

@media (max-width: 767px) {
    .logo img {
        max-height: 45px;
    }
} 

