/* ===== BASE STYLES ===== */
:root {
    --primary: #8B6B4A;       /* Premium Bronze */
    --secondary: #1A1A1A;     /* Dark Charcoal */
    --accent: #D9C7B8;        /* Light Beige */
    --text: #333333;          /* Dark Text */
    --light: #FFFFFF;         /* White */
    --dark: #000000;          /* Black */
    --overlay: rgba(0, 0, 0, 0.7);
    --transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
    font-size: 16px;
  }
  
  body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--light);
  }
  
  .container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
  }
  
  section {
    padding: 100px 0;
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  ul {
    list-style: none;
  }
  
  .btn {
    display: inline-block;
    background: var(--primary);
    color: var(--light);
    padding: 15px 40px;
    border: 2px solid var(--primary);
    border-radius: 0;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  
  .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--dark);
    z-index: -1;
    transition: var(--transition);
  }
  
  .btn:hover {
    color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
  
  .btn:hover::before {
    left: 0;
  }
  
  .btn-outline {
    background: transparent;
    color: var(--primary);
  }
  
  .btn-outline:hover {
    color: var(--light);
  }
  
  .section-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.8rem;
    color: var(--secondary);
    position: relative;
    font-weight: 700;
    letter-spacing: 2px;
  }
  
  .section-subtitle {
    text-align: center;
    margin-bottom: 70px;
    font-size: 1.2rem;
    color: var(--text);
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: var(--primary);
    margin: 20px auto;
  }
  
  .hidden {
    display: none !important;
  }
  
  /* ===== LOADER ===== */
  .loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 1s ease-out;
  }

.loader-logo span:nth-child(1) { animation-delay: 0.1s; }
.loader-logo span:nth-child(2) { animation-delay: 0.2s; }
.loader-logo span:nth-child(3) { animation-delay: 0.3s; }
.loader-logo span:nth-child(4) { animation-delay: 0.4s; }
.loader-logo span:nth-child(5) { animation-delay: 0.5s; }
.loader-logo span:nth-child(6) { animation-delay: 0.6s; }
.loader-logo span:nth-child(7) { animation-delay: 0.7s; }
.loader-logo span:nth-child(8) { animation-delay: 0.8s; }
.loader-logo span:nth-child(9) { animation-delay: 0.9s; }
.loader-logo span:nth-child(10) { animation-delay: 1.0s; }
.loader-logo span:nth-child(11) { animation-delay: 1.1s; }
.loader-logo span:nth-child(12) { animation-delay: 1.2s; }
.loader-logo span:nth-child(13) { animation-delay: 1.3s; }
.loader-logo span:nth-child(14) { animation-delay: 1.4s; }
.loader-logo span:nth-child(15) { animation-delay: 1.5s; }
.loader-logo span:nth-child(16) { animation-delay: 1.6s; }
  
  .loader-logo {
    display: flex;
    margin-bottom: 15px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 80%;
  }
  
  .loader-logo span {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 3px;
    opacity: 0;
    transform: translateY(20px);
    animation: letterAppear 0.5s forwards;
  }
  
  .loader-subtitle {
    color: var(--accent);
    font-size: 1.2rem;
    letter-spacing: 5px;
    margin-bottom: 30px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeIn 1s forwards 1.5s;
  }
  
  .loader-bar {
    width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
  }
  
  .loader-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    animation: loadingBar 2.5s ease-in-out forwards;
  }
  
  @keyframes letterAppear {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes loadingBar {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(0); }
  }
  
  @keyframes fadeIn {
    to { opacity: 1; }
  }
  
  /* ===== HEADER ===== */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: black;
    transition: var(--transition);
    padding: 30px 0;
  }
  
  .header.scrolled {
    background: var(--dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
  }
  
  .header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    color: var(--light);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    transition: var(--transition);
  }
  
  .logo span {
    color: var(--primary);
    font-weight: 300;
  }
  
  .navbar {
    display: flex;
    align-items: center;
  }
  
  .nav-links {
    display: flex;
  }
  
  .nav-links li {
    margin-left: 40px;
  }
  
  .nav-links a {
    color: var(--light);
    font-weight: 500;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    font-size: 0.9rem;
    text-transform: uppercase;
  }
  
  .nav-links a:hover,
  .nav-links a.active {
    color: var(--primary);
  }
  
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
  }
  
  .nav-links a:hover::after,
  .nav-links a.active::after {
    width: 100%;
  }
  
  .hamburger {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1001;
  }
  
  .hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--light);
    transition: var(--transition);
  }
  
  /* ===== HERO SLIDER ===== */
  .hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
  }
  
  .slider-container {
    width: 100%;
    height: 100%;
    position: relative;
  }
  
  .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .slide video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .slide .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
  }
  
  .slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--light);
    width: 90%;
    max-width: 1000px;
    z-index: 10;
  }
  
  .slide-content h1 {
    font-size: 4.5rem;
    margin-bottom: 30px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    font-weight: 700;
    letter-spacing: 3px;
    line-height: 1.2;
  }
  
  .slide-content p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    font-weight: 300;
    letter-spacing: 1px;
  }
  
  .scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .scroll-down span {
    display: block;
    width: 20px;
    height: 20px;
    border-bottom: 2px solid var(--light);
    border-right: 2px solid var(--light);
    transform: rotate(45deg);
    margin: -10px;
    animation: scrollDown 2s infinite;
  }
  
  .scroll-down span:nth-child(2) {
    animation-delay: -0.2s;
  }
  
  .scroll-down span:nth-child(3) {
    animation-delay: -0.4s;
  }
  
  @keyframes scrollDown {
    0% {
      opacity: 0;
      transform: rotate(45deg) translate(-20px, -20px);
    }
    50% {
      opacity: 1;
    }
    100% {
      opacity: 0;
      transform: rotate(45deg) translate(20px, 20px);
    }
  }
  
  /* ===== SERVICES ===== */
  .services {
    background: var(--light);
    position: relative;
    overflow: hidden;
  }
  
  .services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/pattern-light.png') repeat;
    opacity: 0.05;
    z-index: 0;
  }
  
  .services .container {
    position: relative;
    z-index: 1;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }
  
  .service-card {
    background: var(--light);
    border-radius: 5px;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .service-image {
    height: 250px;
    overflow: hidden;
  }
  
  .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
  }
  
  .service-card:hover .service-image img {
    transform: scale(1.1);
  }
  
  .service-content {
    padding: 30px;
    position: relative;
  }
  
  .service-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: -60px auto 20px;
    position: relative;
    z-index: 2;
    border: 5px solid var(--light);
    transition: var(--transition);
  }
  
  .service-card:hover .service-icon {
    transform: rotateY(180deg);
    background: var(--dark);
  }
  
  .service-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
  }
  
  .service-card p {
    margin-bottom: 20px;
    text-align: center;
    color: var(--text);
  }
  
  .service-features {
    margin-top: 20px;
  }
  
  .service-features li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
  }
  
  .service-features i {
    color: var(--primary);
    position: absolute;
    left: 0;
    top: 3px;
  }
  
  /* ===== VEHICLE FLEET ===== */
  .vehicle-fleet {
    background: var(--dark);
    position: relative;
    overflow: hidden;
  }

  .vehicle-fleet .section-title,
.vehicle-fleet .section-subtitle {
  color: #ffffff; /* Beyaz renk */
}
  
  .vehicle-fleet::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/pattern-dark.png') repeat;
    opacity: 0.03;
    z-index: 0;
  }
  
  .vehicle-fleet .container {
    position: relative;
    z-index: 1;
  }
  
  .fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
  }
  
  .vehicle-card {
    background: var(--light);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
  }
  
  .vehicle-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  }
  
  .vehicle-image {
    height: 250px;
    position: relative;
    overflow: hidden;
  }
  
  .vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
  }
  
  .vehicle-card:hover .vehicle-image img {
    transform: scale(1.05);
  }
  
  .vehicle-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: var(--light);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .vehicle-details {
    padding: 30px;
  }
  
  .vehicle-details h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary);
  }
  
  .vehicle-specs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  
  .spec-item {
    text-align: center;
  }
  
  .spec-item i {
    display: block;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 5px;
  }
  
  .vehicle-features {
    margin-bottom: 25px;
  }
  
  .vehicle-features li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
  }
  
  .vehicle-features i {
    color: var(--primary);
    position: absolute;
    left: 0;
    top: 3px;
  }
  
  /* ===== TESTIMONIALS ===== */
  .testimonials {
    background: var(--light);
    position: relative;
  }
  
  .testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/pattern-light.png') repeat;
    opacity: 0.05;
    z-index: 0;
  }
  
  .testimonials .container {
    position: relative;
    z-index: 1;
  }
  
  .testimonials-slider {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
  }
  
  .testimonial {
    display: none;
    background: var(--light);
    padding: 50px;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  }
  
  .testimonial.active {
    display: block;
    animation: fadeIn 1s ease;
  }
  
  .quote-icon {
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.2;
    margin-bottom: 20px;
  }
  
  .testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
    position: relative;
  }
  
  .testimonial-text::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -20px;
    font-size: 5rem;
    color: var(--primary);
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
  }
  
  .client-info {
    display: flex;
    align-items: center;
  }
  
  .client-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
    border: 3px solid var(--primary);
  }
  
  .client-details h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
  }
  
  .client-details span {
    font-size: 0.9rem;
    color: var(--text);
    opacity: 0.7;
    display: block;
    margin-bottom: 5px;
  }
  
  .client-rating {
    color: var(--primary);
  }
  
  .testimonial-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
  }
  
  .testimonial-prev,
  .testimonial-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent);
    border: none;
    color: var(--primary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .testimonial-prev:hover,
  .testimonial-next:hover {
    background: var(--primary);
    color: var(--light);
  }
  
  .testimonial-dots {
    display: flex;
    gap: 10px;
  }
  
  .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent);
    cursor: pointer;
    transition: var(--transition);
  }
  
  .dot.active {
    background: var(--primary);
    transform: scale(1.2);
  }
  
  /* ===== BOOKING ===== */
  .booking {
    background: var(--dark);
    color: var(--light);
    position: relative;
    overflow: hidden;
  }
  
  .booking::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/pattern-dark.png') repeat;
    opacity: 0.05;
    z-index: 0;
  }
  
  .booking .container {
    position: relative;
    z-index: 1;
  }
  
  .booking-container {
    display: flex;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  }
  
  .booking-image {
    flex: 1;
    position: relative;
  }
  
  .booking-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .booking-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .booking-overlay h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--light);
  }
  
  .booking-overlay p {
    margin-bottom: 30px;
    opacity: 0.9;
  }
  
  .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
  }
  
  .contact-item i {
    font-size: 1.2rem;
    color: var(--primary);
    margin-right: 15px;
    width: 30px;
    text-align: center;
  }
  
  .booking-form {
    flex: 1;
    background: var(--light);
    padding: 50px;
  }
  
  .booking-form h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--secondary);
    position: relative;
    padding-bottom: 15px;
  }
  
  .booking-form h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary);
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--secondary);
  }
  
  .form-group input,
  .form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 0;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--light);
  }
  
  .form-group input:focus,
  .form-group select:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 5px 15px rgba(139, 107, 74, 0.1);
  }
  
  .form-row {
    display: flex;
    gap: 20px;
  }
  
  /* ===== CONTACT ===== */
  .contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
  }
  
  .contact-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--light);
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
  }
  
  .contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  }
  
  .contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--primary);
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: var(--transition);
  }
  
  .contact-card:hover .contact-icon {
    transform: rotateY(180deg);
    background: var(--dark);
  }
  
  .contact-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
  }
  
  .contact-card p {
    margin-bottom: 10px;
  }
  
  .contact-map {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  /* ===== FOOTER ===== */
  .footer {
    background: var(--secondary);
    color: var(--light);
    position: relative;
  }
  
  .footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--primary);
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
  }
  
  .footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    color: var(--light);
  }
  
  .footer-col h3 span {
    color: var(--primary);
    font-weight: 300;
  }
  
  .footer-col p {
    margin-bottom: 20px;
    opacity: 0.8;
    line-height: 1.8;
  }
  
  .footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
  }
  
  .footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
    font-size: 1.1rem;
  }
  
  .footer-social a:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-5px);
  }
  
  .footer-col ul li {
    margin-bottom: 15px;
  }
  
  .footer-col ul li a {
    opacity: 0.8;
    transition: var(--transition);
    display: block;
  }
  
  .footer-col ul li a:hover {
    opacity: 1;
    color: var(--primary);
    transform: translateX(5px);
  }
  
  .newsletter-form {
    display: flex;
    margin-top: 20px;
  }
  
  .newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 0;
    font-size: 1rem;
  }
  
  .newsletter-form button {
    background: var(--primary);
    color: var(--light);
    border: none;
    padding: 0 20px;
    cursor: pointer;
    transition: var(--transition);
  }
  
  .newsletter-form button:hover {
    background: var(--dark);
  }
  
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 1200px
  }
  
  .footer-copyright {
    opacity: 0.7;
    font-size: 0.9rem;
  }
  
  .footer-payments {
    display: flex;
    gap: 15px;
  }
  
  .footer-payments i {
    font-size: 1.8rem;
    opacity: 0.7;
    transition: var(--transition);
  }
  
  .footer-payments i:hover {
    opacity: 1;
    color: var(--primary);
  }
  
  /* ===== WHATSAPP BUTTON ===== */
  .whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 70px;
    height: 70px;
    background: #25D366;
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 100;
    transition: var(--transition);
    animation: pulse 2s infinite;
  }
  
  .whatsapp-float:hover {
    transform: translateY(-5px) scale(1.1);
    background: #128C7E;
    animation: none;
  }
  
  @keyframes pulse {
    0% {
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
      box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
  }
  
  /* ===== RESPONSIVE STYLES ===== */
  @media (max-width: 1200px) {
    .slide-content h1 {
      font-size: 3.5rem;
    }


    .logo {
        color: var(--light);
        font-size: 1rem;
        font-weight: 700;
        letter-spacing: 1px;
        transition: var(--transition);
      }
    
    .booking-container {
      flex-direction: column;
    }
    
    .booking-image {
      height: 300px;
    }

    .loader-logo span {
        font-size: 1rem;
        font-weight: 700;
        color: var(--primary);
        margin: 0 3px;
        opacity: 0;
        transform: translateY(20px);
        animation: letterAppear 0.5s forwards;
      }
  }
  
  @media (max-width: 992px) {
    .section-title {
      font-size: 2.5rem;
    }
    
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .fleet-grid {
      grid-template-columns: 1fr;
    }
    
    .contact-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  
  @media (max-width: 768px) {
    .hamburger {
      display: flex;
    }

    .footer-bottom{
      width: 100%;
    }
    
    .nav-links {
      position: fixed;
      top: 0;
      left: -100%;
      width: 80%;
      height: 100vh;
      background: var(--dark);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
      z-index: 1000;
    }
    
    .nav-links.active {
      left: 0;
    }
    
    .nav-links li {
      margin: 20px 0;
    }
    
    .nav-links a {
      font-size: 1.2rem;
    }
    
    .section-title {
      font-size: 2rem;
    }
    
    .slide-content h1 {
      font-size: 2.5rem;
    }
    
    .slide-content p {
      font-size: 1.2rem;
    }
    
    .services-grid {
      grid-template-columns: 1fr;
    }
    
    .testimonial {
      padding: 30px;
    }
    
    .whatsapp-float {
      width: 60px;
      height: 60px;
      font-size: 1.8rem;
      bottom: 30px;
      right: 30px;
    }
  }
  
  @media (max-width: 576px) {
    .container {
      padding: 0 20px;
    }
    
    section {
      padding: 70px 0;
    }
    
    .section-title {
      font-size: 1.8rem;
      margin-bottom: 15px;
    }
    
    .section-subtitle {
      margin-bottom: 50px;
    }
    
    .slide-content h1 {
      font-size: 2rem;
      line-height: 1.3;
    }
    
    .slide-content p {
      font-size: 1rem;
    }
    
    .btn {
      padding: 12px 30px;
      font-size: 0.9rem;
    }
    
    .contact-grid {
      grid-template-columns: 1fr;
    }
    
    .form-row {
      flex-direction: column;
      gap: 0;
    }
    
    .footer-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    
    .footer-bottom {
      flex-direction: column;
      gap: 20px;
      text-align: center;
    }
  }
  
  /* ===== ANIMATIONS ===== */
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  @keyframes slideUp {
    from { 
      opacity: 0;
      transform: translateY(50px);
    }
    to { 
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* ===== HAMBURGER MENU ANIMATION ===== */
  .hamburger.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  /* ===== SCROLLBAR STYLING ===== */
  ::-webkit-scrollbar {
    width: 10px;
  }
  
  ::-webkit-scrollbar-track {
    background: var(--accent);
  }
  
  ::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: #7a5d3f;
  }
  
  /* ===== SELECTION COLORS ===== */
  ::selection {
    background: var(--primary);
    color: var(--light);
  }

  /* Why Us Section */
.why-us {
  background: #f8f8f8;
  padding: 100px 0;
  position: relative;
}

.why-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/pattern-light.png') repeat;
  opacity: 0.05;
  z-index: 0;
}

.why-us .container {
  position: relative;
  z-index: 1;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feature-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--primary);
  transition: all 0.3s ease;
}

.feature-card:hover::before {
  height: 100%;
  opacity: 0.1;
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: var(--dark);
  color: var(--primary);
}

.feature-card h3 {
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: var(--secondary);
}

.feature-card p {
  color: var(--text);
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 768px) {
  .features-grid {
      grid-template-columns: 1fr;
  }
  
  .feature-card {
      padding: 30px 20px;
  }
}

.footer-contact .contact-info {
  margin-top: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  line-height: 1.5;
}

.contact-item i {
  color: #f1c40f; /* VIP Rental sarısı */
  font-size: 18px;
  margin-right: 12px;
  margin-top: 3px;
}

.contact-item p {
  margin: 0;
  color: #ecf0f1;
}

.contact-item a {
  color: #ecf0f1;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-item a:hover {
  color: #f1c40f;
  text-decoration: underline;
}


.social-buttons {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.phone-btn, .whatsapp-btn, .instagram-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  position: relative;
  animation: pulse 2s infinite;
  transition: all 0.3s ease;
}

/* Telefon butonu */
.phone-btn {
  background: #4285f4;
  animation-delay: 0s;
}

/* WhatsApp butonu */
.whatsapp-btn {
  background: #25D366;
  animation-delay: 0.3s;
}

/* Instagram butonu */
.instagram-btn {
  background: #f09433; 
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  animation-delay: 0.6s;
}

/* Pulsing animasyonu */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }
}

/* Hover'da animasyonu durdur */
.phone-btn:hover, 
.whatsapp-btn:hover, 
.instagram-btn:hover {
  animation: none;
  transform: scale(1.15) !important;
}

/* Mobil uyum */
@media (max-width: 768px) {
  .social-buttons {
    right: 15px;
    bottom: 15px;
    gap: 10px;
  }
  
  .phone-btn, .whatsapp-btn, .instagram-btn {
    width: 50px;
    height: 50px;
    font-size: 25px;
    animation: pulse-mobile 2s infinite;
  }

  @keyframes pulse-mobile {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
  }
}

/* Agency Banner Styles */
.agency-banner {
  background-color: #0d0c0c;
  padding: 30px 0;
  text-align: center;
  margin: 10px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.agency-banner-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.agency-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 15px;
}

.agency-badge img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ffc107;
  margin-bottom: 10px;
}

.agency-badge span {
  font-weight: 600;
  color: #ffffff;
  font-size: 14px;
}

.agency-banner h3 {
  font-size: 28px;
  color: #ffffff;
  margin-bottom: 10px;
  font-weight: 700;
}

.agency-banner p {
  color: #ffffff;
  margin-bottom: 15px;
  font-size: 16px;
}

.agency-phone {
  display: inline-block;
  background-color: #ffc107;
  color: #000;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.agency-phone:hover {
  background-color: #ffab00;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

/* Pulse Animation */
@keyframes pulse {
  0% {
      transform: scale(1);
  }
  50% {
      transform: scale(1.05);
  }
  100% {
      transform: scale(1);
  }
}

.pulse-animation {
  animation: pulse 2s infinite;
}