/*
Theme Name: Travel Services Odisha
Description: A professional WordPress theme designed for travel services in Odisha, featuring taxi services, car rentals, and transportation solutions. Clean, modern design with mobile-first approach.
Version: 1.0.0
Author: Your Name
Text Domain: travel-services-odisha
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: travel, taxi, car-rental, transportation, responsive, mobile-first, custom-header, custom-menu, featured-images, threaded-comments, translation-ready
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    background-attachment: fixed;
    position: relative;
}

/* Modern Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(120, 219, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    position: relative;
}

h1 { 
    font-size: 2.5rem; 
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

h2 { 
    font-size: 2rem; 
    font-weight: 700;
}

h3 { 
    font-size: 1.75rem; 
    font-weight: 600;
}

h4 { 
    font-size: 1.5rem; 
    font-weight: 600;
}

h5 { 
    font-size: 1.25rem; 
    font-weight: 600;
}

h6 { 
    font-size: 1rem; 
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: #555;
    font-weight: 400;
    line-height: 1.7;
}

a {
    color: #2c3e50;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

a:hover {
    color: #34495e;
    transform: translateY(-1px);
}

a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    transition: width 0.3s ease;
}

a:hover::after {
    width: 100%;
}

/* Header Styles */
.site-header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 0;
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.95) 0%, rgba(52, 73, 94, 0.95) 100%);
    box-shadow: 0 12px 40px rgba(44, 62, 80, 0.4);
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 800;
    color: white !important;
    text-decoration: none;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-brand:hover {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    transform: scale(1.05);
}

.site-description {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
    color: rgba(255,255,255,0.8);
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 600;
    padding: 0.75rem 1.5rem !important;
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0 0.25rem;
    position: relative;
    overflow: hidden;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.navbar-nav .nav-link:hover::before {
    left: 100%;
}

.navbar-nav .nav-link:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Dropdown Menu Fixes */
.navbar-nav .dropdown {
    position: relative;
}



.navbar-nav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1050 !important;
    display: none;
    min-width: 18rem;
    padding: 0.75rem 0;
    margin: 0;
    font-size: 0.95rem;
    color: #ffffff;
    text-align: left;
    list-style: none;
    background-clip: padding-box;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 0.75rem;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    animation: dropdownFadeIn 0.2s ease-out;
}

.navbar-nav .dropdown-menu.show {
    display: block !important;
}

.navbar-nav .dropdown-item {
    display: block;
    width: 100%;
    padding: 1rem 1.5rem;
    clear: both;
    font-weight: 500;
    color: #000 !important;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 0.5rem;
    margin: 0.25rem 0.75rem;
}

.navbar-nav .dropdown-item:hover,
.navbar-nav .dropdown-item:focus {
    color: #000000;
    background-color: #ffffff;
    text-decoration: none;
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.navbar-nav .dropdown-item.active,
.navbar-nav .dropdown-item:active {
    color: #000000;
    text-decoration: none;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.navbar-nav .dropdown-toggle::after {
    display: inline-block !important;
    margin-left: 0.75em !important;
    vertical-align: middle !important;
    content: "" !important;
    border-top: 0.4em solid !important;
    border-right: 0.4em solid transparent !important;
    border-bottom: 0 !important;
    border-left: 0.4em solid transparent !important;
    transition: transform 0.3s ease !important;
    border-top-color: rgba(255, 255, 255, 0.8) !important;
    float: right !important;
    margin-top: 0 !important;
    position: relative !important;
    width: auto !important;
    height: auto !important;
    bottom: auto !important;
    line-height: 1 !important;
    top: 12px;
    transform: translateY(-50%) !important;
}

.navbar-nav .dropdown-toggle:hover::after {
    border-top-color: #fff !important;
}

.navbar-nav .dropdown-toggle:empty::after {
    margin-left: 0 !important;
}

/* Dropdown animation */
@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dropdown arrow rotation */
.navbar-nav .dropdown.show .dropdown-toggle::after {
    transform: translateY(-50%) rotate(180deg) !important;
}

/* Ensure dropdowns work on mobile */
@media (min-width: 992px) {
    .navbar-nav .dropdown-menu {
        position: absolute;
    }
}

@media (max-width: 991.98px) {
    .navbar-nav .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0.75rem;
        background-color: #000000;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(10px);
        min-width: 18rem;
    }
    
    .navbar-nav .dropdown-item {
        padding: 1rem 1.5rem;
        color: #ffffff;
        border-radius: 0.5rem;
        margin: 0.25rem 0.75rem;
    }
    
    .navbar-nav .dropdown-item:hover {
        background-color: #ffffff;
        color: #000000;
        transform: translateX(8px);
        box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
    }
    
    .navbar-nav .dropdown-toggle::after {
        border-top-color: rgba(255, 255, 255, 0.8) !important;
        float: right !important;
        margin-top: 0 !important;
        margin-left: 0.75em !important;
        display: inline-block !important;
        position: relative !important;
        width: auto !important;
        height: auto !important;
        bottom: auto !important;
        vertical-align: middle !important;
        line-height: 1 !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
    }
    
    .navbar-nav .dropdown-toggle:hover::after {
        border-top-color: #fff !important;
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* Main Content */
/* .site-main {
    padding: 6rem 0 2rem 0; 
} */

/* Remove padding for home page to eliminate gap above slider */
.home .site-main {
    padding-top: 0;
    position: relative;
}

/* Ensure content flows properly after absolutely positioned slider */
.home .services-section {
    position: relative;
    z-index: 10;
}

/* Hero Section */
.hero-section {
    background: 
        linear-gradient(135deg, rgba(44, 62, 80, 0.8) 0%, rgba(52, 73, 94, 0.8) 50%, rgba(52, 152, 219, 0.8) 100%),
        url('https://images.unsplash.com/photo-1449824913935-59a10b8d2000?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
    padding: 6rem 0;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(44, 62, 80, 0.3);
}

/* Enhanced Hero Overlay */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.1) 0%, transparent 70%);
    animation: heroShimmer 4s ease-in-out infinite;
}

@keyframes heroShimmer {
    0%, 100% { 
        opacity: 0.3; 
        transform: scale(1);
    }
    50% { 
        opacity: 0.7; 
        transform: scale(1.05);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Hero Content Car Image */
.hero-content-car {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    width: 300px;
    height: 200px;
    background: url('https://images.unsplash.com/photo-1552519507-da3b142c6e3d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: carFloat 3s ease-in-out infinite, carGlow 2s ease-in-out infinite;
    z-index: 3;
    border: 3px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.hero-content-car::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, #ff6b35, #f7931e, #ff6b35);
    border-radius: 25px;
    z-index: -1;
    animation: carBorderGlow 2s ease-in-out infinite;
}

.hero-slide-image {
    width: 50%;
}

/* About Us Page Styles */

/* Breadcrumb Section */
.breadcrumb-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 120px 0 40px 0;
    position: relative;
    overflow: hidden;
}

.breadcrumb-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.breadcrumb-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.breadcrumb-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.breadcrumb-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.breadcrumb-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: white;
    transform: translateY(-1px);
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

.breadcrumb-current {
    color: white;
    font-weight: 600;
}

/* About Hero Section */
.about-hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.about-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-hero-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-hero-text p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.about-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-hero-placeholder {
    width: 300px;
    height: 200px;
    background: 
        linear-gradient(135deg, rgba(44, 62, 80, 0.8) 0%, rgba(52, 73, 94, 0.8) 100%),
        url('https://images.unsplash.com/photo-1449824913935-59a10b8d2000?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 20px 60px rgba(44, 62, 80, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.about-hero-placeholder:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(44, 62, 80, 0.4);
}

.about-hero-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-hero-placeholder span {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Our Story Section */
.our-story-section {
    padding: 80px 0;
    background: white;
}

.our-story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.story-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.story-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-radius: 15px;
    color: white;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(44, 62, 80, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.9;
}

/* Our Values Section */
.our-values-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.values-header {
    text-align: center;
    margin-bottom: 4rem;
}

.values-header h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.values-header p {
    font-size: 1.2rem;
    color: #666;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.value-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.value-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: white;
}

.team-header {
    text-align: center;
    margin-bottom: 4rem;
}

.team-header h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.team-header p {
    font-size: 1.2rem;
    color: #666;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-member {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.member-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.member-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.7) 0%, rgba(52, 73, 94, 0.7) 100%);
    z-index: 1;
}

.member-placeholder {
    color: white;
    text-align: center;
    position: relative;
    z-index: 2;
}

.member-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.member-info {
    padding: 2rem;
    text-align: center;
}

.member-info h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.member-info p {
    color: #666;
    margin-bottom: 1.5rem;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.member-social a {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.member-social a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.3);
}

/* About CTA Section */
.about-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    text-align: center;
}

.cta-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: white;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-button {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button.primary {
    background: white;
    color: #2c3e50;
    border: 2px solid white;
}

.cta-button.primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background: white;
    color: #2c3e50;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

/* Services Page Styles */

/* Services Hero Section */
.services-hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.services-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.services-hero-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.services-hero-text p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.services-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.services-hero-placeholder {
    width: 300px;
    height: 200px;
    background: 
        linear-gradient(135deg, rgba(44, 62, 80, 0.8) 0%, rgba(52, 73, 94, 0.8) 100%),
        url('https://images.unsplash.com/photo-1449824913935-59a10b8d2000?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 20px 60px rgba(44, 62, 80, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.services-hero-placeholder:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(44, 62, 80, 0.4);
}

.services-hero-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.services-hero-placeholder span {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Services Grid Section */
.services-grid-section {
    padding: 80px 0;
    background: white;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.services-header p {
    font-size: 1.2rem;
    color: #666;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.service-image {
    height: 200px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.service-placeholder {
    color: white;
    text-align: center;
}

.service-placeholder i {
    font-size: 3rem;
}

.service-content {
    padding: 2rem;
}

.service-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.service-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.service-btn {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.3);
    color: white;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.why-choose-header {
    text-align: center;
    margin-bottom: 4rem;
}

.why-choose-header h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.why-choose-header p {
    font-size: 1.2rem;
    color: #666;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-choose-item {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.why-choose-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.why-choose-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.why-choose-item h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.why-choose-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Services CTA Section */
.services-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    text-align: center;
}

.services-cta-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.services-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: white;
}

.services-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Testimonials Page Styles */

/* Testimonials Hero Section */
.testimonials-hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.testimonials-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.testimonials-hero-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.testimonials-hero-text p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.testimonials-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonials-hero-placeholder {
    width: 300px;
    height: 200px;
    background: 
        linear-gradient(135deg, rgba(44, 62, 80, 0.8) 0%, rgba(52, 73, 94, 0.8) 100%),
        url('https://images.unsplash.com/photo-1449824913935-59a10b8d2000?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 20px 60px rgba(44, 62, 80, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.testimonials-hero-placeholder:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(44, 62, 80, 0.4);
}

.testimonials-hero-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.testimonials-hero-placeholder span {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Testimonials Grid Section */
.testimonials-grid-section {
    padding: 80px 0;
    background: white;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-header h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.testimonials-header p {
    font-size: 1.2rem;
    color: #666;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-item {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.testimonial-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.testimonial-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-quote {
    margin-bottom: 1rem;
}

.testimonial-quote i {
    font-size: 2rem;
    color: #2c3e50;
    opacity: 0.7;
}

.testimonial-text {
    margin-bottom: 1.5rem;
}

.testimonial-text p {
    color: #666;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 0;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
}

.testimonial-rating i {
    font-size: 1rem;
    color: #ddd;
    transition: color 0.3s ease;
}

.testimonial-rating i.active {
    color: #ffc107;
}

.testimonial-author {
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.author-location {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.service-used {
    color: #2c3e50;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0;
}

/* Testimonials CTA Section */
.testimonials-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    text-align: center;
}

.testimonials-cta-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.testimonials-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: white;
}

.testimonials-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Contact Page Styles */

/* Contact Hero Section */
.contact-hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.contact-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-hero-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-hero-text p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.contact-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-hero-placeholder {
    width: 300px;
    height: 200px;
    background: 
        linear-gradient(135deg, rgba(44, 62, 80, 0.8) 0%, rgba(52, 73, 94, 0.8) 100%),
        url('https://images.unsplash.com/photo-1449824913935-59a10b8d2000?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 20px 60px rgba(44, 62, 80, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.contact-hero-placeholder:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(44, 62, 80, 0.4);
}

.contact-hero-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-hero-placeholder span {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Contact Information Section */
.contact-info-section {
    padding: 80px 0;
    background: white;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-info-item {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.contact-info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.contact-info-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact-info-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.contact-info-content a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-content a:hover {
    color: #34495e;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-form-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-form-header h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact-form-header p {
    font-size: 1.2rem;
    color: #666;
}

.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}


.navbar-nav .dropdown-menu  a
{
    color: #000 !important;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c3e50;
    box-shadow: 0 0 0 3px rgba(44, 62, 80, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(44, 62, 80, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: white;
}

.map-header {
    text-align: center;
    margin-bottom: 3rem;
}

.map-header h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.map-header p {
    font-size: 1.2rem;
    color: #666;
}

.map-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.map-placeholder {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 4rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(44, 62, 80, 0.3);
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.map-placeholder h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.map-placeholder p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.map-btn {
    display: inline-block;
    background: white;
    color: #2c3e50;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.map-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    color: #2c3e50;
}

/* FAQ Section */
.contact-faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-header h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.faq-header p {
    font-size: 1.2rem;
    color: #666;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.faq-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Contact CTA Section */
.contact-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    text-align: center;
}

.contact-cta-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: white;
}

.contact-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Contact Responsive Design */
@media (max-width: 768px) {
    .contact-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .contact-hero-text h2 {
        font-size: 2rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-cta-buttons .cta-button {
        width: 200px;
    }
}

/* Testimonials Responsive Design */
@media (max-width: 768px) {
    .testimonials-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .testimonials-hero-text h2 {
        font-size: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .testimonials-cta-buttons .cta-button {
        width: 200px;
    }
}

/* Services Responsive Design */
@media (max-width: 768px) {
    .services-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .services-hero-text h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .services-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .services-cta-buttons .cta-button {
        width: 200px;
    }
}

/* About Us Responsive Design */
@media (max-width: 768px) {
    .breadcrumb-content h1 {
        font-size: 2.2rem;
    }
    
    .about-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-hero-text h2 {
        font-size: 2rem;
    }
    
    .our-story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-stats {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .breadcrumb-section {
        padding: 120px 0 30px 0;
    }
    
    .breadcrumb-content h1 {
        font-size: 1.8rem;
    }
    
    .about-hero-section,
    .our-story-section,
    .our-values-section,
    .team-section,
    .about-cta-section {
        padding: 60px 0;
    }
    
    .about-hero-placeholder {
        width: 250px;
        height: 150px;
    }
    
    .story-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .value-card,
    .team-member {
        margin: 0 1rem;
    }

    .hero-buttons {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
    }
}

@keyframes carFloat {
    0%, 100% {
        transform: translateY(-50%) translateY(0px);
    }
    50% {
        transform: translateY(-50%) translateY(-20px);
    }
}

@keyframes carGlow {
    0%, 100% {
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 25px 80px rgba(255, 107, 53, 0.4);
    }
}

@keyframes carBorderGlow {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 800;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255,255,255,0.95);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out 0.3s both;
    font-weight: 400;
    line-height: 1.6;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Swiper Slider Styles */
.hero-slider {
    height: 80vh;
    min-height: 700px;
    max-height: 800px;
    overflow: hidden;
    margin-top: 0;
    padding-top: 0;
    position: relative;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
    border-radius: 0 0 30px 30px;
    box-shadow: 0 20px 60px rgba(44, 62, 80, 0.3);
}

.hero-slider.loaded {
    opacity: 1;
    transform: translateY(0);
}

.hero-slider.animate-in {
    animation: heroSlideIn 1s ease-out;
}

@keyframes heroSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-slider .swiper {
    height: 100%;
    width: 100%;
}

.hero-slider .swiper-wrapper {
    height: 100%;
}

.hero-slide {
    height: 100%;
    width: 100%;
    background: 
        linear-gradient(135deg, rgba(44, 62, 80, 0.7) 0%, rgba(52, 73, 94, 0.7) 50%, rgba(52, 152, 219, 0.7) 100%),
        url('https://images.unsplash.com/photo-1552519507-da3b142c6e3d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}


/* Parallax effect for hero slides */
.hero-slide::after {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(2px);
    z-index: -1;
    transform: scale(1.1);
}

/* Overlay for better text readability */
.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.6), rgba(52, 73, 94, 0.6));
    z-index: 1;
    transition: opacity 0.3s ease;
}

.hero-slide:hover::before {
    opacity: 0.8;
}

/* Content positioning */
.hero-slide-content {
    position: relative;
    z-index: 2;
    text-align: left;
    color: white;
    max-width: 900px;
    padding: 0 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.hero-slide-content.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.hero-slide h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-shadow: 0 4px 8px rgba(0,0,0,0.5);
    line-height: 1.2;
    animation: slideInDown 1s ease-out 0.3s both;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-slide p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    animation: slideInUp 1s ease-out 0.6s both;
    color: rgba(255,255,255,0.95);
    font-weight: 400;
    line-height: 1.6;
}

/* Hero buttons container */
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    animation: slideInUp 1s ease-out 0.9s both;
}

/* Enhanced CTA button styles */
.cta-button {
    display: inline-block;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0.5rem;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    border: none;
    cursor: pointer;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button.primary {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border: 2px solid transparent;
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, #c0392b, #a93226);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(231, 76, 60, 0.4);
    color: white;
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.1);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

/* Button loading state */
.cta-button.loading {
    pointer-events: none;
    opacity: 0.7;
}

.cta-button.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Swiper Navigation */
.swiper-pagination {
    bottom: 30px !important;
}

.swiper-pagination-bullet {
    background: white;
    opacity: 0.5;
    width: 12px;
    height: 12px;
    margin: 0 8px !important;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #e74c3c;
    opacity: 1;
    transform: scale(1.2);
}

.swiper-button-next,
.swiper-button-prev {
    color: white;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.9), rgba(192, 57, 43, 0.9));
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-button-next::before,
.swiper-button-prev::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 50% !important;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: linear-gradient(135deg, rgba(231, 76, 60, 1), rgba(192, 57, 43, 1));
    transform: scale(1.15) translateY(-2px);
    box-shadow: 0 12px 40px rgba(231, 76, 60, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

.swiper-button-next:hover::before,
.swiper-button-prev:hover::before {
    opacity: 1;
}

.swiper-button-next:active,
.swiper-button-prev:active {
    transform: scale(1.05) translateY(0);
    transition: all 0.1s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 22px !important;
    font-weight: 900;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.swiper-button-next {
    right: 40px;
}

.swiper-button-prev {
    left: 40px;
}

/* Add subtle animation to arrows */
@keyframes arrowPulse {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 8px 32px rgba(231, 76, 60, 0.2);
    }
}

@keyframes arrowGlow {
    0%, 100% {
        border-color: rgba(255, 255, 255, 0.2);
    }
    50% {
        border-color: rgba(255, 255, 255, 0.4);
    }
}

.swiper-button-next,
.swiper-button-prev {
    animation: arrowPulse 3s ease-in-out infinite, arrowGlow 2s ease-in-out infinite;
}

/* Add focus states for accessibility */
.swiper-button-next:focus,
.swiper-button-prev:focus {
    outline: 3px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

/* Add loading state animation */
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    animation: none;
}

/* Ensure perfect round shape - override any Swiper defaults */
.swiper-button-next,
.swiper-button-prev {
    border-radius: 50% !important;
    -webkit-border-radius: 50% !important;
    -moz-border-radius: 50% !important;
    -ms-border-radius: 50% !important;
    -o-border-radius: 50% !important;
}

/* Additional round shape enforcement */
.swiper-button-next:after,
.swiper-button-prev:after {
    border-radius: 50% !important;
}

/* Responsive Design for Hero Slider */
@media (max-width: 1024px) {
    .hero-slider {
        height: 75vh;
        min-height: 600px;
        max-height: 700px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 70vh;
        min-height: 500px;
        max-height: 600px;
    }
    
    .hero-slide h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-slide p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        width: 200px;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 50px;
        height: 50px;
        display: block; /* Show on mobile with modern design */
    }
    
    .swiper-button-next {
        right: 20px;
    }
    
    .swiper-button-prev {
        left: 20px;
    }
    
    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 1.4rem;
    }
    
    .swiper-pagination {
        bottom: 20px !important;
    }
    
    .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        margin: 0 6px !important;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 60vh;
        min-height: 500px;
        max-height: 600px;
    }
    
    .hero-slide h1 {
        font-size: 2rem;
    }
    
    .hero-slide p {
        font-size: 1rem;
    }
    
    .hero-slide-content {
        padding: 0 1rem;
    }
    
    .cta-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
        width: 180px;
    }
}

@media (max-width: 360px) {
    .hero-slider {
        height: 60vh;
        min-height: 500px;
        max-height: 600px;
    }
    
    .hero-slide h1 {
        font-size: 1.8rem;
    }
    
    .hero-slide p {
        font-size: 0.9rem;
    }
    
    .cta-button {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
        width: 160px;
    }
}


/* Services Section */
.services-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    z-index: 10;
    min-height: 0;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(44, 62, 80, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(52, 73, 94, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.services-carousel {
    position: relative;
    margin-top: 2rem;
    min-height: 0;
    width: 100%;
    overflow: hidden;
}

.services-swiper {
    padding: 20px 0 60px 0;
    overflow: hidden;
    min-height: 0;
    width: 100%;
    max-width: 100%;
}

.services-swiper .swiper-wrapper {
    align-items: stretch;
    min-height: 0;
    display: flex;
    width: 100%;
    box-sizing: border-box;
}

.services-swiper .swiper-slide {
    height: auto;
    display: flex;
    align-items: stretch;
    min-height: 0;
    width: 100%;
}

.service-slide {
    height: 100%;
    display: flex;
    align-items: stretch;
    min-height: 0;
    width: 100%;
}

.service-slide .service-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 0;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-color: rgba(44, 62, 80, 0.3);
}

.service-card-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
}

.service-card-image i {
    display: none;
}

.service-card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.2), rgba(0,0,0,0.1));
    transition: all 0.3s ease;
}

.service-card:hover .service-card-image::before {
    background: linear-gradient(135deg, rgba(0,0,0,0.1), rgba(0,0,0,0.05));
}

.service-card-content {
    padding: 2.5rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 0;
    position: relative;
    z-index: 2;
}

.service-icon {
    display: none;
}

/* Service Card Images - Dynamic images are handled via inline styles */
.service-placeholder {
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.service-card h3 {
    color: #2c3e50;
    margin-bottom: 1.2rem;
    flex-shrink: 0;
    font-size: 1.4rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.service-card:hover h3 {
    color: #2c3e50;
    transform: translateY(-2px);
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
    flex: 1;
    min-height: 0;
    overflow: hidden;
    line-height: 1.6;
    font-size: 1rem;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: #e74c3c;
    margin-bottom: 1rem;
    flex-shrink: 0;
    text-shadow: 0 2px 4px rgba(231, 76, 60, 0.2);
    transition: all 0.3s ease;
}

.service-card:hover .service-price {
    transform: scale(1.05);
    color: #c0392b;
}

/* Services Carousel Navigation */
.services-swiper .swiper-button-next,
.services-swiper .swiper-button-prev {
    color: #e74c3c;
    background: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    top: 50%;
    transform: translateY(-50%);
    border: 2px solid rgba(231, 76, 60, 0.1);
    backdrop-filter: blur(10px);
}

.services-swiper .swiper-button-next:hover,
.services-swiper .swiper-button-prev:hover {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 15px 40px rgba(231, 76, 60, 0.3);
    border-color: rgba(231, 76, 60, 0.3);
}

.services-swiper .swiper-button-next:after,
.services-swiper .swiper-button-prev:after {
    font-size: 20px;
    font-weight: 700;
}

.services-swiper .swiper-button-next {
    right: 30px;
}

.services-swiper .swiper-button-prev {
    left: 30px;
}

/* Services Carousel Pagination */
.services-swiper .swiper-pagination {
    bottom: 30px;
}

.services-swiper .swiper-pagination-bullet {
    background: #e74c3c;
    opacity: 0.4;
    width: 14px;
    height: 14px;
    margin: 0 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50%;
}

.services-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.3);
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
}

/* Dynamic Pagination for Infinite Effect */
.services-swiper .swiper-pagination-dynamic {
    overflow: hidden;
}

.services-swiper .swiper-pagination-dynamic .swiper-pagination-bullet {
    transform: scale(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-swiper .swiper-pagination-dynamic .swiper-pagination-bullet-active {
    transform: scale(1);
}

.services-swiper .swiper-pagination-dynamic .swiper-pagination-bullet-active-main {
    transform: scale(1.2);
}

.services-swiper .swiper-pagination-dynamic .swiper-pagination-bullet-active-prev {
    transform: scale(0.9);
}

.services-swiper .swiper-pagination-dynamic .swiper-pagination-bullet-active-next {
    transform: scale(0.9);
}

/* Enhanced Infinite Scroll Effect */
.services-swiper .swiper-wrapper {
    transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.services-swiper .swiper-slide {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-swiper .swiper-slide-active {
    transform: scale(1.05);
    z-index: 2;
}

.services-swiper .swiper-slide-next,
.services-swiper .swiper-slide-prev {
    opacity: 0.7;
    transform: scale(0.95);
}

/* Counter Section */
.counter-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
    position: relative;
    overflow: hidden;
}

.counter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.counter-item {
    text-align: center;
    padding: 50px 30px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.counter-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.counter-item:hover::before {
    left: 100%;
}

.counter-item:hover {
    transform: translateY(-15px) scale(1.08);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.counter-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #ff6b35, #f7931e, #ff6b35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: pulse 2s infinite;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.counter-icon::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 3px solid rgba(255, 107, 53, 0.4);
    border-radius: 50%;
    animation: ripple 2s infinite;
}

.counter-icon i {
    font-size: 3rem;
    color: white;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.counter-number {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.counter-number .count {
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.counter-suffix {
    font-size: 2.5rem;
    color: #ff6b35;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(255, 107, 53, 0.3);
}

.counter-label {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Counter Animation Keyframes */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
    }
    70% {
        transform: scale(1.08);
        box-shadow: 0 0 0 15px rgba(255, 107, 53, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* Counter Section Responsive Design */
@media (max-width: 768px) {
    .counter-section {
        padding: 80px 0;
    }
    
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
    
    .counter-item {
        padding: 40px 20px;
    }
    
    .counter-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .counter-icon i {
        font-size: 2.5rem;
    }
    
    .counter-number {
        font-size: 3rem;
    }
    
    .counter-suffix {
        font-size: 2rem;
    }
    
    .counter-label {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .counter-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .counter-item {
        padding: 35px 20px;
    }
    
    .counter-number {
        font-size: 2.5rem;
    }
    
    .counter-suffix {
        font-size: 1.5rem;
    }
}

/* Services Carousel Responsive Design */
@media (max-width: 768px) {
    .services-swiper .swiper-button-next,
    .services-swiper .swiper-button-prev {
        width: 50px;
        height: 50px;
    }
    
    .services-swiper .swiper-button-next:after,
    .services-swiper .swiper-button-prev:after {
        font-size: 16px;
    }
    
    .services-swiper .swiper-button-next {
        right: 15px;
    }
    
    .services-swiper .swiper-button-prev {
        left: 15px;
    }
}

/* Types Of Vehicles Available Section */
.vehicle-types-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.vehicle-types-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(44, 62, 80, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(52, 73, 94, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.vehicle-types-section h2 {
    color: #2c3e50;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.vehicle-types-section p {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Vehicle Category Filter */
.vehicle-category-filter {
    margin: 60px 0 50px 0;
    text-align: center;
}

.category-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.category-btn {
    padding: 15px 30px;
    border: 2px solid #e9ecef;
    background: white;
    color: #666;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.category-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(231, 76, 60, 0.1), transparent);
    transition: left 0.5s ease;
}

.category-btn:hover::before {
    left: 100%;
}

.category-btn:hover {
    border-color: #e74c3c;
    color: #e74c3c;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.2);
}

.category-btn.active {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border-color: #e74c3c;
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}

/* Vehicle Cards Slider */
.vehicle-cards-slider {
    position: relative;
    margin-top: 3rem;
}

.vehicle-swiper {
    padding: 30px 0 70px 0;
    overflow: hidden;
}

.vehicle-slide {
    height: auto;
    display: flex;
    align-items: stretch;
    min-height: 0;
    width: 100%;
}

.vehicle-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 0;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.vehicle-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.vehicle-card:hover::before {
    opacity: 1;
}

.vehicle-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-color: rgba(44, 62, 80, 0.3);
}

.vehicle-image {
    height: 220px;
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
}

.vehicle-image i {
    display: none;
}


.vehicle-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.vehicle-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.1), rgba(0,0,0,0.05));
    transition: all 0.3s ease;
}

.vehicle-card:hover .vehicle-placeholder::before {
    background: linear-gradient(135deg, rgba(0,0,0,0.05), rgba(0,0,0,0.02));
}

.vehicle-icon {
    display: none;
}

/* Vehicle Category Images */
.sedan-bg {
    background: url('https://images.unsplash.com/photo-1552519507-da3b142c6e3d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover;
}

.suv-bg {
    background: url('https://images.unsplash.com/photo-1549317336-206569e8475c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover;
}

.prime-bg {
    background: url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover;
}

.shuttle-bg {
    background: url('https://images.unsplash.com/photo-1544620347-c4fd4a3d5957?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover;
}

.hatchback-bg {
    background: url('https://images.unsplash.com/photo-1555215695-3004980ad54e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover;
}

.vehicle-content {
    padding: 30px 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 0;
    position: relative;
    z-index: 2;
}

.vehicle-content h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.vehicle-card:hover .vehicle-content h3 {
    color: #2c3e50;
    transform: translateY(-2px);
}

.vehicle-category {
    color: #e74c3c;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    flex-shrink: 0;
}

.vehicle-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: #27ae60;
    margin-bottom: 15px;
    flex-shrink: 0;
    text-shadow: 0 2px 4px rgba(39, 174, 96, 0.2);
    transition: all 0.3s ease;
}

.vehicle-card:hover .vehicle-price {
    transform: scale(1.05);
    color: #1e8449;
}

.vehicle-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
    flex-shrink: 0;
}

.feature {
    background: #f8f9fa;
    color: #666;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.vehicle-card:hover .feature {
    background: #e9ecef;
    color: #495057;
    transform: translateY(-1px);
}

.rent-btn {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.rent-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.rent-btn:hover::before {
    left: 100%;
}

.rent-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(231, 76, 60, 0.4);
    background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
}

/* Vehicle Slider Navigation */
.vehicle-swiper .swiper-button-next,
.vehicle-swiper .swiper-button-prev {
    color: #e74c3c;
    background: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    top: 50%;
    transform: translateY(-50%);
    border: 2px solid rgba(231, 76, 60, 0.1);
    backdrop-filter: blur(10px);
}

.vehicle-swiper .swiper-button-next:hover,
.vehicle-swiper .swiper-button-prev:hover {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 15px 40px rgba(231, 76, 60, 0.3);
    border-color: rgba(231, 76, 60, 0.3);
}

.vehicle-swiper .swiper-button-next:after,
.vehicle-swiper .swiper-button-prev:after {
    font-size: 20px;
    font-weight: 700;
}

.vehicle-swiper .swiper-button-next {
    right: 30px;
}

.vehicle-swiper .swiper-button-prev {
    left: 30px;
}

/* Vehicle Slider Pagination */
.vehicle-swiper .swiper-pagination {
    bottom: 30px;
}

.vehicle-swiper .swiper-pagination-bullet {
    background: #e74c3c;
    opacity: 0.4;
    width: 14px;
    height: 14px;
    margin: 0 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50%;
}

.vehicle-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.3);
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
}

/* Vehicle Types Responsive Design */
@media (max-width: 768px) {
    .vehicle-types-section {
        padding: 80px 0;
    }
    
    .vehicle-types-section h2 {
        font-size: 2.5rem;
    }
    
    .category-buttons {
        gap: 15px;
    }
    
    .category-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .vehicle-swiper .swiper-button-next,
    .vehicle-swiper .swiper-button-prev {
        width: 50px;
        height: 50px;
    }
    
    .vehicle-swiper .swiper-button-next:after,
    .vehicle-swiper .swiper-button-prev:after {
        font-size: 16px;
    }
    
    .vehicle-swiper .swiper-button-next {
        right: 15px;
    }
    
    .vehicle-swiper .swiper-button-prev {
        left: 15px;
    }
    
    .vehicle-content {
        padding: 25px 20px;
    }
    
    .vehicle-content h3 {
        font-size: 1.3rem;
    }
    
    .vehicle-price {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .vehicle-types-section {
        padding: 60px 0;
    }
    
    .vehicle-types-section h2 {
        font-size: 2rem;
    }
    
    .category-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .category-btn {
        width: 220px;
        padding: 15px 25px;
    }
    
    .vehicle-swiper .swiper-button-next,
    .vehicle-swiper .swiper-button-prev {
        display: none;
    }
    
    .vehicle-content {
        padding: 20px 15px;
    }
    
    .vehicle-features {
        justify-content: center;
    }
}

/* About Section */
.about-section {
    padding: 6rem 0;
    position: relative;
    z-index: 10;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(44, 62, 80, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(52, 73, 94, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-text h2 {
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.about-text p {
    margin-bottom: 1.8rem;
    font-size: 1.2rem;
    line-height: 1.7;
    color: #555;
}

/* About Image Placeholder */
.about-image-placeholder {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #e74c3c 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.about-image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(0, 0, 0, 0.1) 0%, transparent 50%);
    animation: aboutShimmer 4s ease-in-out infinite;
}

@keyframes aboutShimmer {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 0.9; }
}

.about-features {
    list-style: none;
    margin-top: 2.5rem;
}

.about-features li {
    padding: 0.8rem 0;
    color: #666;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.about-features li:hover {
    color: #2c3e50;
    transform: translateX(5px);
}

.about-features li:before {
    content: "✓";
    color: #27ae60;
    font-weight: bold;
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

.about-image {
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(44, 62, 80, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(52, 73, 94, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border-color: rgba(44, 62, 80, 0.3);
}

.testimonial-card:before {
    content: "\201C";
    font-size: 5rem;
    color: #e74c3c;
    position: absolute;
    top: -15px;
    left: 25px;
    font-family: serif;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(231, 76, 60, 0.3);
}

.testimonial-content {
    margin-top: 1.5rem;
    font-style: italic;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    margin-top: 2rem;
    font-weight: 700;
    color: #2c3e50;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

.testimonial-rating {
    color: #f39c12;
    margin-top: 0.8rem;
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    position: relative;
    z-index: 10;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(44, 62, 80, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(52, 73, 94, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.contact-info h3 {
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    font-size: 1.8rem;
    color: #e74c3c;
    margin-right: 1.5rem;
    width: 40px;
    text-align: center;
}

/* Social Media Icons */
.social-media-icons {
    display: flex;
    gap: 15px;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 1;
}

.social-icon i {
    font-size: 18px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

/* Facebook */
.social-icon.facebook {
    background: linear-gradient(135deg, #3b5998, #2d4373);
    color: white;
}

.social-icon.facebook:hover {
    background: linear-gradient(135deg, #2d4373, #1e2f5a);
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 12px 30px rgba(59, 89, 152, 0.4);
}

.social-icon.facebook:hover i {
    transform: scale(1.2);
}

/* LinkedIn */
.social-icon.linkedin {
    background: linear-gradient(135deg, #0077b5, #005885);
    color: white;
}

.social-icon.linkedin:hover {
    background: linear-gradient(135deg, #005885, #003d5c);
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 12px 30px rgba(0, 119, 181, 0.4);
}

.social-icon.linkedin:hover i {
    transform: scale(1.2);
}

/* Twitter */
.social-icon.twitter {
    background: linear-gradient(135deg, #1da1f2, #0d8bd9);
    color: white;
}

.social-icon.twitter:hover {
    background: linear-gradient(135deg, #0d8bd9, #0a6bb3);
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 12px 30px rgba(29, 161, 242, 0.4);
}

.social-icon.twitter:hover i {
    transform: scale(1.2);
}

/* Instagram */
.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #e0852a 0%, #d55a2b 25%, #d11d3a 50%, #c11a5d 75%, #b0157a 100%);
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 12px 30px rgba(188, 24, 136, 0.4);
}

.social-icon.instagram:hover i {
    transform: scale(1.2);
}

/* Social Media Icons Responsive */
@media (max-width: 768px) {
    .social-media-icons {
        gap: 12px;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
    }
    
    .social-icon i {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .social-media-icons {
        gap: 10px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
    
    .social-icon i {
        font-size: 15px;
    }
}

.contact-form {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.contact-form h3 {
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #2c3e50;
    font-size: 1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #e74c3c;
    box-shadow: 0 0 0 0.3rem rgba(231, 76, 60, 0.15);
    transform: translateY(-2px);
}

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.8rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 3rem;
    appearance: none;
}

.form-group select option {
    padding: 0.8rem;
    background-color: white;
    color: #333;
}

.form-group textarea {
    height: 140px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
    background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
}

.submit-btn:active {
    transform: translateY(-1px);
}

.submit-btn.loading {
    color: transparent;
}

.submit-btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    margin: -12px 0 0 -12px;
    border: 3px solid transparent;
    border-top: 3px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.footer-widget h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.footer-widget a {
    color: #bdc3c7;
    transition: all 0.3s ease;
}

.footer-widget a:hover {
    color: white;
    transform: translateX(5px);
}

.site-info {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    color: #bdc3c7;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

/* WhatsApp Chat Button */
.whatsapp-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.whatsapp-btn:hover {
    transform: scale(1.15) translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
    color: white;
    background: linear-gradient(135deg, #128c7e, #0d6b5f);
}

/* Form Messages */
.form-messages {
    margin-top: 20px;
    padding: 0;
}

.form-message {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: slideIn 0.3s ease-out;
}

.form-message.success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-message i {
    margin-right: 10px;
    font-size: 18px;
}

.form-message.success i {
    color: #28a745;
}

.form-message.error i {
    color: #dc3545;
}

.form-message span {
    flex: 1;
    line-height: 1.4;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Button Loading States */
.btn-loading {
    display: none;
}

.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Toast Notifications */
.toast-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 400px;
    background: #28a745;
    color: white;
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transform: translateX(100%);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    line-height: 1.4;
    position: relative;
    overflow: hidden;
}

.toast-notification.toast-error {
    background: #dc3545;
}

.toast-notification i {
    font-size: 18px;
    flex-shrink: 0;
}

.toast-notification span {
    flex: 1;
}

.toast-notification button {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    margin-left: 10px;
    opacity: 0.8;
    transition: opacity 0.2s;
    flex-shrink: 0;
}

.toast-notification button:hover {
    opacity: 1;
}

.toast-notification::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: rgba(255,255,255,0.3);
    width: 100%;
    transform: scaleX(1);
    transform-origin: left;
    transition: transform 5s linear;
}

/* Mobile responsive toasts */
@media (max-width: 768px) {
    .toast-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        margin-bottom: 8px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.6rem;
    }
    
    .site-description {
        display: none;
    }
    
    .hero-slide h1 {
        font-size: 2.8rem;
    }
    
    .hero-slide p {
        font-size: 1.1rem;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-swiper .swiper-button-next,
    .services-swiper .swiper-button-prev {
        width: 50px;
        height: 50px;
    }
    
    .services-swiper .swiper-button-next:after,
    .services-swiper .swiper-button-prev:after {
        font-size: 16px;
    }
    
    .services-swiper .swiper-button-next {
        right: 15px;
    }
    
    .services-swiper .swiper-button-prev {
        left: 15px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-slider {
        height: calc(70vh - 60px); /* Account for smaller header on mobile */
        min-height: 500px;
        max-height: 600px;
        top: 60px; /* Adjust for smaller header */
    }
    
    .home .services-section {
        margin-top: calc(70vh - 60px); /* Adjust for tablet slider height */
    }
    
    .hero-slide h1 {
        font-size: 2.2rem;
    }
    
    .hero-slide p {
        font-size: 1rem;
    }
    
    .hero-slide-content {
        padding: 0 1rem;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
    
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.9rem; }
    h3 { font-size: 1.6rem; }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-slider {
        height: 60vh;
        min-height: 500px;
        max-height: 600px;
        top: 50px; /* Adjust for mobile header */
    }
    
    .home .services-section {
        margin-top: calc(60vh - 50px); /* Adjust for mobile slider height */
    }
    
    .hero-slide h1 {
        font-size: 1.8rem;
    }
    
    .hero-slide p {
        font-size: 1rem;
    }
    
    .hero-slide-content {
        padding: 0 1rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .service-card,
    .testimonial-card {
        padding: 2rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading States */
.loading {
    position: relative;
    color: transparent !important;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    margin: -12px 0 0 -12px;
    border: 3px solid transparent;
    border-top: 3px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* Hero Slider with Multi-step Form - Grid Layout */
.hero-slide-content {
    display: grid !important;
    grid-template-columns: 60% 40% !important;
    gap: 40px;
    align-items: stretch;
    min-height: auto;
    padding: 60px 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    margin-top:25px;
    box-sizing: border-box;
}

.hero-content-left {
    color: white;
    z-index: 2;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.hero-content-left h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.hero-content-left p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-buttons .cta-button {
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.hero-buttons .cta-button.primary {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    border: 2px solid transparent;
}

.hero-buttons .cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.4);
}

.hero-buttons .cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.hero-buttons .cta-button.secondary:hover {
    background: white;
    color: #2c3e50;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

/* Multi-step Booking Form */
.hero-booking-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
    min-height: auto;
    margin-top: 20px;
    overflow: hidden;
    box-sizing: border-box;
}

.hero-booking-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e74c3c, #f39c12, #27ae60, #3498db);
    border-radius: 20px 20px 0 0;
}

.booking-form-header {
    text-align: center;
    margin-bottom: 25px;
    width: 100%;
}

.booking-form-header h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Progress Steps */
.form-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
}

.form-progress::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: #e9ecef;
    z-index: 1;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    cursor: pointer;
    transition: all 0.3s ease;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e9ecef;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.step-label {
    font-size: 12px;
    color: #6c757d;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
}

.progress-step.active .step-number {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    transform: scale(1.1);
}

.progress-step.active .step-label {
    color: #e74c3c;
    font-weight: 600;
}

.progress-step.completed .step-number {
    background: #27ae60;
    color: white;
}

.progress-step.completed .step-label {
    color: #27ae60;
}

/* Form Steps */
.form-step {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.form-step.active {
    display: block;
}

/* Ensure buttons are visible */
.form-step .btn-prev,
.form-step .btn-next,
.form-step .btn-submit {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Force button visibility across all screen sizes */
@media (max-width: 768px) {
    .form-step .btn-prev,
    .form-step .btn-next,
    .form-step .btn-submit {
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

@media (max-width: 480px) {
    .form-step .btn-prev,
    .form-step .btn-next,
    .form-step .btn-submit {
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.multistep-form {
    width: 100%;
    overflow: hidden;
}

.multistep-form .row {
    margin-left: -8px;
    margin-right: -8px;
    display: block;
}

.multistep-form .row::after {
    content: "";
    display: table;
    clear: both;
}

.multistep-form .col-sm-6,
.multistep-form .col-sm-12 {
    padding-left: 8px;
    padding-right: 8px;
    margin-bottom: 15px;
    flex: 0 0 auto;
    width: 50%;
    float: left;
    position: relative;
    min-height: 1px;
}

.multistep-form .col-sm-12 {
    width: 100%;
}

@media (max-width: 575.98px) {
    .multistep-form .col-sm-6 {
        width: 100%;
        float: none;
    }
}

.multistep-form .form-group {
    margin-bottom: 0px;
    width: 100%;
    box-sizing: border-box;
}

.multistep-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 14px;
}

.multistep-form input,
.multistep-form select,
.multistep-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: white;
    box-sizing: border-box;
    max-width: 100%;
}

.multistep-form input:focus,
.multistep-form select:focus,
.multistep-form textarea:focus {
    outline: none;
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.multistep-form input::placeholder,
.multistep-form textarea::placeholder {
    color: #adb5bd;
}

.multistep-form textarea {
    resize: vertical;
    min-height: 80px;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 15px;
    justify-content: space-between;
    margin-top: 0px;
    padding-top: 0px;
    border-top: 1px solid #e9ecef;
    width: 100%;
    box-sizing: border-box;
}

.btn-prev,
.btn-next,
.btn-submit {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    display: inline-block;
    text-align: center;
    min-width: 100px;
}

.btn-prev {
    background: #6c757d;
    color: white;
    flex: 1;
}

.btn-prev:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

.btn-next,
.btn-submit {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    flex: 2;
}

.btn-next:hover,
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Form Messages */
.booking-form-messages {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    width: 100%;
}

.booking-success-message {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.booking-error-message {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-slide-content {
        grid-template-columns: 55% 45%;
        gap: 30px;
    }
    
    .hero-content-left h1 {
        font-size: 2.5rem;
    }
    
    .hero-booking-form {
        max-width: 100%;
        padding: 25px;
    }
}

@media (max-width: 992px) {
    .hero-slide-content {
        display: block !important;
        grid-template-columns: none !important;
        gap: 0;
        text-align: center;
        min-height: auto;
        padding: 40px 20px;
    }
    
    .hero-content-left {
        width: 100% !important;
        order: 1;
        display: block;
        margin-bottom: 0;
    }
    
    .hero-content-left h1 {
        font-size: 2.2rem;
    }
    
    .hero-booking-form {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .hero-slide-content {
        display: block !important;
        grid-template-columns: none !important;
        gap: 0;
        text-align: center;
        padding: 70px 15px;
    }

    .hero-text{
        padding-top:40px;
    }
    
    .hero-content-left {
        width: 100% !important;
        order: 1;
        display: block;
        margin-bottom: 0;
    }
    
    .hero-content-left h1 {
        font-size: 2rem;
    }
    
    .hero-content-left p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: row;
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .hero-booking-form {
        display: none !important;
    }
    
    .booking-form-header h3 {
        font-size: 1.3rem;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
    
    .step-label {
        font-size: 11px;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-prev,
    .btn-next,
    .btn-submit {
        width: 100%;
        margin-bottom: 0;
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

@media (max-width: 480px) {
    .hero-slide-content {
        display: block !important;
        grid-template-columns: none !important;
        gap: 0;
        text-align: center;
        padding: 20px 10px;
    }
    
    .hero-content-left {
        width: 100% !important;
        order: 1;
        display: block;
        margin-bottom: 0;
    }
    
    .hero-content-left h1 {
        font-size: 1.8rem;
    }
    
    .hero-content-left p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 250px;
    }
    
    .hero-booking-form {
        display: none !important;
    }
    
    .multistep-form input,
    .multistep-form select,
    .multistep-form textarea {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .btn-prev,
    .btn-next,
    .btn-submit {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* Additional Mobile Fixes */
@media (max-width: 600px) {
    .hero-slide-content {
        display: block !important;
        grid-template-columns: none !important;
        flex-direction: column !important;
    }
    
    .hero-content-left {
        width: 100% !important;
        max-width: 100% !important;
        display: block !important;
        float: none !important;
        clear: both !important;
    }
    
    .hero-booking-form {
        display: none !important;
    }
}

/* Mobile Booking Form Section - Outside Hero Slider */
@media (max-width: 992px) {
    .mobile-booking-section {
        display: block !important;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-radius: 20px;
        padding: 30px 20px;
        margin: 20px;
        margin-top: 90px;
        box-shadow: 0 20px 60px rgba(0,0,0,0.2);
        position: relative;
        z-index: 2;
        width: calc(100% - 40px);
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .mobile-booking-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #e74c3c, #f39c12, #27ae60, #3498db);
        border-radius: 20px 20px 0 0;
    }
}

@media (min-width: 993px) {
    .mobile-booking-section {
        display: none !important;
    }
}

/* Mobile Services Section Fix */
@media (max-width: 992px) {
    .home .services-section {
        margin-top: 0 !important;
    }
    
    .navbar-nav .dropdown-menu a {
        color: #fff !important;
    }
}

/* Contact Form Styles */
.form-messages {
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 5px;
    font-weight: 500;
}

.success-message {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.field-error {
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.1);
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #dc3545;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.submit-btn {
    background: linear-gradient(135deg, #007cba, #005a87);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #005a87, #004085);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 124, 186, 0.3);
}

.submit-btn:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-loading {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-loading i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Team Support Section */
.team-support-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.team-support-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.team-support-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.team-support-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
}

.team-support-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #ecf0f1;
}

.team-support-text p strong {
    color: #3498db;
    font-weight: 600;
}

.support-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.support-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.support-feature:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.support-feature i {
    font-size: 1.5rem;
    color: #3498db;
    width: 30px;
    text-align: center;
}

.support-feature span {
    font-weight: 500;
    color: #ffffff;
}

.team-support-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.support-icon {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(52, 152, 219, 0.3);
    position: relative;
    animation: pulse 2s infinite;
}

.support-icon::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid rgba(52, 152, 219, 0.3);
    border-radius: 50%;
    animation: ripple 2s infinite;
}

.support-icon i {
    font-size: 4rem;
    color: white;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

/* Team Support Responsive Design */
@media (max-width: 768px) {
    .team-support-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .team-support-text h2 {
        font-size: 2rem;
    }
    
    .support-features {
        align-items: center;
    }
    
    .support-feature {
        max-width: 300px;
    }
    
    .support-icon {
        width: 150px;
        height: 150px;
    }
    
    .support-icon i {
        font-size: 3rem;
    }
}

/* Partner Logo Slider Section */
.partner-logos-section {
    background: #f8f9fa;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.partner-logos-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(44, 62, 80, 0.02), rgba(52, 73, 94, 0.02));
}

.partner-logos-section h2 {
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.partner-logos-section p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.partner-logos-slider {
    position: relative;
    z-index: 2;
    margin-top: 50px;
}

.partner-swiper {
    padding: 20px 0;
    overflow: hidden;
}

.partner-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
}

.partner-logo {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.partner-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.1), transparent);
    transition: left 0.5s ease;
}

.partner-logo:hover::before {
    left: 100%;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #3498db;
}

.logo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    width: 100%;
    height: 100%;
}

.logo-placeholder i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.partner-logo:hover .logo-placeholder i {
    color: #2980b9;
    transform: scale(1.1);
}

.logo-placeholder span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.partner-logo:hover .logo-placeholder span {
    color: #3498db;
}

/* Partner Slider Navigation */
.partner-swiper .swiper-button-next,
.partner-swiper .swiper-button-prev {
    color: #3498db;
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.partner-swiper .swiper-button-next:hover,
.partner-swiper .swiper-button-prev:hover {
    background: #3498db;
    color: white;
    transform: scale(1.1);
}

.partner-swiper .swiper-button-next:after,
.partner-swiper .swiper-button-prev:after {
    font-size: 18px;
    font-weight: 600;
}

.partner-swiper .swiper-button-next {
    right: 20px;
}

.partner-swiper .swiper-button-prev {
    left: 20px;
}

/* Partner Slider Pagination */
.partner-swiper .swiper-pagination {
    bottom: 10px;
}

.partner-swiper .swiper-pagination-bullet {
    background: #3498db;
    opacity: 0.5;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.partner-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.2);
}

/* Partner Logo Responsive Design */
@media (max-width: 768px) {
    .partner-logos-section {
        padding: 60px 0;
    }
    
    .partner-logos-section h2 {
        font-size: 2rem;
    }
    
    .partner-logos-section p {
        font-size: 1rem;
    }
    
    .partner-slide {
        height: 100px;
    }
    
    .logo-placeholder i {
        font-size: 2rem;
    }
    
    .logo-placeholder span {
        font-size: 0.8rem;
    }
    
    .partner-swiper .swiper-button-next,
    .partner-swiper .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    
    .partner-swiper .swiper-button-next:after,
    .partner-swiper .swiper-button-prev:after {
        font-size: 14px;
    }
    
    .partner-swiper .swiper-button-next {
        right: 10px;
    }
    
    .partner-swiper .swiper-button-prev {
        left: 10px;
    }
}

@media (max-width: 480px) {
    .partner-logos-section {
        padding: 40px 0;
    }
    
    .partner-logos-section h2 {
        font-size: 1.8rem;
    }
    
    .partner-slide {
        height: 80px;
    }
    
    .logo-placeholder i {
        font-size: 1.5rem;
        margin-bottom: 5px;
    }
    
    .logo-placeholder span {
        font-size: 0.7rem;
    }
    
    .partner-swiper .swiper-button-next,
    .partner-swiper .swiper-button-prev {
        display: none;
    }
}
