/* 
   Aktif Nakliyat - Premium Stylesheet
   Design Palette: Dark Navy Blue (#0b1c33) & Bright Orange (#ff6b00)
*/

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

:root {
  --primary-navy: #0b1c33;
  --primary-navy-light: #152c4e;
  --primary-navy-dark: #061020;
  --accent-orange: #ff6b00;
  --accent-orange-hover: #e05d00;
  --accent-orange-light: #ffefe5;
  --text-dark: #2c3e50;
  --text-muted: #6c7a89;
  --text-light: #ffffff;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e2e8f0;
  --success-color: #2ecc71;
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  --box-shadow-hover: 0 15px 35px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

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

ul {
  list-style: none;
}

/* Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 80px 0;
}

.text-center {
  text-align: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  gap: 8px;
}

.btn-primary {
  background-color: var(--accent-orange);
  color: var(--text-light);
}

.btn-primary:hover {
  background-color: var(--accent-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-navy);
  border: 2px solid var(--border-color);
}

.btn-secondary:hover {
  background-color: var(--border-color);
  color: var(--primary-navy);
  transform: translateY(-2px);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
}

.btn-outline-white:hover {
  background-color: var(--text-light);
  color: var(--primary-navy);
  transform: translateY(-2px);
}

.section-tag {
  color: var(--accent-orange);
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 14px;
  display: block;
  margin-bottom: 8px;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 40px;
  position: relative;
}

/* Header & Navigation */
.top-bar {
  background-color: var(--primary-navy-dark);
  color: var(--text-light);
  padding: 8px 0;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  gap: 20px;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-right {
  display: flex;
  gap: 15px;
  align-items: center;
}

.social-link {
  color: var(--text-light);
  opacity: 0.8;
  font-size: 14px;
}

.social-link:hover {
  opacity: 1;
  color: var(--accent-orange);
}

.header {
  background-color: var(--bg-white);
  box-shadow: var(--box-shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.header.scrolled {
  padding: 5px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  max-width: 200px;
  display: block;
}

.nav-menu {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--primary-navy);
  font-size: 15px;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

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

/* Dropdown Menu */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--bg-white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  min-width: 240px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 100;
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-navy);
}

.dropdown-link:hover {
  background-color: var(--bg-light);
  color: var(--accent-orange);
  padding-left: 25px;
}

.mobile-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--primary-navy);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(11, 28, 51, 0.95) 0%, rgba(6, 16, 32, 0.9) 100%), url('../images/hero_truck.png') no-repeat center center / cover;
  min-height: 600px;
  display: flex;
  align-items: center;
  color: var(--text-light);
  position: relative;
  padding: 80px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.hero-subtitle {
  font-size: 22px;
  font-weight: 600;
  color: var(--accent-orange);
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.hero-title {
  font-size: 48px;
  font-weight: 900;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-title span {
  color: var(--accent-orange);
  font-family: var(--font-heading);
}

.hero-desc {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 30px;
  max-width: 600px;
}

.hero-features {
  display: flex;
  gap: 25px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
}

.hero-feature-item i {
  color: var(--accent-orange);
  font-size: 20px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

/* Request Form Card */
.form-card {
  background-color: var(--bg-white);
  border-radius: 12px;
  padding: 35px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  color: var(--text-dark);
}

.form-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 25px;
  text-align: center;
  position: relative;
  padding-bottom: 12px;
}

.form-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--accent-orange);
  border-radius: 2px;
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-group i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.form-control {
  width: 100%;
  padding: 14px 15px 14px 45px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-dark);
  transition: var(--transition);
  background-color: var(--bg-light);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-orange);
  background-color: var(--bg-white);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236c7a89' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 15px;
}

.btn-form {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  font-weight: 700;
}

.form-feedback {
  margin-top: 15px;
  padding: 10px;
  border-radius: 6px;
  font-size: 14px;
  text-align: center;
  display: none;
}

.form-feedback.success {
  display: block;
  background-color: rgba(46, 204, 113, 0.15);
  color: var(--success-color);
  border: 1px solid rgba(46, 204, 113, 0.3);
}

/* Services Section */
.services-section {
  background-color: var(--bg-light);
}

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

.service-card {
  background-color: var(--bg-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.service-img-wrapper {
  position: relative;
  height: 200px;
  overflow: hidden;
}

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

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

.service-icon-badge {
  position: absolute;
  bottom: -20px;
  left: 20px;
  width: 50px;
  height: 50px;
  background-color: var(--accent-orange);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border: 3px fill var(--bg-white);
  box-shadow: 0 4px 10px rgba(255, 107, 0, 0.3);
  z-index: 2;
}

.service-info {
  padding: 35px 20px 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  gap: 6px;
}

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

/* Why Us Section */
.why-us-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
}

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

.why-us-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.why-card {
  padding: 30px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  background-color: var(--bg-white);
}

.why-card:hover {
  border-color: var(--accent-orange);
  box-shadow: var(--box-shadow);
  transform: translateY(-3px);
}

.why-icon {
  font-size: 32px;
  color: var(--accent-orange);
  margin-bottom: 15px;
}

.why-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-desc {
  font-size: 14px;
  color: var(--text-muted);
}

/* Stats Section */
.stats-section {
  background-color: var(--primary-navy);
  color: var(--text-light);
  padding: 60px 0;
}

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

.stat-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.stat-icon {
  font-size: 36px;
  color: var(--accent-orange);
  opacity: 0.9;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  color: var(--text-light);
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* About Us Section */
.about-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-right-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--box-shadow-hover);
}

.about-text p {
  margin-bottom: 20px;
  color: var(--text-muted);
}

/* Testimonials / Referanslar */
.testimonials-section {
  background-color: var(--bg-light);
  overflow: hidden;
}

.slider-outer {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}

.testimonials-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
  min-width: 100%;
  padding: 10px;
}

.testimonial-card {
  background-color: var(--bg-white);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--box-shadow);
  border-top: 4px solid var(--accent-orange);
  position: relative;
}

.testimonial-stars {
  color: #ffc107;
  font-size: 18px;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 16px;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 25px;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  background-color: var(--bg-light);
}

.author-name {
  font-weight: 700;
  font-size: 16px;
}

.author-loc {
  font-size: 13px;
  color: var(--text-muted);
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--bg-white);
  color: var(--primary-navy);
  box-shadow: var(--box-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.slider-nav:hover {
  background-color: var(--accent-orange);
  color: var(--text-light);
  border-color: var(--accent-orange);
}

.slider-prev {
  left: 0;
}

.slider-next {
  right: 0;
}

/* Blog Section */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background-color: var(--bg-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

.blog-img-wrapper {
  height: 200px;
  overflow: hidden;
}

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

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

.blog-info {
  padding: 25px;
}

.blog-date {
  font-size: 13px;
  color: var(--accent-orange);
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.blog-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.blog-link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  gap: 6px;
}

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

/* Footer Styles */
.footer {
  background-color: var(--primary-navy-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 20px;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 0.6fr 0.6fr 0.8fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo {
  max-width: 200px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-desc {
  margin-bottom: 25px;
  line-height: 1.7;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social-btn:hover {
  background-color: var(--accent-orange);
  color: var(--text-light);
  transform: translateY(-3px);
}

.footer-title {
  color: var(--text-light);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

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

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

.footer-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

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

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  align-items: flex-start;
}

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

.footer-wa-box {
  background-color: rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.2);
  border-radius: 8px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 25px;
  color: var(--text-light);
}

.footer-wa-icon {
  font-size: 32px;
  color: #2ecc71;
}

.footer-wa-info span {
  font-size: 11px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  display: block;
}

.footer-wa-num {
  font-weight: 700;
  font-size: 15px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 13px;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

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

/* Page Header (Hakkımızda, Hizmetler, vb.) */
.page-header {
  background: linear-gradient(135deg, rgba(11, 28, 51, 0.95) 0%, rgba(6, 16, 32, 0.9) 100%), url('../images/hero_truck.png') no-repeat center center / cover;
  padding: 80px 0;
  color: var(--text-light);
  text-align: center;
}

.page-header-title {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--text-light);
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
}

.breadcrumb-item.active {
  color: var(--accent-orange);
}

.breadcrumb-separator {
  opacity: 0.5;
}

/* Sidebar & Content Layout for Details */
.sidebar-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 50px;
}

.content-block h3 {
  font-size: 24px;
  margin: 30px 0 15px;
}

.content-block p {
  margin-bottom: 20px;
  color: var(--text-muted);
}

.content-list {
  margin: 20px 0;
}

.content-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}

.content-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--accent-orange);
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.widget {
  background-color: var(--bg-light);
  border-radius: 8px;
  padding: 30px;
}

.widget-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

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

.services-list-widget li {
  margin-bottom: 10px;
}

.services-list-widget a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--bg-white);
  padding: 12px 20px;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  font-weight: 600;
}

.services-list-widget a:hover, .services-list-widget li.active a {
  background-color: var(--primary-navy);
  color: var(--text-light);
  border-color: var(--primary-navy);
}

.cta-widget {
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-dark) 100%);
  color: var(--text-light);
  text-align: center;
  border-radius: 8px;
  padding: 40px 30px;
}

.cta-widget i {
  font-size: 44px;
  color: var(--accent-orange);
  margin-bottom: 20px;
}

.cta-widget h4 {
  color: var(--text-light);
  font-size: 22px;
  margin-bottom: 15px;
}

.cta-widget p {
  opacity: 0.8;
  font-size: 14px;
  margin-bottom: 25px;
}

/* Districts List Widget (for SEO Footer / Pages) */
.districts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 30px;
}

.district-link {
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  padding: 10px 15px;
  text-align: center;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  display: block;
}

.district-link:hover {
  background-color: var(--accent-orange);
  color: var(--text-light);
  border-color: var(--accent-orange);
  transform: translateY(-2px);
}

/* Accordion FAQ */
.faq-accordion {
  margin-top: 30px;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: 6px;
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-header {
  background-color: var(--bg-light);
  padding: 18px 20px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-header i {
  transition: transform 0.3s;
}

.faq-item.open .faq-header i {
  transform: rotate(180deg);
}

.faq-body {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  background-color: var(--bg-white);
}

.faq-item.open .faq-body {
  padding: 20px;
  max-height: 1000px;
}

/* Contact Details Page */
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  display: flex;
  gap: 20px;
  padding: 30px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  background-color: var(--bg-light);
}

.contact-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--accent-orange-light);
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-card-details h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.contact-card-details p {
  color: var(--text-muted);
  font-size: 14px;
}

.map-container {
  margin-top: 50px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #2ecc71;
  color: var(--text-light);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(46, 204, 113, 0.4);
  z-index: 999;
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  background-color: #27ae60;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(46, 204, 113, 0.6);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(46, 204, 113, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
  }
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-desc {
    max-width: 100%;
  }
  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-section-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-right-img {
    order: -1;
  }
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--bg-white);
    flex-direction: column;
    padding: 40px 20px;
    gap: 20px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    overflow-y: auto;
  }
  .nav-menu.active {
    left: 0;
  }
  .mobile-toggle {
    display: block;
  }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    background-color: var(--bg-light);
    transform: none;
    margin-top: 10px;
    display: none;
    width: 100%;
  }
  .nav-item.open .dropdown {
    display: block;
  }
  .nav-link {
    justify-content: space-between;
    width: 100%;
    padding: 12px 0;
    font-size: 18px;
    border-bottom: 1px solid var(--border-color);
  }
  .header-btn {
    display: none;
  }
  .hero-title {
    font-size: 36px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .sidebar-layout {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .districts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .why-us-right {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .districts-grid {
    grid-template-columns: 1fr;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .hero-feature-item {
    width: 100%;
}

/* Gallery Styles */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  aspect-ratio: 4/3;
  position: relative;
}

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

.gallery-item:hover img {
  transform: scale(1.05);
}

.pulse-orange {
  border-radius: 50%;
  animation: pulse-orange 2s infinite;
}

@keyframes pulse-orange {
  0% {
    box-shadow: 0 0 0 0 rgba(243, 156, 18, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(243, 156, 18, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(243, 156, 18, 0);
  }
}

