/* ===== CSS Custom Properties ===== */
:root {
    --dark-primary: #191919;
    --yellow-accent: #FBC408;
    --red-accent: #EC1C24;
    --white: #ffffff;
    --gray-light: #f8f9fa;
    --gray-medium: #6c757d;
    --dark-secondary: #2c2c2c;
    --yellow-hover: #e6b007;
    --red-hover: #d21821;
    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-medium: 0 4px 20px rgba(0,0,0,0.15);
    --shadow-heavy: 0 8px 30px rgba(0,0,0,0.25);
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --border-radius: 10px;
}

/* ===== Global Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-primary);
    background-color: var(--white);
    overflow-x: hidden;
    padding-top: 80px; /* Account for fixed navbar */
}

html {
    scroll-behavior: smooth;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-primary);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-medium);
    margin-bottom: 2rem;
}

.text-yellow {
    color: var(--yellow-accent) !important;
}

.text-red {
    color: var(--red-accent) !important;
}

/* ===== Page Header Styles ===== */
.page-header {
    background: linear-gradient(135deg, var(--dark-primary), var(--dark-secondary));
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/header-section-bg.jpg') center/cover no-repeat;
    opacity: 0.2;
    z-index: -1;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb-nav {
    margin-top: 2rem;
}

.breadcrumb {
    background: rgba(255,255,255,0.1);
    border-radius: 25px;
    padding: 10px 20px;
    display: inline-flex;
}

.breadcrumb-item {
    color: rgba(255,255,255,0.8);
}

.breadcrumb-item.active {
    color: var(--yellow-accent);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: rgba(255,255,255,0.6);
    margin: 0 10px;
}

/* ===== Buttons ===== */
.btn-cta {
    background: linear-gradient(45deg, var(--yellow-accent), var(--red-accent));
    border: none;
    color: var(--white);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-light);
    text-decoration: none;
    display: inline-block;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    color: var(--white);
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    font-weight: 500;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    transition: all var(--transition-fast);
}

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

.btn-outline-primary {
    border: 2px solid var(--yellow-accent);
    color: var(--yellow-accent);
    font-weight: 500;
    transition: all var(--transition-fast);
}

.btn-outline-primary:hover {
    background-color: var(--yellow-accent);
    border-color: var(--yellow-accent);
    color: var(--white);
    transform: translateY(-2px);
}

/* ===== Header / Navbar ===== */
.custom-navbar {
    background: rgba(25, 25, 25, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-light);
}

.custom-navbar.scrolled {
    background: var(--dark-primary);
    padding: 0.3rem 0;
}

.navbar-brand img {
    transition: all var(--transition-fast);
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: all var(--transition-fast);
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--yellow-accent);
    transition: all var(--transition-fast);
}

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

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

/* ===== WhatsApp Button ===== */
.whatsapp-button {
    background: linear-gradient(45deg, #25d366, #128c7e);
    border: none;
    color: var(--white);
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-light);
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-button:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--shadow-medium);
    color: var(--white);
}

.whatsapp-button i {
    font-size: 1.2rem;
    margin-right: 8px;
}

@keyframes whatsapp-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    50% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
}

/* ===== Floating WhatsApp Button ===== */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-float-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: var(--shadow-heavy);
    transition: all var(--transition-fast);
    animation: whatsapp-float 3s ease-in-out infinite;
}

.whatsapp-float-btn:hover {
    transform: scale(1.1);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

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

/* ===== Back to Top Button ===== */
.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--yellow-accent), var(--red-accent));
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-medium);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

/* ===== Hero Section ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(25, 25, 25, 0.7), rgba(25, 25, 25, 0.5)),
                url('../images/header-section-bg.jpg') center/cover no-repeat;
    z-index: -1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    margin-top: 2rem;
}

.hero-car-container {
    position: relative;
    text-align: center;
}

.hero-car-image {
    max-width: 100%;
    height: auto;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}

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

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--white);
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ===== Feature Cards ===== */
.feature-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: all var(--transition-fast);
    height: 100%;
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
    border-color: var(--yellow-accent);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--yellow-accent), var(--red-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
    transition: all var(--transition-fast);
}

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

.feature-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-primary);
}

.feature-card p {
    color: var(--gray-medium);
    line-height: 1.6;
}

/* ===== Service Cards ===== */
.service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-fast);
    height: 100%;
    width: 100%;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-heavy);
}

.service-image {
    position: relative;
    overflow: hidden;
    height: 250px;
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all var(--transition-medium);
    display: block;
    margin: 0;
    padding: 0;
    max-width: none;
    flex-shrink: 0;
    border: none;
    outline: none;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 2rem;
}

.service-content h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark-primary);
}

.service-content p {
    color: var(--gray-medium);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* ===== About Section ===== */
.about-stats h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.about-stats p {
    color: var(--gray-medium);
    font-weight: 500;
}

/* ===== Pricing Cards ===== */
.pricing-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: all var(--transition-fast);
    height: 100%;
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--yellow-accent);
}

.pricing-card.featured {
    background: linear-gradient(145deg, var(--yellow-accent), var(--red-accent));
    color: var(--white);
    transform: scale(1.05);
}

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

.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red-accent);
    color: var(--white);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-header i {
    font-size: 3rem;
    color: var(--yellow-accent);
    margin-bottom: 1rem;
}

.pricing-card.featured .pricing-header i {
    color: var(--white);
}

.pricing-header h4 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.pricing-price {
    margin-bottom: 2rem;
}

.pricing-price .currency {
    font-size: 1.2rem;
    vertical-align: top;
    margin-top: 10px;
    display: inline-block;
}

.pricing-price .amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--yellow-accent);
}

.pricing-card.featured .pricing-price .amount {
    color: var(--white);
}

.pricing-price .period {
    font-size: 1rem;
    color: var(--gray-medium);
}

.pricing-card.featured .pricing-price .period {
    color: rgba(255,255,255,0.8);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.pricing-card.featured .pricing-features li {
    border-bottom-color: rgba(255,255,255,0.2);
}

.pricing-features i {
    color: var(--yellow-accent);
    margin-right: 10px;
}

.pricing-card.featured .pricing-features i {
    color: var(--white);
}

/* ===== Testimonials ===== */
.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: all var(--transition-fast);
    height: 100%;
    border-left: 4px solid var(--yellow-accent);
}

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

.testimonial-stars {
    color: var(--yellow-accent);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-style: italic;
    color: var(--gray-medium);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
    border: 3px solid var(--yellow-accent);
}

.author-info h5 {
    margin-bottom: 0.25rem;
    color: var(--dark-primary);
}

.author-info span {
    color: var(--gray-medium);
    font-size: 0.9rem;
}

/* ===== Booking Section ===== */
.booking-section {
    background: linear-gradient(135deg, var(--dark-primary), var(--dark-secondary));
    color: var(--white);
}

.booking-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow-heavy);
}

.booking-form .form-control,
.booking-form .form-select {
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: var(--border-radius);
    padding: 12px 15px;
    margin-bottom: 1rem;
    transition: all var(--transition-fast);
}

.booking-form .form-control:focus,
.booking-form .form-select:focus {
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(251, 196, 8, 0.3);
    border-color: var(--yellow-accent);
}

/* ===== Content Sections ===== */
.content-section {
    padding: 80px 0;
}

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

.content-section.bg-dark {
    background: var(--dark-primary);
    color: var(--white);
}

.content-section.bg-gradient {
    background: linear-gradient(135deg, var(--dark-primary), var(--dark-secondary));
    color: var(--white);
}

.content-section.bg-gradient .section-title {
    color: var(--white);
}

/* Achievement Cards - Redesigned for better visibility */
.achievement-card {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 193, 7, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.achievement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 193, 7, 0.05), rgba(255, 193, 7, 0.1));
    z-index: -1;
}

.achievement-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 193, 7, 0.6);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.achievement-icon {
    opacity: 0.9;
    transition: all 0.3s ease;
}

.achievement-card:hover .achievement-icon {
    opacity: 1;
    transform: scale(1.1);
}

.achievement-number {
    font-size: 3rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.achievement-card:hover .achievement-number {
    text-shadow: 0 0 20px rgba(255, 193, 7, 0.5);
}

/* ===== Modern Service Cards ===== */
.service-category-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem 1rem;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-fast);
    border: 2px solid transparent;
}

.service-category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--yellow-accent);
}

.service-category-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--yellow-accent), var(--red-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--white);
    font-size: 1.8rem;
    transition: all var(--transition-fast);
}

.service-category-card:hover .service-category-icon {
    transform: scale(1.1) rotate(5deg);
}

.modern-service-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    overflow: hidden;
    transition: all var(--transition-fast);
    height: 100%;
    border: 2px solid transparent;
}

.modern-service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--yellow-accent);
}

.service-image-wrapper {
    position: relative;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all var(--transition-fast);
}

.modern-service-card:hover .service-image {
    transform: scale(1.05);
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    background: rgba(255, 193, 7, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    backdrop-filter: blur(10px);
}

.service-content {
    padding: 2rem;
}

.service-content h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-primary);
}

.service-description {
    color: var(--gray-medium);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
}

.feature-item i {
    margin-right: 0.8rem;
    font-size: 0.9rem;
}

.feature-item span {
    font-size: 0.9rem;
    color: var(--dark-primary);
}

.service-actions {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

/* ===== Safety Requirements Card ===== */
.safety-requirements-card {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border: 2px solid var(--yellow-accent);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.safety-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.safety-header h5 {
    color: var(--dark-primary);
    font-weight: 600;
}

.safety-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.safety-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    font-weight: 500;
    color: var(--dark-primary);
}

.safety-item i {
    margin-right: 0.8rem;
    font-size: 1.1rem;
}

/* ===== Driver Service Features ===== */
.driver-feature {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: 500;
    color: var(--dark-primary);
}

/* ===== Transfer Service Cards ===== */
.transfer-service-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-fast);
    height: 100%;
    text-align: center;
    border: 2px solid transparent;
}

.transfer-service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--yellow-accent);
}

.transfer-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--yellow-accent), var(--red-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
    transition: all var(--transition-fast);
}

.transfer-service-card:hover .transfer-icon {
    transform: scale(1.1) rotate(5deg);
}

.transfer-service-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-primary);
}

.transfer-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    text-align: left;
}

.transfer-features li {
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    color: var(--dark-primary);
}

/* ===== Additional Service Cards ===== */
.additional-service-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-fast);
    height: 100%;
    border: 2px solid transparent;
}

.additional-service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--yellow-accent);
}

.additional-service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--yellow-accent), var(--red-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 1.8rem;
    transition: all var(--transition-fast);
}

.additional-service-card:hover .additional-service-icon {
    transform: scale(1.1) rotate(5deg);
}

.additional-service-card h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-primary);
}

.additional-service-card p {
    color: var(--gray-medium);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===== Footer ===== */
.footer {
    background: var(--dark-primary);
    color: var(--white);
}

.footer-legal-links {
    font-size: 0.9rem;
}

.footer-legal-links .footer-link {
    display: inline;
    padding: 0;
}

.footer-legal-links .footer-link:hover {
    padding-left: 0;
}

.social-links {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--yellow-accent);
    color: var(--white);
    border-radius: 50%;
    transition: all var(--transition-fast);
    text-decoration: none;
    font-size: 16px;
}

.social-link:hover {
    background: var(--red-accent);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-link {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: all var(--transition-fast);
    display: block;
    padding: 0.25rem 0;
}

.footer-link:hover {
    color: var(--yellow-accent);
    opacity: 1;
    padding-left: 10px;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info i {
    color: var(--yellow-accent);
    margin-right: 10px;
    width: 20px;
}

/* ===== Legal Pages Specific Styles ===== */
.legal-content {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    margin-bottom: 2rem;
}

.legal-content h2 {
    color: var(--dark-primary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--yellow-accent);
}

.legal-content h3 {
    color: var(--dark-primary);
    margin: 2rem 0 1rem;
}

.legal-content ul, .legal-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

/* ===== Contact Form Enhancements ===== */
.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.contact-info-card {
    background: linear-gradient(135deg, var(--yellow-accent), var(--red-accent));
    color: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    height: 100%;
}

.contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.contact-info-item i {
    font-size: 1.5rem;
    margin-right: 1rem;
    width: 30px;
    text-align: center;
}

/* ===== Responsive Design ===== */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .feature-card,
    .service-card,
    .pricing-card,
    .testimonial-card {
        margin-bottom: 2rem;
    }

    .hero-car-container {
        margin-top: 3rem;
    }

    body {
        padding-top: 70px;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header {
        padding: 100px 0 60px;
    }

    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }

    .pricing-card.featured {
        transform: none;
    }

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

    .booking-card,
    .contact-form,
    .legal-content {
        padding: 2rem 1.5rem;
    }

    .floating-whatsapp {
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-float-btn {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }

    .back-to-top {
        bottom: 80px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .page-header h1 {
        font-size: 1.75rem;
    }

    .feature-card,
    .service-card,
    .testimonial-card {
        padding: 1.5rem;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .booking-card,
    .contact-form,
    .legal-content {
        padding: 1.5rem 1rem;
    }

    .content-section {
        padding: 60px 0;
    }
}

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

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

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

/* ===== Utility Classes ===== */
.bg-gradient-primary {
    background: linear-gradient(45deg, var(--yellow-accent), var(--red-accent));
}

.bg-gradient-dark {
    background: linear-gradient(135deg, var(--dark-primary), var(--dark-secondary));
}

.text-white-50 {
    color: rgba(255,255,255,0.5) !important;
}

/* ===== Smooth Scrolling Enhancement ===== */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* ===== Focus Styles for Accessibility ===== */
.btn:focus,
.form-control:focus,
.form-select:focus {
    box-shadow: 0 0 0 3px rgba(251, 196, 8, 0.3);
    outline: none;
}

/* ===== Loading Animation ===== */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Terms & Conditions Styles ===== */
.terms-nav {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--yellow);
}

.terms-nav h5 {
    color: var(--dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.terms-nav .nav-link {
    color: #6c757d;
    padding: 0.5rem 0;
    border: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.terms-nav .nav-link:hover {
    color: var(--yellow);
    background: none;
    transform: translateX(5px);
}

.terms-content {
    padding-left: 2rem;
}

.terms-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e9ecef;
}

.terms-section:last-child {
    border-bottom: none;
}

.terms-section h2 {
    color: var(--dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--yellow);
    display: inline-block;
}

.terms-section h4 {
    color: var(--dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.terms-section ul {
    margin-bottom: 1.5rem;
}

.terms-section ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.terms-acknowledgment {
    border-left: 4px solid var(--yellow);
}

@media (max-width: 991px) {
    .terms-content {
        padding-left: 0;
        margin-top: 2rem;
    }

    .terms-nav {
        position: relative !important;
        top: auto !important;
    }
}

/* ===== Additional Icon & Card Styles ===== */
.contact-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: all var(--transition-fast);
    height: 100%;
    text-align: center;
    border: 1px solid transparent;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--yellow-accent);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--yellow-accent), var(--red-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2.5rem;
    transition: all var(--transition-fast);
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-link {
    color: var(--yellow-accent);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.contact-link:hover {
    color: var(--yellow-hover);
    text-decoration: none;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all var(--transition-fast);
    height: 100%;
    position: relative;
    border: 1px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--yellow-accent);
}

.pricing-card.featured {
    background: linear-gradient(135deg, var(--dark-primary), var(--dark-secondary));
    color: var(--white);
    transform: scale(1.05);
    border-color: var(--yellow-accent);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--yellow-accent);
    color: var(--dark-primary);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-header i {
    font-size: 3rem;
    color: var(--yellow-accent);
    margin-bottom: 1rem;
}

.pricing-card.featured .pricing-header i {
    color: var(--yellow-accent);
}

.pricing-price {
    margin: 2rem 0;
}

.pricing-price .currency {
    font-size: 1.2rem;
    vertical-align: top;
}

.pricing-price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--yellow-accent);
}

.pricing-price .period {
    font-size: 1.1rem;
    color: var(--gray-medium);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.pricing-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-card.featured .pricing-features li {
    border-bottom-color: rgba(255,255,255,0.1);
}

.pricing-features i {
    color: var(--yellow-accent);
    margin-right: 0.5rem;
}

.quick-contact-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: all var(--transition-fast);
    height: 100%;
}

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

.contact-form-container {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.office-info {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.office-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.office-detail i {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.office-detail h6 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-box {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: var(--gray-light);
    border-radius: 8px;
    transition: all var(--transition-fast);
}

.feature-box:hover {
    background: var(--yellow-accent);
    color: var(--dark-primary);
    transform: translateX(5px);
}

.feature-box i {
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all var(--transition-fast);
    height: 100%;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--yellow-accent);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--yellow-accent), var(--red-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2.5rem;
    transition: all var(--transition-fast);
}

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

.team-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-fast);
    height: 100%;
}

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

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--yellow-accent);
}

.stats-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: all var(--transition-fast);
    height: 100%;
}

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

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--yellow-accent), var(--red-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--white);
    font-size: 2rem;
    transition: all var(--transition-fast);
}

.stats-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
}

.counter {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--yellow-accent);
    margin-bottom: 0.5rem;
}

/* ===== Breadcrumb Styling ===== */
.breadcrumb-nav {
    margin-top: 2rem;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    justify-content: center;
}

.breadcrumb-item a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

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

.breadcrumb-item.active {
    color: var(--yellow-accent);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.6);
}

/* ===== Social Links Styling ===== */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--gray-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-medium);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--yellow-accent);
    color: var(--dark-primary);
    transform: translateY(-3px);
}

/* ===== Service Card Additional Styling ===== */
.service-image {
    overflow: hidden;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 250px;
    position: relative;
}

.service-image img {
    transition: transform var(--transition-medium);
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    margin: 0;
    padding: 0;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    text-align: left;
}

/* ===== Contact Page Styles ===== */
.contact-info {
    font-size: 0.95rem;
}

.contact-info i {
    width: 20px;
    text-align: center;
}

.contact-info .fas {
    font-size: 1.1rem;
}

.accordion-button {
    background-color: var(--white);
    color: var(--dark-primary);
    border: none;
    padding: 1.25rem 1.5rem;
    font-weight: 500;
}

.accordion-button:not(.collapsed) {
    background-color: var(--yellow-accent);
    color: var(--dark-primary);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(251, 196, 8, 0.25);
    border-color: var(--yellow-accent);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23191919'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1.5rem;
    background-color: var(--gray-light);
    color: var(--dark-primary);
    border-top: 1px solid rgba(0,0,0,0.125);
}

.accordion-item {
    border: 1px solid rgba(0,0,0,0.125);
    border-radius: var(--border-radius) !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-item:last-child {
    margin-bottom: 0;
}

/* Contact Form Styling */
.form-label {
    font-weight: 500;
    color: var(--dark-primary);
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: all var(--transition-fast);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--yellow-accent);
    box-shadow: 0 0 0 0.2rem rgba(251, 196, 8, 0.25);
    outline: none;
}

.form-control::placeholder {
    color: var(--gray-medium);
    opacity: 0.8;
}

/* Map iframe styling */
.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

/* Alert Styling */
.alert {
    border: none;
    border-radius: var(--border-radius);
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.alert-success {
    background-color: #d1e7dd;
    color: #0f5132;
    border-left: 4px solid #198754;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.alert i {
    margin-right: 0.5rem;
}

/* Quick Response Card */
.quick-response-card {
    background: linear-gradient(135deg, var(--yellow-accent), #f0c808);
    color: var(--dark-primary);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    text-align: center;
}

.quick-response-card .btn {
    background: var(--dark-primary);
    color: var(--white);
    border: none;
    font-weight: 500;
}

.quick-response-card .btn:hover {
    background: var(--dark-secondary);
    transform: translateY(-2px);
}

/* ===== Additional Form Styling ===== */
/* Moved to Contact Page Styles section above */

/* ===== Back to Top Button ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--yellow-accent);
    color: var(--dark-primary);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--yellow-hover);
    transform: translateY(-5px);
}

/* ===== Pricing Selector Styling ===== */
.pricing-selector {
    margin-bottom: 2rem;
}

.pricing-selector .btn-group {
    box-shadow: var(--shadow-medium);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.pricing-selector .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    transition: all var(--transition-fast);
    position: relative;
}

.pricing-selector .btn-cta {
    background: var(--yellow-accent);
    color: var(--dark-primary);
}

.pricing-selector .btn-cta:hover {
    background: var(--yellow-hover);
    color: var(--dark-primary);
    transform: translateY(-2px);
}

.pricing-selector .btn-outline-cta {
    background: var(--white);
    color: var(--dark-primary);
    border: 2px solid var(--yellow-accent);
}

.pricing-selector .btn-outline-cta:hover {
    background: var(--yellow-accent);
    color: var(--dark-primary);
    transform: translateY(-2px);
}

.pricing-table {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive pricing selector */
@media (max-width: 768px) {
    .pricing-selector .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .pricing-selector .btn-group {
        width: 100%;
    }

    .pricing-selector .btn {
        flex: 1;
    }
}

