/* Global Styles */
:root {
    --gold: #D4AF37;  /* Altın sarısı */
    --dark-gold: #B8860B;
    --light-gold: #FFD700;
    --black: #000000;
    --dark: #121212;
    --darker: #0a0a0a;
    --light: #f8f9fa;
    --gray: #2a2a2a;
    --text-light: #e0e0e0;
    --text-muted: #888;
}

body {
    font-family: 'Montserrat', 'Arial', sans-serif;
    line-height: 1.7;
    color: var(--text-light);
    background-color: var(--black);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: 0.5px;
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 2.5rem;
    padding-bottom: 1rem;
}

.section-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

/* Text Colors */
.text-gold {
    color: var(--gold) !important;
    transition: color 0.3s ease;
}

.text-gold:hover {
    color: var(--light-gold) !important;
}

.text-muted {
    color: var(--text-muted) !important;
}

/* Buttons */
.btn-gold {
    background-color: var(--gold);
    color: var(--black);
    font-weight: 600;
    padding: 12px 30px;
    border: 2px solid transparent;
    border-radius: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-gold:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-gold);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-gold:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.btn-gold:hover:before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: white;
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Navigation */
.navbar {
    padding: 15px 0;
    background-color: rgba(0, 0, 0, 0.95) !important;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    padding: 10px 0;
    background-color: rgba(0, 0, 0, 0.98) !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold) !important;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    color: var(--light-gold) !important;
    transform: scale(1.02);
}

.nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    margin: 0 12px;
    position: relative;
    padding: 5px 0 !important;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    color: var(--gold) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--gold);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s ease;
    opacity: 0;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
    opacity: 1;
}

.dropdown-menu {
    background-color: var(--dark);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.dropdown-item {
    color: var(--text-light);
    padding: 8px 20px;
    transition: all 0.2s ease;
}

.dropdown-item:hover, .dropdown-item:focus {
    background-color: rgba(255, 215, 0, 0.1);
    color: var(--gold);
    transform: translateX(5px);
}

.dropdown-divider {
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    margin: 5px 0;
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('../images/hero-bg.jpg') no-repeat center center/cover;
    height: 40vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    margin-top: 70px;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.5rem;
    margin-bottom: 0;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.6) 100%), 
                url('https://images.unsplash.com/photo-1569511166187-97db93695b9b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    height: 100vh;
    min-height: 800px;
    position: relative;
    display: flex;
    align-items: center;
    text-align: left;
    color: white;
    padding-top: 80px;
    overflow: hidden;
    background-attachment: fixed;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-section p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
}

.hero-car-image {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s ease;
    display: flex;
    align-items: flex-end;
}

/* Service Section Backgrounds */
#airport {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), 
                url('https://i.ibb.co/0jX7s1n/airport-transfer.jpg') no-repeat center center/cover;
    background-attachment: fixed;
}

#corporate {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), 
                url('https://i.ibb.co/4TqQhqR/corporate-travel.jpg') no-repeat center center/cover;
    background-attachment: fixed;
}

#wedding {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), 
                url('https://i.ibb.co/6nLQd5f/wedding-service.jpg') no-repeat center center/cover;
    background-attachment: fixed;
}

#night {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), 
                url('https://i.ibb.co/0XqVY2n/night-out.jpg') no-repeat center center/cover;
    background-attachment: fixed;
}

#tours {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), 
                url('https://i.ibb.co/4WvYJ8H/city-tour.jpg') no-repeat center center/cover;
    background-attachment: fixed;
}

/* Ensure content is readable over background */
.service-content {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 30px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #airport, #corporate, #wedding, #night, #tours {
        background-attachment: scroll;
    }
    
    .service-content {
        padding: 20px;
    }
}

/* Carousel stilleri */
.carousel-caption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 2rem;
    text-align: left;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    border-radius: 0 0 15px 15px;
    transition: all 0.3s ease;
}

.carousel-caption h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    color: white;
}

.carousel-caption p {
    font-size: 1rem;
    margin-bottom: 0;
    opacity: 0.9;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    color: #f8f9fa;
}

/* Carousel item hover efekti */
.carousel-item:hover .carousel-caption {
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 100%);
}

/* Daha yavaş geçiş efekti */
.carousel-item {
    transition: opacity 1.5s ease-in-out !important;
}

#heroCarousel {
    position: relative;
    z-index: 2;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

#heroCarousel .carousel-item {
    transition: opacity 1.5s ease-in-out;
}

#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
}

#heroCarousel:hover .carousel-control-prev,
#heroCarousel:hover .carousel-control-next {
    opacity: 1;
}

#heroCarousel .carousel-control-prev {
    left: 20px;
}

#heroCarousel .carousel-control-next {
    right: 20px;
}

#heroCarousel .carousel-control-prev-icon,
#heroCarousel .carousel-control-next-icon {
    width: 1.5rem;
    height: 1.5rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-features {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.feature-icon:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-5px);
}

.hero-features h6 {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 2px;
}

.hero-features small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .hero-section {
        text-align: center;
        padding-top: 100px;
    }
    
    .hero-section h1 {
        font-size: 2.8rem;
    }
    
    .hero-section p {
        font-size: 1.25rem;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-features {
        position: relative;
        margin-top: 40px;
    }
}

@media (max-width: 767.98px) {
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .hero-section p {
        font-size: 1.1rem;
    }
    
    .btn-lg {
        padding: 10px 20px;
        font-size: 1rem;
    }
}

.hero-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.1) 0%, rgba(0, 0, 0, 0.8) 70%);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    line-height: 1.2;
    animation: fadeInUp 1s ease;
}

.hero-section p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: var(--text-light);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Services Section */
#services {
    padding: 120px 0;
    background-color: var(--darker);
    position: relative;
    overflow: hidden;
}

#services:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAiIHZpZXdCb3g9IjAgMCAxNDQwIDMyMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsPSIjMDgwODA4IiBkPSJNMCwyODhMMTYwLDI1NkwzMjAsMjg4TDM4NCwyNTZINDQ4TDUxMiwyNTZINTc2TDY0MCwyNTZINzA0TDc2OCwyODhMODMyLDI1Nkw4OTYsMjg4TDk2MCwyNTZMMTAyNCwyODhMMTA4OCwyNTZMMTE1MiwyODhMMTIxNiwyNTZMMTI4MCwyODhMMTM0NCwyNTZMMTQwOCwyODhMMTQ3MiwyNTZMMTUzNiwyODhMMTYwMCwyNTZMMTY2NCwyODhMMTcyOCwyNTZMMTc5MiwyODhMMTg1NiwyNTZMMTkyMCwyODhMMTk4NCwyNTZMMjA0OCwyODhMMjExMiwyNTZMMjE3NiwyODhMMjI0MCwyNTZMMjMwNCwyODhMMjM2OCwyNTZMMjQzMiwyODhMMjQ5NiwyNTZMMjU2MCwyODhMMjYyNCwyNTZMMjY4OCwyODhMMjc1MiwyNTZMMjgxNiwyODhMMjg4MCwyNTZMMjk0NCwyODhMMzAwOCwyNTZMMzA3MiwyODhMMzEzNiwyNTZMMzIwMCwyODhMMzI2NCwyNTZMMzMyOCwyODhMMzM5MiwyNTZMMzQ1NiwyODhMMzUyMCwyNTZMMzU4NCwyODhMMzY0OCwyNTZMMzcxMiwyODhMMzc3NiwyNTZMMzg0MCwyODhMNTc2MCwyODhMNTc2MCwwTDU2OTYsMEw1NjMyLDMyTDU1NjgsMEw1NTA0LDMyTDU0NDAsMEw1Mzc2LDMyTDUzMTIsMEw1MjQ4LDMyTDUxODQsMEw1MTIwLDMyTDUwNTYsMEw0OTkyLDMyTDQ5MjgsMEw0ODY0LDMyTDQ4MDAsMEw0NzM2LDMyTDQ2NzIsMEw0NjA4LDMyTDQ1NDQsMEw0NDgwLDMyTDQ0MTYsMEw0MzUyLDMyTDQyODgsMEw0MjI0LDMyTDQxNjAsMEw0MDk2LDMyTDQwMzIsMEwzOTY4LDMyTDM5MDQsMEwzODQwLDMyTDM3NzYsMEwzNzEyLDMyTDM2NDgsMEwzNTg0LDMyTDM1MjAsMEwzNDU2LDMyTDMzOTIsMEwzMzI4LDMyTDMxNjAsMEwzMDk2LDMyTDMwMzIsMEwyOTY4LDMyTDI5MDQsMEwyODQwLDMyTDI3NTIsMEwyNjg4LDMyTDI2MjQsMEwyNTYwLDMyTDI0OTYsMEwyNDMyLDMyTDIzNjgsMEwyMzA0LDMyTDIyNDAsMEwyMTc2LDMyTDIxMTIsMEwyMDQ4LDMyTDE5ODQsMEwxOTIwLDMyTDE4NTYsMEwxNzkyLDMyTDE3MjgsMEwxNjY0LDMyTDE2MDAsMEwxNTM2LDMyTDE0NzIsMEwxNDA4LDMyTDEzNDQsMEwxMjgwLDMyTDEyMTYsMEwxMTUyLDMyTDEwODgsMEwxMDI0LDMyTDk2MCwwTDg5NiwzMkw4MzIsMEw3NjgsMzJMNzA0LDBMNjQwLDMyTDU3NiwwTDUxMiwzMkg0NDhMMzg0LDBIMzIwTDE2MCwzMkwwLDBaIi8+PC9zdmc+') repeat-x bottom/100% 100px;
    opacity: 0.1;
    z-index: 1;
}

#services .section-title {
    color: var(--text-light);
    margin-bottom: 60px;
}

#services .card {
    border: none;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: var(--dark);
    position: relative;
    overflow: hidden;
    z-index: 2;
    margin-bottom: 30px;
    height: 100%;
}

#services .card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(0, 0, 0, 0.5) 100%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

#services .card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

#services .card:hover:before {
    opacity: 1;
}

#services .card-body {
    padding: 40px 30px;
    position: relative;
    z-index: 2;
}

#services .card-title {
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 15px;
}

#services .card-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
}

#services .card:hover .card-title:after {
    width: 60px;
}

#services .card-text {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.icon-box {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

#services .card:hover .icon-box {
    background: var(--gold);
    transform: rotateY(180deg);
}

#services .card:hover .icon-box i {
    color: var(--black);
}

.icon-box i {
    font-size: 2.5rem;
    color: var(--gold);
    transition: all 0.3s ease;
}

/* Fleet Section */
#fleet {
    padding: 120px 0;
    background-color: var(--black);
    position: relative;
    overflow: hidden;
}

#fleet:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAiIHZpZXdCb3g9IjAgMCAxNDQwIDMyMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsPSIjMDgwODA4IiBkPSJNMjI0MCwzMjBMMjE3NiwyODhMMjExMiwzMjBMMjA0OCwyODhMMTk4NCwzMjBMMTkyMCwyODhMMTg1NiwzMjBMMTc5MiwyODhMMTcyOCwzMjBMMTY2NCwyODhMMTYwMCwzMjBMMTUzNiwyODhMMTQ3MiwzMjBMMTQwOCwyODhMMTM0NCwzMjBMMTI4MCwyODhMMTIxNiwzMjBMMTE1MiwyODhMMTA4OCwzMjBMMTAyNCwyODhMOTYwLDMyMEw4OTYsMjg4TDgzMiwzMjBMNzY4LDI4OEw3MDQsMzIwTDY0MCwyODhMNTc2LDMyMEw1MTIsMjg4TDQ0OCwzMjBMMzg0LDI4OEwzMjAsMzIwTDI1NiwyODhMMTkyLDMyMEwxMjgsMjg4TDY0LDMyMEwwLDI4OEw2NCwyNTZMMTI4LDIyNEwxOTIsMTkyTDI1NiwxNjBMMzIwLDEyOEwzODQsOTZMMzg0LDY0TDM4NCwzMkwyNTYsMEwxMjgsMzJMMCw2NEwwLDk2TDEyOCwxMjhMMjU2LDE2MEwzODQsMTkyTDUxMiwyMjRMNjQwLDI1Nkw3NjgsMjg4TDg5NiwzMjBMMTAyNCwyODhMMTE1MiwyNTZMMTI4MCwyMjRMMTQwOCwxOTJMMTUzNiwxNjBMMTY2NCwxMjhMMTc5Miw5NkwxOTIwLDY0TDIwNDgsMzJMMjE3NiwwTDIzMDQsMzJMMjQzMiw2NEwyNTYwLDk2TDI2ODgsMTI4TDI4MTYsOTZMMjk0NCw2NEwzMDcyLDMyTDMyMDAsNjRMMzMyOCw5NkwzNDU2LDEyOEwzNTg0LDk2TDM3MTIsNjRMMzg0MCwzMkwzOTY4LDY0TDQwOTYsOTZMMzU4NCwxMjhMMzA3MiwxNjBMMjU2MCwxOTJMMjA0OCwxNjBMMTUzNiwxMjhMMTAyNCwxNjBMMTUzNiwxOTJMMjA0OCwyMjRMMjU2MCwxOTJMMzA3MiwyMjRMMzU4NCwxOTJMMzU4NCwyMjRMMzU4NCwyNTZMMzQ1NiwyODhMMzMyOCwzMjBMMzIwMCwyODhMMzA3MiwzMjBMMjk0NCwyODhMMjgxNiwzMjBMMjY4OCwyODhMMjU2MCwzMjBMMjQzMiwyODhMMjMwNCwzMjBaIi8+PC9zdmc+') repeat-x top/100% 100px;
    opacity: 0.1;
    z-index: 1;
}

.fleet-card {
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
    background: var(--dark);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.fleet-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.fleet-card .card-img-top {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.fleet-card:hover .card-img-top {
    transform: scale(1.05);
}

.fleet-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.fleet-card:hover .fleet-overlay {
    opacity: 1;
}

.fleet-card .btn {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease 0.1s;
}

.fleet-card:hover .btn {
    opacity: 1;
    transform: translateY(0);
}

.fleet-card .card-body {
    padding: 25px;
    text-align: center;
}

.fleet-card h4 {
    color: var(--text-light);
    margin-bottom: 10px;
    font-size: 1.5rem;
    font-weight: 700;
}

.fleet-card .text-muted {
    color: var(--text-muted) !important;
    margin-bottom: 15px;
    display: block;
}

.features {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.features span {
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.features i {
    color: var(--gold);
    margin-right: 5px;
    font-size: 1rem;
}

/* Contact Section */
#contact {
    padding: 120px 0;
    background-color: var(--darker);
    position: relative;
    overflow: hidden;
}

#contact:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAiIHZpZXdCb3g9IjAgMCAxNDQwIDMyMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsPSIjMDgwODA4IiBkPSJNMjI0MCwzMjBMMjE3NiwyODhMMjExMiwzMjBMMjA0OCwyODhMMTk4NCwzMjBMMTkyMCwyODhMMTg1NiwzMjBMMTc5MiwyODhMMTcyOCwzMjBMMTY2NCwyODhMMTYwMCwzMjBMMTUzNiwyODhMMTQ3MiwzMjBMMTQwOCwyODhMMTM0NCwzMjBMMTI4MCwyODhMMTIxNiwzMjBMMTE1MiwyODhMMTA4OCwzMjBMMTAyNCwyODhMOTYwLDMyMEw4OTYsMjg4TDgzMiwzMjBMNzY4LDI4OEw3MDQsMzIwTDY0MCwyODhMNTc2LDMyMEw1MTIsMjg4TDQ0OCwzMjBMMzg0LDI4OEwzMjAsMzIwTDI1NiwyODhMMTkyLDMyMEwxMjgsMjg4TDY0LDMyMEwwLDI4OEw2NCwyNTZMMTI4LDIyNEwxOTIsMTkyTDI1NiwxNjBMMzIwLDEyOEwzODQsOTZMMzg0LDY0TDM4NCwzMkwyNTYsMEwxMjgsMzJMMCw2NEwwLDk2TDEyOCwxMjhMMjU2LDE2MEwzODQsMTkyTDUxMiwyMjRMNjQwLDI1Nkw3NjgsMjg4TDg5NiwzMjBMMTAyNCwyODhMMTE1MiwyNTZMMTI4MCwyMjRMMTQwOCwxOTJMMTUzNiwxNjBMMTY2NCwxMjhMMTc5Miw5NkwxOTIwLDY0TDIwNDgsMzJMMjE3NiwwTDIzMDQsMzJMMjQzMiw2NEwyNTYwLDk2TDI2ODgsMTI4TDI4MTYsOTZMMjk0NCw2NEwzMDcyLDMyTDMyMDAsNjRMMzMyOCw5NkwzNDU2LDEyOEwzNTg0LDk2TDM3MTIsNjRMMzg0MCwzMkwzOTY4LDY0TDQwOTYsOTZMMzU4NCwxMjhMMzA3MiwxNjBMMjU2MCwxOTJMMjA0OCwxNjBMMTUzNiwxMjhMMTAyNCwxNjBMMTUzNiwxOTJMMjA0OCwyMjRMMjU2MCwxOTJMMzA3MiwyMjRMMzU4NCwxOTJMMzU4NCwyMjRMMzU4NCwyNTZMMzQ1NiwyODhMMzMyOCwzMjBMMzIwMCwyODhMMzA3MiwzMjBMMjk0NCwyODhMMjgxNiwzMjBMMjY4OCwyODhMMjU2MCwzMjBMMjQzMiwyODhMMjMwNCwzMjBaIi8+PC9zdmc+') repeat-x bottom/100% 100px;
    opacity: 0.1;
    z-index: 1;
}

.contact-container {
    position: relative;
    z-index: 2;
}

.contact-info {
    background-color: var(--dark);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.contact-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.contact-info h4 {
    color: var(--gold);
    margin-bottom: 25px;
    font-size: 1.8rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.contact-info h4:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--gold);
}

.contact-info p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.contact-info p:hover {
    color: var(--text-light);
    transform: translateX(5px);
}

.contact-info p i {
    color: var(--gold);
    margin-right: 15px;
    width: 20px;
    text-align: center;
    font-size: 1.2rem;
}

.contact-form .form-control {
    background-color: var(--darker);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 20px;
    color: var(--text-light);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.contact-form textarea.form-control {
    min-height: 150px;
    resize: none;
}

.contact-form .btn-gold {
    width: 100%;
    padding: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.map-container {
    margin-top: 70px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

/* Footer */
footer {
    background-color: var(--black);
    color: white;
    padding: 30px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section p {
        font-size: 1.2rem;
    }
}
