/* 
   Yeşildağ Turizm - Luxury Transportation Service
   Design System & Style Sheet
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  /* Colors */
  --primary-color: #FFFFFF;       /* Clean luxury white for titles */
  --primary-light: #4ADE80;       /* Premium Green light */
  --primary-dark: #000000;        /* Absolute black */
  --accent-color: #39B54A;        /* Polished Corporate Green */
  --accent-light: #4ADE80;        /* Light accent green for hover states */
  --accent-dark: #1E7E2C;         /* Deep green */
  --text-dark: #D8DBD9;           /* Soft light metallic gray-white for paragraphs on dark bg */
  --text-light: #F3F5F4;          /* Off-white */
  --text-muted: #94A3B8;          /* Muted slate gray */
  --bg-light: #0A0B0D;            /* Deep obsidian dark background */
  --bg-dark: #000000;             /* Absolute black background */
  --bg-card: #11141A;             /* Luxury dark card/panel background */
  --border-color: rgba(255, 255, 255, 0.08); /* Subtle dark mode border */
  
  /* Fonts */
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Outfit', sans-serif;

  /* Transitions & Shadows */
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s ease;
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 15px 35px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 25px 50px rgba(0, 0, 0, 0.8);
  
  /* Layout */
  --max-width: 1280px;
  --header-height: 100px;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Scrollbar Style */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--accent-color);
  border: 2px solid var(--bg-dark);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-light);
}

/* Typography & Global Elements */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

p {
  font-weight: 300;
  color: var(--text-dark);
}

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

ul {
  list-style: none;
}

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

/* Section Header styling */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.section-badge {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-color);
  display: inline-block;
  margin-bottom: 12px;
  position: relative;
  padding-bottom: 5px;
}

.section-badge::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background-color: var(--accent-color);
}

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

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

/* Helper Utilities */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 16px 36px;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  z-index: 1;
}

.btn-primary {
  background-color: var(--accent-color);
  color: var(--bg-dark);
  border: 1px solid var(--accent-color);
}

.btn-primary::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: 0.5s;
  z-index: -1;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background-color: var(--bg-dark);
  color: var(--accent-color);
  border-color: var(--accent-color);
  box-shadow: 0 10px 20px rgba(57, 181, 74, 0.15);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background-color: var(--text-light);
  color: var(--bg-dark);
  border-color: var(--text-light);
}

.btn-outline-gold {
  background-color: transparent;
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
}

.btn-outline-gold:hover {
  background-color: var(--accent-color);
  color: var(--bg-dark);
}

/* TOPBAR STYLING */
.topbar {
  background-color: var(--primary-dark);
  color: var(--text-light);
  font-size: 0.85rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(57, 181, 74, 0.15);
  font-weight: 300;
  letter-spacing: 0.5px;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-info {
  display: flex;
  gap: 30px;
}

.topbar-info span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar-info i {
  color: var(--accent-color);
}

.topbar-socials {
  display: flex;
  gap: 15px;
}

.topbar-socials a {
  opacity: 0.75;
}

.topbar-socials a:hover {
  opacity: 1;
  color: var(--accent-color);
}

/* HEADER & NAVIGATION */
.header-wrapper {
  position: absolute;
  top: 45px;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: var(--transition-smooth);
}

.header-wrapper.sticky {
  position: fixed;
  top: 0;
  background-color: rgba(10, 11, 13, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(57, 181, 74, 0.1);
  animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.header-wrapper.sticky .main-header {
  height: 80px;
}

.main-header {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-smooth);
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-svg {
  max-width: 100%;
  height: auto;
  display: block;
}

.logo-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--primary-dark);
  box-shadow: 0 5px 15px rgba(57, 181, 74, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 1px;
  line-height: 1.1;
  text-transform: uppercase;
}

.logo-title span {
  color: var(--accent-color);
}

.logo-subtitle {
  font-size: 0.7rem;
  color: var(--accent-color);
  letter-spacing: 4px;
  text-transform: uppercase;
}

/* Navigation Links */
.nav-menu {
  display: flex;
  gap: 35px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--text-light);
  text-transform: uppercase;
  position: relative;
  padding: 8px 0;
}

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

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

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

.header-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.phone-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-light);
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 30px;
  transition: var(--transition-smooth);
}

.phone-cta:hover {
  background-color: rgba(57, 181, 74, 0.1);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.phone-cta i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.phone-cta-text {
  display: flex;
  flex-direction: column;
}

.phone-cta-label {
  font-size: 0.65rem;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.phone-cta-number {
  font-size: 0.95rem;
  font-weight: 600;
}

.mobile-menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--text-light);
  cursor: pointer;
}

/* HERO SECTION WITH SLIDER */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background-color: var(--bg-dark);
}

.hero-slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s ease-in-out, visibility 1.2s;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  transition: transform 8s ease-out;
}

.slide.active .slide-bg {
  transform: scale(1);
}

.slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.9) 100%);
  z-index: 3;
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%);
  width: 100%;
  max-width: var(--max-width);
  padding: 0 30px;
  z-index: 4;
  text-align: center;
  color: var(--text-light);
  opacity: 0;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.2s ease;
}

.slide.active .slide-content {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.slide-subtitle {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent-color);
  letter-spacing: 4px;
  margin-bottom: 20px;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.slide.active .slide-subtitle {
  opacity: 1;
  transform: translateY(0);
}

.slide-title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 25px;
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s;
}

.slide.active .slide-title {
  opacity: 1;
  transform: translateY(0);
}

.slide-title span {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent-light);
}

.slide-desc {
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto 40px auto;
  color: rgba(243, 245, 244, 0.8);
  font-weight: 300;
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.7s;
}

.slide.active .slide-desc {
  opacity: 1;
  transform: translateY(0);
}

.slide-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.9s;
}

.slide.active .slide-buttons {
  opacity: 1;
  transform: translateY(0);
}

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-smooth);
}

.slider-arrow:hover {
  background-color: var(--accent-color);
  color: var(--bg-dark);
  border-color: var(--accent-color);
  box-shadow: 0 10px 20px rgba(57, 181, 74, 0.2);
}

.slider-arrow-prev {
  left: 40px;
}

.slider-arrow-next {
  right: 40px;
}

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

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.slider-dot.active {
  background-color: var(--accent-color);
  width: 32px;
  border-radius: 6px;
}

/* FLOATING SERVICES SECTION (Overlapping Hero) */
.float-services {
  position: relative;
  z-index: 20;
  margin-top: -80px; /* Overlap effect */
  padding-bottom: 60px;
}

.float-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}

.float-card {
  background: rgba(17, 20, 26, 0.75);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(57, 181, 74, 0.2);
  padding: 35px 25px;
  border-radius: 8px;
  text-align: center;
  color: var(--text-light);
  box-shadow: var(--shadow-lg);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.float-card:hover {
  transform: translateY(-15px);
  background: rgba(26, 30, 39, 0.98);
  border-color: var(--accent-color);
  box-shadow: 0 20px 40px rgba(57, 181, 74, 0.25);
}

.float-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(57, 181, 74, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: var(--accent-color);
  font-size: 1.8rem;
  transition: var(--transition-smooth);
}

.float-card:hover .float-icon {
  background: var(--accent-color);
  color: var(--primary-dark);
  transform: rotateY(180deg);
  box-shadow: 0 8px 20px rgba(57, 181, 74, 0.3);
}

.float-title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.3;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.float-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.5;
}

/* REFERENCES SECTION */
.references {
  padding: 100px 0 80px 0;
  background-color: var(--bg-card);
  position: relative;
  border-bottom: 1px solid var(--border-color);
}

.references-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.reference-card {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 25px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: var(--transition-smooth);
  cursor: default;
}

.reference-card:hover {
  background-color: rgba(57, 181, 74, 0.05);
  border-color: var(--accent-color);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.reference-icon {
  font-size: 1.4rem;
  color: var(--accent-color);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: rgba(57, 181, 74, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.reference-card:hover .reference-icon {
  background-color: var(--accent-color);
  color: var(--bg-dark);
  transform: rotate(360deg);
}

.reference-name {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light);
  transition: var(--transition-smooth);
}

.reference-card:hover .reference-name {
  color: #FFFFFF;
}

/* ABOUT SECTION */
.about {
  padding: 100px 0;
  background-color: var(--bg-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(12, 1fr);
  height: 550px;
}

.about-img-large {
  grid-column: 1 / 10;
  grid-row: 1 / 11;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--bg-card);
  position: relative;
}

.about-img-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.about-img-large:hover img {
  transform: scale(1.05);
}

.about-img-small {
  grid-column: 7 / 13;
  grid-row: 6 / 13;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--bg-card);
  z-index: 5;
  position: relative;
}

.about-img-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.about-img-small:hover img {
  transform: scale(1.05);
}

.experience-badge {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background-color: var(--accent-color);
  color: var(--bg-dark);
  border: 2px solid var(--accent-light);
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  z-index: 10;
  text-align: center;
}

.experience-years {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: var(--bg-dark);
  display: block;
}

.experience-text {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-top: 5px;
}

.about-content {
  padding-left: 20px;
}

.about-text {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 30px;
  font-weight: 300;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 40px;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.about-feature-icon {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-top: 3px;
}

.about-feature-title {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.about-feature-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* SERVICES DETAILED SECTION */
.services {
  padding: 100px 0;
  background-color: var(--bg-card);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(57, 181, 74, 0.3);
}

.service-card-img {
  height: 240px;
  position: relative;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.service-card-img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 60%, rgba(7, 44, 36, 0.8) 100%);
}

.service-icon-floating {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: var(--accent-color);
  color: var(--bg-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 5;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon-floating {
  background-color: var(--primary-color);
  color: var(--accent-color);
  transform: scale(1.1);
}

.service-card-content {
  padding: 30px;
}

.service-card-title {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 700;
}

.service-card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  font-weight: 300;
}

.service-card-link {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-card-link i {
  font-size: 0.8rem;
  transition: var(--transition-fast);
}

.service-card:hover .service-card-link {
  color: var(--accent-color);
}

.service-card:hover .service-card-link i {
  transform: translateX(5px);
}

/* WHY CHOOSE US (STATS & CORE VALUES) */
.why-us {
  position: relative;
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 100px 0;
  background-image: radial-gradient(circle at 10% 20%, rgba(57, 181, 74, 0.08) 0%, transparent 50%);
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-us-content {
  padding-right: 20px;
}

.why-us-content .section-title {
  color: var(--text-light);
}

.why-us-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.why-us-card {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 35px 25px;
  border-radius: 8px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.why-us-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background-color: var(--accent-color);
  transition: var(--transition-smooth);
}

.why-us-card:hover::before {
  height: 100%;
}

.why-us-card:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(57, 181, 74, 0.25);
  transform: translateY(-5px);
}

.why-us-icon {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.why-us-card-title {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.why-us-card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* VEHICLE FLEET SECTION */
.fleet {
  padding: 100px 0;
  background-color: var(--bg-light);
}

.fleet-filter {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
}

.filter-btn {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 28px;
  border-radius: 30px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-btn.active, .filter-btn:hover {
  background-color: var(--accent-color);
  color: var(--bg-dark);
  border-color: var(--accent-color);
  box-shadow: var(--shadow-sm);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.fleet-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.fleet-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(57, 181, 74, 0.2);
}

.fleet-img {
  height: 220px;
  overflow: hidden;
  position: relative;
  background-color: #070809;
}

.fleet-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.fleet-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--accent-color);
  color: var(--primary-dark);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 3px;
  border: 1px solid var(--accent-color);
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

.fleet-content {
  padding: 30px;
}

.fleet-name {
  font-size: 1.35rem;
  color: var(--primary-color);
  margin-bottom: 5px;
  font-weight: 700;
}

.fleet-type {
  font-size: 0.85rem;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  font-weight: 600;
}

.fleet-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 10px;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 20px 0;
  margin-bottom: 25px;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-dark);
}

.spec-item i {
  color: var(--accent-color);
  font-size: 0.95rem;
}

.fleet-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fleet-price {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.price-val {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-color);
}

.price-val span {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-muted);
}

/* TESTIMONIALS SECTION */
.testimonials {
  padding: 100px 0;
  background-color: var(--bg-card);
  position: relative;
}

.testimonials-slider {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  height: 320px;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  text-align: center;
}

.testimonial-slide.active {
  opacity: 1;
  visibility: visible;
}

.testimonial-quote-icon {
  font-size: 3rem;
  color: rgba(57, 181, 74, 0.15);
  margin-bottom: 20px;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--primary-color);
  margin-bottom: 30px;
}

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

.author-name {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
}

.author-title {
  font-size: 0.8rem;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 3px;
}

.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

/* CONTACT & RESERVATION SECTION */
.contact {
  padding: 100px 0;
  background-color: var(--bg-light);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
}

.contact-info-panel {
  background-color: var(--bg-card);
  color: var(--text-light);
  padding: 50px;
  border-radius: 8px;
  border: 1px solid rgba(57, 181, 74, 0.2);
  background-image: radial-gradient(circle at 90% 10%, rgba(57, 181, 74, 0.15) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info-header h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.contact-info-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 40px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(57, 181, 74, 0.25);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-text-box h4 {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-color);
  margin-bottom: 5px;
}

.contact-text-box p {
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 300;
}

.contact-socials-box h4 {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.contact-socials-list {
  display: flex;
  gap: 15px;
}

.contact-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

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

/* Booking Form styling */
.booking-panel {
  background-color: var(--bg-card);
  padding: 50px;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.booking-panel-title {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 30px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group-full {
  grid-column: 1 / 3;
}

.form-label {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-color);
  margin-bottom: 8px;
}

.form-input {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  padding: 14px 18px;
  border-radius: 4px;
  border: 1px solid var(--border-color);
  background-color: var(--bg-light);
  color: var(--text-dark);
  transition: var(--transition-fast);
}

.form-input:focus {
  border-color: var(--accent-color);
  background-color: var(--bg-card);
  box-shadow: 0 0 0 3px rgba(57, 181, 74, 0.1);
}

textarea.form-input {
  resize: vertical;
  min-height: 100px;
}

.form-submit-btn {
  width: 100%;
  border: none;
}

/* FOOTER SECTION */
.footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 80px 0 30px 0;
  border-top: 2px solid var(--accent-color);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-logo {
  margin-bottom: 25px;
}

.footer-logo .logo-title {
  color: var(--text-light);
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  font-weight: 300;
  line-height: 1.7;
}

.footer-title {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-light);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--accent-color);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link-item a {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-link-item a:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.footer-contact-item i {
  color: var(--accent-color);
  font-size: 1.05rem;
  margin-top: 4px;
}

.footer-contact-text {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-contact-text span {
  display: block;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 3px;
}

.footer-newsletter-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-input {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  padding: 12px 18px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-light);
  flex-grow: 1;
}

.newsletter-input:focus {
  border-color: var(--accent-color);
}

.newsletter-btn {
  background-color: var(--accent-color);
  color: var(--bg-dark);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.newsletter-btn:hover {
  background-color: var(--accent-light);
  transform: scale(1.05);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.copyright span {
  color: var(--accent-color);
}

.footer-legal-links {
  display: flex;
  gap: 25px;
}

.footer-legal-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-legal-links a:hover {
  color: var(--accent-color);
}

/* BACK TO TOP BUTTON */
.back-to-top {
  position: fixed;
  bottom: 120px; /* Aligned above floating contact button (which is bottom: 40px, height: 60px) */
  right: -60px; /* Hidden initially */
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--accent-color);
  color: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 99;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  border: 1px solid var(--accent-color);
}

.back-to-top.show {
  right: 45px; /* Aligned vertically with the center of the floating contact button */
}

.back-to-top:hover {
  background-color: var(--bg-dark);
  color: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-5px);
}

/* SUBPAGE LAYOUTS (Tailored for Individual Services) */
.page-banner {
  position: relative;
  height: 380px;
  background-color: var(--bg-dark);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-light);
  padding-top: 60px; /* Offset for header sticky */
}

.page-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(5, 18, 14, 0.85) 0%, rgba(5, 18, 14, 0.95) 100%);
  z-index: 1;
}

.page-banner-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 800px;
  padding: 0 20px;
}

.page-banner-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 15px;
}

.page-banner-title span {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent-light);
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.breadcrumbs a {
  color: var(--accent-color);
}

.breadcrumbs a:hover {
  color: var(--accent-light);
}

.breadcrumbs span {
  color: var(--text-muted);
}

.page-content {
  padding: 100px 0;
  background-color: var(--bg-light);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
}

.service-main-content h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 25px;
  border-left: 3px solid var(--accent-color);
  padding-left: 15px;
}

.service-main-content p {
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 25px;
  font-weight: 300;
  line-height: 1.8;
}

.service-main-content img {
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  margin-bottom: 35px;
  border: 1px solid var(--border-color);
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.service-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 40px 0;
}

.service-feature-box {
  background-color: var(--bg-card);
  padding: 25px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.service-feature-box:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
  box-shadow: var(--shadow-md);
}

.service-feature-box i {
  font-size: 1.8rem;
  color: var(--accent-color);
  margin-bottom: 15px;
  display: inline-block;
}

.service-feature-box h4 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.service-feature-box p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.5;
}

/* Sidebar */
.sidebar-box {
  background-color: var(--bg-card);
  padding: 40px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  margin-bottom: 30px;
}

.sidebar-title {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.sidebar-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--accent-color);
}

.sidebar-services-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sidebar-service-item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: var(--bg-light);
  border-radius: 4px;
  border: 1px solid var(--border-color);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--primary-color);
  transition: var(--transition-fast);
}

.sidebar-service-item.active a,
.sidebar-service-item a:hover {
  background-color: var(--accent-color);
  color: var(--bg-dark);
  border-color: var(--accent-color);
}

.sidebar-service-item a i {
  font-size: 0.8rem;
  transition: var(--transition-fast);
}

.sidebar-service-item a:hover i {
  transform: translateX(5px);
}

.sidebar-cta-box {
  background-color: var(--bg-card);
  color: var(--text-light);
  padding: 40px;
  border-radius: 8px;
  border: 1px solid var(--accent-color);
  text-align: center;
  position: relative;
  overflow: hidden;
  background-image: radial-gradient(circle at 10% 20%, rgba(57, 181, 74, 0.15) 0%, transparent 80%);
}

.sidebar-cta-box i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.sidebar-cta-box h4 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.sidebar-cta-box p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 25px;
  line-height: 1.5;
}

.sidebar-cta-box .phone-num {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-light);
  display: block;
  margin-top: 15px;
}

/* RESPONSIVE DESIGN (MEDIA QUERIES) */
@media (max-width: 1200px) {
  .float-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .float-services {
    margin-top: -100px;
  }
  .about-grid, .why-us-grid, .contact-grid {
    gap: 40px;
  }
  .fleet-grid, .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 991px) {
  .topbar {
    display: none; /* Hide topbar on smaller screens */
  }
  .header-wrapper {
    top: 0;
    background-color: rgba(5, 18, 14, 0.95);
    border-bottom: 1px solid rgba(57, 181, 74, 0.1);
  }
  .main-header {
    height: 80px;
  }
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--bg-dark);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    transition: var(--transition-smooth);
    z-index: 99;
  }
  .nav-menu.active {
    left: 0;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .header-cta {
    margin-right: 20px;
  }
  .slide-title {
    font-size: 3rem;
  }
  .about-grid, .why-us-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  .about-images {
    height: 450px;
    margin-bottom: 30px;
  }
  .why-us-content {
    margin-right: 0;
    margin-bottom: 40px;
  }
  .testimonials-slider {
    height: 380px;
  }
  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .page-banner {
    height: 300px;
  }
  .page-banner-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  .slide-title {
    font-size: 2.2rem;
  }
  .slide-desc {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }
  .btn {
    padding: 12px 28px;
    font-size: 0.8rem;
  }
  .float-grid {
    grid-template-columns: 1fr;
  }
  .float-services {
    margin-top: -50px;
  }
  .fleet-grid, .services-grid {
    grid-template-columns: 1fr;
  }
  .fleet-filter {
    flex-wrap: wrap;
  }
  .filter-btn {
    padding: 10px 20px;
    font-size: 0.75rem;
  }
  .about-images {
    height: 380px;
  }
  .experience-badge {
    padding: 15px;
    bottom: -15px;
    left: -15px;
  }
  .experience-years {
    font-size: 2rem;
  }
  .experience-text {
    font-size: 0.65rem;
  }
  .booking-panel {
    padding: 30px 20px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group-full {
    grid-column: 1 / 2;
  }
  .contact-info-panel {
    padding: 30px 20px;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .slider-arrow {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
  .slider-arrow-prev {
    left: 15px;
  }
  .slider-arrow-next {
    right: 15px;
  }
  .slider-dots {
    bottom: 80px;
  }
  .service-features-list {
    grid-template-columns: 1fr;
  }
  .page-banner {
    height: 240px;
  }
  .page-banner-title {
    font-size: 1.8rem;
  }
}

/* --- FLOATING CONTACT WIDGET & DRAWER --- */
.floating-contact-btn {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
  color: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(57, 181, 74, 0.4);
  z-index: 1000;
  transition: var(--transition-smooth);
}

.floating-contact-btn:hover {
  transform: scale(1.1) rotate(15deg);
  box-shadow: 0 15px 30px rgba(57, 181, 74, 0.6);
}

/* Pulsing effect */
.floating-contact-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--accent-color);
  animation: pulse-ring 2s infinite;
  box-sizing: border-box;
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* Side Drawer (Drawer Panel) */
.contact-drawer {
  position: fixed;
  top: 0;
  right: -380px; /* Hidden initially */
  width: 350px;
  height: 100vh;
  background-color: var(--bg-card);
  border-left: 2px solid var(--accent-color);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
  z-index: 1001;
  transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
}

.contact-drawer.active {
  right: 0;
}

/* Drawer Backdrop Overlay */
.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Drawer Content styling */
.drawer-close {
  align-self: flex-end;
  font-size: 2rem;
  color: var(--text-dark);
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
  margin-bottom: 30px;
}

.drawer-close:hover {
  color: var(--accent-color);
  transform: rotate(90deg);
}

.drawer-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.drawer-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.drawer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: auto;
}

.drawer-item {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.drawer-item:hover {
  background-color: rgba(57, 181, 74, 0.05);
  border-color: var(--accent-color);
  transform: translateY(-3px);
}

.drawer-item-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(57, 181, 74, 0.1);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.drawer-item:hover .drawer-item-icon {
  background-color: var(--accent-color);
  color: var(--primary-dark);
}

.drawer-item-content {
  display: flex;
  flex-direction: column;
}

.drawer-item-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.drawer-item-val {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light);
}

/* Drawer Social links list */
.drawer-socials {
  margin-top: 40px;
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
}

.drawer-socials-title {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-align: center;
}

.drawer-socials-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.drawer-social-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition-smooth);
}

.drawer-social-btn:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  background-color: rgba(57, 181, 74, 0.05);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .contact-drawer {
    width: 280px;
  }
  .floating-contact-btn {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  .back-to-top {
    bottom: 85px; /* Aligned above floating contact button (bottom: 20px, height: 50px) */
  }
  .back-to-top.show {
    right: 20px; /* Aligned vertically with the floating contact button on mobile */
  }
}

