﻿/* Custom CSS for Taxi BÃ¬nh Minh Website */
/* ============================================ */
/* PROFESSIONAL TAXI WEBSITE DESIGN 2026 */
/* ============================================ */

/* ===== COLOR VARIABLES ===== */
:root {
    --primary-color: #ffc107; /* VÃ ng - Taxi color */
    --secondary-color: #28a745; /* Xanh lÃ¡ - Success */
    --accent-color: #dc3545; /* Äá» - Emergency */
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --white: #ffffff;
    --gray-dark: #6c757d;
    --gray-light: #dee2e6;
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
    --shadow-lg: 0 15px 40px rgba(0,0,0,0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    padding-top: 80px;
    overflow-x: hidden;
    background-color: var(--white);
}

/* ===== SMOOTH SCROLL ===== */
html {
    scroll-behavior: smooth;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
}

/* ===== NAVBAR STYLES ===== */
.navbar {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    transition: var(--transition);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

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

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

.navbar-brand img {
    max-height: 60px;
    width: auto;
    transition: var(--transition);
}

.nav-link {
    font-weight: 600 !important;
    color: var(--dark-color) !important;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: var(--transition);
}

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

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

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

/* ===== HERO SECTION ===== */
.hero-section,
.hero-section-compact {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.5)), url('img/banner.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section-compact {
    min-height: 60vh;
    padding: 100px 0 50px;
}

.hero-overlay {
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,193,7,0.2), transparent);
    z-index: 0;
}

.hero-badge {
    animation: fadeInDown 0.8s ease-out;
}

.hero-badge .badge {
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
    box-shadow: 0 5px 15px rgba(255,193,7,0.3);
    animation: pulse 2s infinite;
}

.hero-content h1 {
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    margin-bottom: 1.5rem;
    animation: fadeInLeft 0.8s ease-out;
}

.hero-content .lead {
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
    animation: fadeInLeft 1s ease-out;
}

.hero-buttons {
    animation: fadeInUp 1.2s ease-out;
}

.pulse-button {
    animation: pulse 2s infinite;
    box-shadow: 0 5px 20px rgba(40,167,69,0.4);
}

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

.hero-features {
    animation: fadeInUp 1.4s ease-out;
}

.feature-mini {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 15px 10px;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.2);
}

.feature-mini:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.hero-image {
    animation: fadeInRight 1s ease-out;
}

.image-frame,
.image-frame-compact {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.image-frame-compact {
    max-height: 350px;
}

.image-frame img,
.image-frame-compact img {
    transition: transform 0.5s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-frame:hover img,
.image-frame-compact:hover img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.image-frame:hover .image-overlay,
.image-frame-compact:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    transform: scale(0.8);
    transition: var(--transition);
}

.image-frame:hover .overlay-content,
.image-frame-compact:hover .overlay-content {
    transform: scale(1);
}

/* ===== ABOUT HERO SECTION ===== */
.about-hero-section-ultra-compact {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.6)), url('img/banner.jpg');
    background-size: cover;
    background-position: center;
    padding: 120px 0 60px;
    text-align: center;
    position: relative;
}

.breadcrumb {
    background: transparent;
    padding: 0.5rem 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.7);
    content: "â€º";
    font-size: 1.2rem;
}

.breadcrumb-item a {
    color: var(--primary-color);
    transition: var(--transition);
}

.breadcrumb-item a:hover {
    color: var(--white);
}

/* ===== QUICK CONTACT SECTION ===== */
.quick-contact-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #20c997 100%);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(40,167,69,0.3);
}

.quick-contact-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.quick-contact-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.contact-icon {
    transition: var(--transition);
}

.quick-contact-section:hover .contact-icon {
    transform: rotate(15deg) scale(1.1);
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 4rem 0;
}

.divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    margin: 15px auto 30px;
    position: relative;
}

.divider::before,
.divider::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.divider::before {
    left: -15px;
}

.divider::after {
    right: -15px;
}

.about-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.contact-info {
    transition: var(--transition);
}

.contact-info:hover {
    border-left-width: 6px;
    transform: translateX(5px);
}

/* ===== IMAGE SLIDER ===== */
.image-slider-container {
    position: relative;
    margin-top: 2rem;
}

.image-slider {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.image-slider img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: opacity 0.5s ease;
}

.slider-buttons {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
    z-index: 10;
}

.slider-buttons .btn {
    background: rgba(255,255,255,0.95);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: var(--transition);
    color: var(--dark-color);
}

.slider-buttons .btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.15);
}

.dots {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.dots .dot {
    height: 12px;
    width: 12px;
    margin: 0 8px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.dots .dot.active {
    background-color: var(--primary-color);
    border-color: var(--secondary-color);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(255,193,7,0.5);
}

.dots .dot:hover {
    background-color: var(--secondary-color);
    transform: scale(1.2);
}

/* ===== STATS CARDS ===== */
.stat-card {
    text-align: center;
    padding: 1.5rem;
    border-radius: 15px;
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.stat-card i {
    animation: float 3s ease-in-out infinite;
}

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

/* ===== LOCATION & COMPANY CARDS ===== */
.location-card,
.company-card {
    background: white;
    transition: var(--transition);
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.location-card:hover,
.company-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.distance-item,
.direction-card {
    transition: var(--transition);
    cursor: pointer;
}

.distance-item:hover,
.direction-card:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* ===== MISSION STATEMENT ===== */
.mission-statement {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    padding: 2rem;
}

.mission-statement::before {
    content: 'âœ“';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    color: rgba(255,255,255,0.1);
    font-weight: bold;
}

.mission-statement p {
    margin: 0;
    font-size: 1.1rem;
}

/* ===== VALUE ITEMS ===== */
.value-item {
    transition: var(--transition);
    padding: 1rem;
    border-radius: 12px;
}

.value-item:hover {
    background-color: rgba(255,193,7,0.1);
    transform: translateX(15px);
}

.icon-circle {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ===== ADMINISTRATIVE SECTION ===== */
.administrative-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
}

.admin-card {
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.admin-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

.admin-card:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.admin-item {
    transition: var(--transition);
    cursor: pointer;
}

.admin-item:hover {
    transform: scale(1.03);
}

/* ===== DESTINATIONS SECTION ===== */
.destinations-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

.destination-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.destination-card:hover {
    transform: translateY(-15px) rotate(-2deg);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.destination-card .card-img-top {
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination-card:hover .card-img-top {
    transform: scale(1.15);
}

.destination-card .card-title {
    color: var(--dark-color);
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
}

.destination-card:hover .card-title {
    color: var(--primary-color);
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 4rem 0;
}

.service-card {
    transition: var(--transition);
    border-left: 5px solid var(--primary-color);
    border-radius: 10px;
    background: white;
}

.service-card:hover {
    transform: translateX(15px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-left-width: 8px;
}

.service-image {
    width: 120px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.service-card:hover .service-image {
    transform: scale(1.1) rotate(-3deg);
}

.service-mini-card {
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    background: white;
}

.service-mini-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,193,7,0.1), transparent);
    transition: left 0.5s ease;
}

.service-mini-card:hover::before {
    left: 100%;
}

.service-mini-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.service-icon {
    transition: var(--transition);
}

.service-mini-card:hover .service-icon {
    transform: scale(1.2) rotate(10deg);
}

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

.service-features li {
    padding: 0.5rem 0;
    padding-left: 30px;
    position: relative;
}

.service-features li::before {
    content: 'âœ“';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* ===== PRICING SECTION ===== */
.pricing-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 4rem 0;
}

.pricing-card {
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background: white;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

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

.pricing-item {
    transition: var(--transition);
    border-radius: 8px;
    padding: 1rem;
}

.pricing-item:hover {
    background: linear-gradient(135deg, rgba(255,193,7,0.1), rgba(40,167,69,0.1));
    transform: translateX(15px);
}

.pricing-item strong {
    color: var(--dark-color);
}

.pricing-item .text-warning,
.pricing-item .text-success {
    font-size: 1.3rem !important;
}

/* ===== FEATURE CARDS ===== */
.feature-card {
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    border-radius: 15px;
    background: white;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.feature-icon {
    transition: var(--transition);
    display: inline-block;
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(360deg);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    position: relative;
    overflow: hidden;
    padding: 3rem 0;
}

.cta-section::before,
.cta-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
}

.cta-section::before {
    top: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
}

.cta-section::after {
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
}

/* ===== FOOTER ===== */
.footer-section {
    background: linear-gradient(135deg, #1a252f 0%, #2c3e50 100%);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content h5 {
    color: var(--primary-color);
    border-bottom: 3px solid var(--secondary-color);
    padding-bottom: 12px;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-content a {
    color: rgba(255,255,255,0.8);
    transition: var(--transition);
    display: inline-block;
}

.footer-content a:hover {
    color: var(--primary-color);
    transform: translateX(10px);
}

.footer-content .list-unstyled li {
    margin-bottom: 0.8rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fade-in-up { animation: fadeInUp 0.8s ease-out; }
.fade-in-down { animation: fadeInDown 0.8s ease-out; }
.fade-in-left { animation: fadeInLeft 0.8s ease-out; }
.fade-in-right { animation: fadeInRight 0.8s ease-out; }
.zoom-in { animation: zoomIn 0.8s ease-out; }

/* ===== UTILITY CLASSES ===== */
.text-primary-custom { color: var(--primary-color) !important; }
.text-secondary-custom { color: var(--secondary-color) !important; }
.bg-primary-custom { background-color: var(--primary-color) !important; }
.bg-secondary-custom { background-color: var(--secondary-color) !important; }
.shadow-custom { box-shadow: var(--shadow); }
.shadow-lg-custom { box-shadow: var(--shadow-lg); }

/* ===== BUTTONS ===== */
.btn {
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: var(--transition);
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-success {
    background: linear-gradient(135deg, var(--secondary-color), #20c997);
    box-shadow: 0 5px 15px rgba(40,167,69,0.3);
}

.btn-success:hover {
    background: linear-gradient(135deg, #20c997, var(--secondary-color));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(40,167,69,0.4);
}

.btn-warning {
    background: linear-gradient(135deg, var(--primary-color), #ffb300);
    color: var(--dark-color);
    box-shadow: 0 5px 15px rgba(255,193,7,0.3);
}

.btn-warning:hover {
    background: linear-gradient(135deg, #ffb300, var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,193,7,0.4);
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
}

.btn-outline-light:hover {
    background: white;
    color: var(--dark-color);
    transform: translateY(-3px);
}

/* ===== RESPONSIVE DESIGN ===== */
.about-hero-section-compact {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('img/banner.jpg');
    background-size: cover;
    background-position: center;
    padding: 120px 0 60px; /* Smaller padding for compact version */
    text-align: center;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.7);
    content: "â€º";
}

/* Stats Cards */
.stat-card {
    text-align: center;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.stat-card:hover {
    transform: translateY(-5px);
    border: 2px solid var(--primary-color);
}

.stat-card i {
    display: block;
    margin: 0 auto;
}

/* Location and Company Cards */
.location-card, .company-card {
    transition: transform 0.3s ease;
    border: none;
}

.location-card:hover, .company-card:hover {
    transform: translateY(-5px);
}

.distance-item {
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.distance-item:hover {
    border-left: 3px solid var(--primary-color);
    background-color: #f8f9fa !important;
}

/* Mission Statement */
.mission-statement {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.mission-statement::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transform: translate(30px, -30px);
}

/* Value Items */
.value-item {
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 10px;
}

.value-item:hover {
    background-color: #f8f9fa;
    transform: translateX(10px);
}

.icon-circle {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* Administrative Section */
.administrative-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.admin-card {
    border: none;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.admin-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

.admin-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.admin-item {
    transition: all 0.3s ease;
}

.admin-item:hover {
    transform: scale(1.02);
}

/* Feature Cards */
.feature-card {
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,193,7,0.2), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

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

.feature-icon {
    transition: transform 0.3s ease;
}

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

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transform: translate(50px, -50px);
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 150px;
    height: 150px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    transform: translate(-50px, 50px);
}

/* Gradient Backgrounds */
.bg-gradient-primary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

.bg-gradient {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Animation Enhancements */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

/* About Section */
.about-section {
    background-color: #f8f9fa;
}

.divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    margin: 10px auto 30px;
}



/* Image Slider Styles */
.image-slider-container {
    position: relative;
}

.image-slider {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.image-slider img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: opacity 0.5s ease;
}

.slider-buttons {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
}

.slider-buttons .btn {
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.slider-buttons .btn:hover {
    background: white;
    transform: scale(1.1);
}

.dots .dot {
    height: 12px;
    width: 12px;
    margin: 0 6px;
    border-radius: 50%;
    background-color: #bbb;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dots .dot.active {
    background-color: var(--primary-color);
    border-color: var(--secondary-color);
    transform: scale(1.2);
}

.dots .dot:hover {
    background-color: var(--secondary-color);
}

/* Destinations Section */
.destinations-section {
    background-color: #f8f9fa;
}

.destination-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.destination-card .card-img-top {
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.destination-card:hover .card-img-top {
    transform: scale(1.05);
}

.destination-card .card-title {
    color: var(--dark-color);
    font-weight: 600;
}

/* Services Section */
.service-card {
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

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

.service-image {
    width: 100px;
    height: 80px;
    object-fit: cover;
}

/* About Content Styles */
.about-content-section {
    background-color: #f8f9fa;
}

.about-content {
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.direction-card {
    transition: all 0.3s ease;
    border-left: 3px solid var(--primary-color);
}

.direction-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.company-description {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 4px solid var(--secondary-color);
}

/* Footer Styles */
.footer-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.footer-content h5 {
    color: var(--primary-color);
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.footer-content a:hover {
    color: var(--primary-color) !important;
    transform: translateX(5px);
    transition: all 0.3s ease;
}

/* === SEO OPTIMIZED HEADINGS === */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

h4 {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

h5 {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

h6 {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

/* SEO Rich Snippets Styling */
.breadcrumb {
    font-size: 0.875rem;
}

.breadcrumb-item a {
    text-decoration: none;
    color: var(--warning-color, #ffc107);
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

/* Schema.org Microdata Support */
[itemtype] {
    display: block;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet */
@media (max-width: 991px) {
    body {
        padding-top: 70px;
    }
    
    .hero-section,
    .hero-section-compact {
        min-height: 70vh;
        padding: 80px 0 40px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content .display-3,
    .hero-content .display-4 {
        font-size: 2rem;
    }
    
    .service-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .service-image {
        margin-bottom: 1rem;
        margin-right: 0 !important;
    }
    
    .image-slider img {
        height: 300px;
    }
    
    .stat-card {
        margin-bottom: 1rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }
    
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.3rem; }
    
    .navbar-brand img {
        max-height: 50px;
    }
    
    .hero-section,
    .hero-section-compact {
        min-height: 60vh;
        padding: 60px 0 30px;
    }
    
    .about-hero-section-ultra-compact {
        padding: 80px 0 40px;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .hero-content .display-3,
    .hero-content .display-4,
    .hero-content .display-5 {
        font-size: 1.5rem !important;
    }
    
    .hero-buttons .btn {
        margin-bottom: 0.5rem;
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .feature-mini {
        padding: 10px 5px;
        margin-bottom: 0.5rem;
    }
    
    .feature-mini i {
        font-size: 1.2rem !important;
    }
    
    .feature-mini small {
        font-size: 0.75rem;
    }
    
    .image-frame-compact {
        max-height: 250px;
        margin-top: 2rem;
    }
    
    .image-slider img {
        height: 250px;
    }
    
    .slider-buttons .btn {
        width: 40px;
        height: 40px;
    }
    
    .destination-card .card-img-top {
        height: 180px;
    }
    
    .quick-contact-section .d-flex {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin-bottom: 1rem;
        margin-right: 0 !important;
    }
    
    .about-section,
    .destinations-section,
    .services-section,
    .pricing-section,
    .administrative-section {
        padding: 2rem 0 !important;
    }
    
    .quick-contact-section {
        padding: 1.5rem 0 !important;
    }
}

/* Small Mobile */
@media (max-width: 576px) {
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.3rem; }
    h3 { font-size: 1.1rem; }
    
    .hero-content h1 {
        font-size: 1.3rem;
    }
    
    .hero-content .display-3 {
        font-size: 1.8rem !important;
    }
    
    .hero-buttons a {
        display: block;
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .feature-mini {
        padding: 8px 3px;
    }
    
    .image-frame-compact {
        max-height: 200px;
    }
    
    .image-slider img {
        height: 200px;
    }
    
    .slider-buttons .btn {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
    
    .dots .dot {
        height: 10px;
        width: 10px;
        margin: 0 5px;
    }
    
    .destination-card .card-img-top {
        height: 150px;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .service-mini-card {
        margin-bottom: 1rem;
    }
    
    .pricing-item {
        font-size: 0.9rem;
    }
    
    .footer-content {
        margin-bottom: 2rem;
    }
}

/* ===== SCROLL TO TOP BUTTON ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    display: none;
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    cursor: pointer;
}

.scroll-top:hover {
    transform: translateY(-8px) rotate(360deg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.scroll-top i {
    font-size: 1.5rem;
}

/* ===== LOADING ANIMATION ===== */
.loading {
    display: inline-block;
    width: 25px;
    height: 25px;
    border: 3px solid rgba(255,193,7,0.3);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== BADGE STYLES ===== */
.badge {
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 50px;
}

.bg-warning {
    background: linear-gradient(135deg, var(--primary-color), #ffb300) !important;
}

.bg-success {
    background: linear-gradient(135deg, var(--secondary-color), #20c997) !important;
}

/* ===== ALERT STYLES ===== */
.alert {
    border-radius: 15px;
    border: none;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.alert-info {
    background: linear-gradient(135deg, #d1ecf1, #bee5eb);
    color: #0c5460;
}

/* ===== CARD ENHANCEMENTS ===== */
.card {
    border-radius: 15px;
    border: none;
    transition: var(--transition);
}

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

/* ===== SECTION SPACING ===== */
section {
    position: relative;
    overflow: hidden;
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

/* ===== TEXT SELECTION ===== */
::selection {
    background: var(--primary-color);
    color: white;
}

::-moz-selection {
    background: var(--primary-color);
    color: white;
}

/* ===== ACCESSIBILITY ===== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border-width: 0;
}

/* ===== FOCUS STYLES ===== */
a:focus,
button:focus,
.btn:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* ===== PRINT STYLES ===== */
@media print {
    .navbar,
    .hero-section,
    .hero-section-compact,
    .about-hero-section-ultra-compact,
    .quick-contact-section,
    .cta-section,
    .footer-section,
    .btn,
    .scroll-top {
        display: none !important;
    }
    
    body {
        padding-top: 0;
    }
    
    * {
        box-shadow: none !important;
    }
}

/* ===== PERFORMANCE OPTIMIZATIONS ===== */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* ===== ADDITIONAL EFFECTS ===== */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hover-lift {
    transition: var(--transition);
}

.hover-lift:hover {
    transform: translateY(-10px);
}

/* ===== ICON STYLES ===== */
.fas,
.far,
.fab {
    transition: var(--transition);
}

/* ===== LIST STYLES ===== */
.list-unstyled li {
    padding: 0.5rem 0;
    transition: var(--transition);
}

.list-unstyled li:hover {
    padding-left: 10px;
}

/* ===== INPUT STYLES ===== */
.form-control {
    border-radius: 10px;
    border: 2px solid #dee2e6;
    padding: 0.75rem 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255,193,7,0.25);
}

/* ===== HERO BADGE ANIMATION ===== */
.hero-badge .badge {
    position: relative;
    overflow: hidden;
}

.hero-badge .badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    to {
        left: 100%;
    }
}

/* ===== PHONE NUMBER HIGHLIGHT STYLES ===== */
/* Make primary phone number (0939.493.380) stand out */
.btn-success.pulse-button,
a[href="tel:0939493380"].btn-success {
    position: relative;
    font-size: 1.1rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--secondary-color), #20c997);
    animation: pulse 2s infinite;
}

.btn-success.pulse-button::after,
a[href="tel:0939493380"].btn-success::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, transparent, rgba(40,167,69,0.3), transparent);
    border-radius: 50px;
    z-index: -1;
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        opacity: 0.5;
        transform: scale(0.95);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* Primary phone text emphasis */
/* .text-success.fw-bold,
a[href="tel:0939493380"] {
    color: #28a745 !important;
    font-weight: 700 !important;
} */

/* Hero section phone number prominence */
.hero-content h1 .text-success {
    text-shadow: 0 0 20px rgba(40,167,69,0.5), 2px 2px 8px rgba(0,0,0,0.5);
    animation: phoneGlow 3s ease-in-out infinite;
}

@keyframes phoneGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(40,167,69,0.5), 2px 2px 8px rgba(0,0,0,0.5);
    }
    50% {
        text-shadow: 0 0 30px rgba(40,167,69,0.8), 2px 2px 8px rgba(0,0,0,0.5);
    }
}

/* Secondary phone number styling */
a[href="tel:0772888423"] {
    opacity: 0.95;
}

/* Contact info box emphasis */
.contact-info p:has(a[href="tel:0939493380"]) {
    background: linear-gradient(135deg, rgba(40,167,69,0.1), transparent);
    padding: 0.5rem;
    border-radius: 8px;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
}

/* ===== END OF STYLESHEET ===== */

