/* 
  PINAR TURİZM & TRANSFER - Premium Corporate CSS 
  Author: AI Assistant
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* ==========================================================================
   CSS VARIABLES
   ========================================================================== */
:root {
  /* Colors */
  --primary-color: #0A192F; /* Deep Navy Blue */
  --secondary-color: #002347; /* Lighter Navy */
  --accent-color: #1A365D; /* Accent Navy */
  --text-dark: #1F2937;
  --text-light: #6B7280;
  --white: #FFFFFF;
  --bg-light: #F8F9FA;
  --bg-gray: #F3F4F6;
  
  /* Typography */
  --font-main: 'Inter', sans-serif;
  
  /* Shadows - Soft, premium Apple-like */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

ul {
  list-style: none;
}

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

h1, h2, h3, h4, h5, h6 {
  color: var(--primary-color);
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: -1px; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.5px; }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

/* ==========================================================================
   LAYOUT & UTILITIES
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
  scroll-margin-top: 80px;
}

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

.section-header {
  text-align: center;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: var(--radius-full);
}

.section-desc {
  color: var(--text-light);
  font-size: 1.1rem;
}

.grid {
  display: grid;
  gap: 30px;
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition-normal);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-white {
  background-color: var(--white);
  color: var(--primary-color);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  background-color: var(--bg-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  padding: 15px 0;
}

.header.scrolled {
  padding: 10px 0;
  background-color: var(--primary-color);
}

.header.scrolled .nav-link,
.header.scrolled .logo {
  color: var(--white);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  padding: 0 4%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: -0.5px;
}

.logo img {
  height: 45px;
  width: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 35px; /* Yazıların arası açıldı */
}

/* Nav Right Desktop / Mobile Setup */
.nav-right-desktop {
  display: flex;
  align-items: center;
  gap: 30px; /* Buton ile dil seçici arası açıldı */
}

.nav-link {
  font-weight: 500;
  color: var(--text-dark);
  font-size: 1rem;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.has-dropdown:hover .nav-link::after {
  width: 100%;
}

.nav-link:hover,
.has-dropdown:hover .nav-link {
  color: var(--accent-color);
}

.dropdown-icon {
  margin-left: 5px;
  font-size: 0.8em;
  transition: transform 0.3s ease;
  display: inline-block;
}

.has-dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
}

.nav-right-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

@media (min-width: 992px) {
  .nav-right-actions {
    position: absolute;
    right: 4%;
  }
}

.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-color);
  position: relative;
  z-index: 1010;
}

/* Language Switcher */
.lang-switcher {
  position: relative;
  display: inline-block;
}

.lang-btn {
  background: transparent;
  border: 1px solid rgba(0,0,0,0.1);
  color: var(--text-dark);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all var(--transition-fast);
}

.header.scrolled .lang-btn {
  color: var(--white);
  border-color: rgba(255,255,255,0.2);
}

.lang-btn:hover {
  background: rgba(0,0,0,0.05);
}
.header.scrolled .lang-btn:hover {
  background: rgba(255,255,255,0.1);
}

.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 10px;
  background: var(--white);
  min-width: 120px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition-fast);
  z-index: 1000;
  border: 1px solid rgba(0,0,0,0.05);
  overflow: hidden;
}

.lang-switcher:hover .lang-dropdown,
.lang-switcher:focus-within .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: block;
  padding: 10px 15px;
  color: var(--text-dark);
  font-size: 0.9rem;
  font-weight: 500;
  transition: background var(--transition-fast);
}

.lang-option:hover {
  background: var(--bg-light);
  color: var(--primary-color);
}

.lang-option.active {
  background: var(--bg-light);
  color: var(--primary-color);
  font-weight: 700;
}

/* ==========================================================================
   HERO SECTION & SLIDER
   ========================================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--primary-color);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

/* Overlay for text readability */
.hero-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(10, 25, 47, 0.95), rgba(10, 25, 47, 0.4));
  z-index: 1;
  pointer-events: none;
}

.hero-slide .container {
  position: relative;
  z-index: 2;
}

/* Slider Controls */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.slider-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.prev-btn { left: 30px; }
.next-btn { right: 30px; }

.slider-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 5;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

.dot.active {
  background: white;
  transform: scale(1.3);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 800px;
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 20px;
  color: #E2E8F0;
  display: inline-block;
  background: rgba(255,255,255,0.1);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(5px);
}

.hero-title {
  color: var(--white);
  margin-bottom: 30px;
}

.hero-desc {
  font-size: 1.25rem;
  color: #CBD5E1;
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* ==========================================================================
   SERVICES CARDS
   ========================================================================== */
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.05);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(0,0,0,0.1);
}

.service-icon {
  width: 70px;
  height: 70px;
  background-color: var(--bg-light);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
  transition: all var(--transition-normal);
}

.service-card:hover .service-icon {
  background-color: var(--primary-color);
  color: var(--white);
}

.service-title {
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.service-desc {
  color: var(--text-light);
  margin-bottom: 25px;
  flex-grow: 1;
}

/* ==========================================================================
   PRICING
   ========================================================================== */
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
}

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

.pricing-card.premium {
  border: 2px solid var(--primary-color);
}

.pricing-header {
  padding: 40px 30px;
  background-color: var(--bg-light);
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.pricing-card.premium .pricing-header {
  background-color: var(--primary-color);
  color: var(--white);
}

.pricing-card.premium .pricing-title {
  color: var(--white);
}

.pricing-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.price {
  font-size: 3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.price-currency {
  font-size: 1.5rem;
  font-weight: 600;
}

.price-note {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 5px;
  display: block;
}
.pricing-card.premium .price-note { color: #CBD5E1; }

.pricing-body {
  padding: 40px 30px;
}

.pricing-features {
  margin-bottom: 30px;
}

.pricing-features li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dark);
}

.pricing-features li::before {
  content: '✓';
  color: #10B981;
  font-weight: bold;
}

/* ==========================================================================
   FLEET
   ========================================================================== */
.fleet-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

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

.fleet-img-wrap {
  width: 100%;
  height: 250px;
  background-color: var(--bg-gray);
  overflow: hidden;
  position: relative;
}

.fleet-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.fleet-info {
  padding: 25px;
}

.fleet-title {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.fleet-capacity {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--bg-light);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
}

/* ==========================================================================
   SUMMER ROUTES (YAZLIK SERVİSİ)
   ========================================================================== */
.summer-routes {
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 60px;
  position: relative;
  overflow: hidden;
}

.summer-routes .section-title {
  color: var(--white);
}

.summer-routes .section-title::after {
  background-color: var(--white);
  left: 0;
  transform: none;
}

.summer-content {
  max-width: 600px;
  position: relative;
  z-index: 2;
}

.summer-desc {
  font-size: 1.1rem;
  color: #E2E8F0;
  margin-bottom: 30px;
}

.time-badge-container {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.time-badge {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 1.25rem;
  font-weight: 700;
  backdrop-filter: blur(5px);
}

/* ==========================================================================
   CTA (Call to Action)
   ========================================================================== */
.cta-section {
  text-align: center;
  background-color: var(--bg-light);
}

.cta-box {
  background-color: var(--white);
  padding: 60px 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.cta-phone {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--primary-color);
  margin: 20px 0 30px;
  display: block;
  letter-spacing: 1px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 80px 0 30px;
}

.footer-top {
  display: grid;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.footer-desc {
  color: #94A3B8;
  margin-bottom: 20px;
}

.footer-title {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 25px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #94A3B8;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  color: #94A3B8;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #94A3B8;
  font-size: 0.9rem;
}

/* ==========================================================================
   DROPDOWN & MEGA MENU (Desktop Only)
   ========================================================================== */
.has-dropdown {
  position: relative;
}

.dropdown-menu, .mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  border-radius: var(--radius-md);
  padding: 15px 0;
  min-width: 250px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
  display: flex;
  flex-direction: column;
}

.mega-menu {
  flex-direction: row;
  min-width: 700px;
  padding: 20px;
  gap: 15px;
  justify-content: space-between;
}

@media (min-width: 992px) {
  .nav-container {
    justify-content: center;
    position: relative;
  }
  .logo {
    position: absolute;
    left: 4%;
  }
  .nav-menu {
    width: 100%;
    justify-content: center;
  }
  .nav-right-desktop {
    position: absolute;
    right: 4%;
  }
  .has-dropdown:hover .dropdown-menu,
  .has-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
}

@media (max-width: 991px) {
  .dropdown-menu, .mega-menu {
    display: none !important;
  }
}

.dropdown-item {
  padding: 10px 25px;
  color: var(--text-dark);
  font-weight: 500;
  transition: all 0.2s ease;
  white-space: nowrap;
  display: block;
}

.dropdown-item:hover {
  background-color: rgba(15, 23, 42, 0.05);
  color: var(--primary-color);
  padding-left: 30px;
}

.mega-menu-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px;
  border-radius: var(--radius-md);
  transition: background 0.3s ease;
  flex: 1;
  text-decoration: none;
}

.mega-menu-item:hover {
  background-color: rgba(15, 23, 42, 0.05);
}

.mega-menu-img {
  width: 100px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.mega-menu-item:hover .mega-menu-img {
  transform: scale(1.1);
}

.mega-menu-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* ==========================================================================
   RESPONSIVE (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 991px) {
  .hamburger {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: right var(--transition-normal);
  }
  
  .nav-right-desktop {
    flex-direction: column;
    width: 100%;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .header.scrolled .nav-menu .nav-link {
    color: var(--text-dark);
  }
  
  .header.scrolled .hamburger {
    color: var(--white);
  }
  
  .hero {
    text-align: center;
  }
  
  .hero-actions {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  /* Genel Bölüm ve Boşluklar */
  .section {
    padding: 40px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }

  /* Hero Bölümü */
  .hero {
    min-height: 60vh;
    padding-top: 100px;
    padding-bottom: 50px;
  }

  .gelin-bg-zoom {
    background-size: auto 135% !important;
    background-position: center center !important;
  }
  
  .slider-btn {
    display: none !important; /* Mobilde okları tamamen gizle */
  }
  
  .slider-dots {
    bottom: 20px; /* Pagination'ı güvenli alana çekerek Hizmetlerimiz ile çakışmasını önle */
    z-index: 10;
  }
  
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .hero-content p {
    font-size: 1rem;
    line-height: 1.5;
  }
  
  .about-hero-img {
    max-width: 250px !important;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 15px;
  }
  
  .hero-actions .btn {
    width: 100%;
  }

  /* Kartlar (Hizmetler, Filo, Fiyatlandırma, CTA) */
  .service-card,
  .fleet-card,
  .pricing-card,
  .whatsapp-cta {
    padding: 20px !important;
  }
  
  .pricing-body, .pricing-header {
    padding: 20px !important;
  }
  
  .grid {
    gap: 20px !important;
  }
  
  /* İkonlar ve Yazılar */
  .service-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .service-title,
  .fleet-title,
  .pricing-title {
    font-size: 1.2rem;
  }
  
  /* Butonlar */
  .btn {
    padding: 10px 20px;
    font-size: 1rem;
  }
  
  /* Özel Bölümler */
  .summer-routes {
    padding: 30px 15px;
  }
  
  .time-badge-container {
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .cta-box {
    padding: 30px 15px;
  }
  
  .whatsapp-cta h3 {
    font-size: 1.5rem !important;
  }
  
  .whatsapp-cta p {
    font-size: 1rem !important;
  }

  /* Footer */
  .footer {
    padding: 40px 0 20px;
  }
  
  .footer-top {
    gap: 30px;
  }
}

/* ==========================================================================
   WHATSAPP CTA BUTTON
   ========================================================================== */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  transition: all var(--transition-normal);
  text-decoration: none;
}

.btn-whatsapp:hover {
  background-color: #20BA56 !important;
  transform: translateY(-3px);
  box-shadow: 0 15px 25px -5px rgba(37,211,102,0.5) !important;
  color: white !important;
}

.whatsapp-cta {
  transition: all var(--transition-normal);
}

.whatsapp-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(37, 211, 102, 0.15), 0 10px 10px -5px rgba(37, 211, 102, 0.1);
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
  text-decoration: none;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  color: white;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 25, 47, 0.95);
  color: var(--white);
  padding: 20px;
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
  transform: translateY(100%);
  transition: transform 0.5s ease-in-out;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cookie-content p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
}
