/* =============================================
   KLOG TAŞIMACILIK - Premium Modern CSS
   ============================================= */

/* ---- CSS Custom Properties ---- */
:root {
  --orange: #ff7a00;
  --orange-dark: #e56d00;
  --orange-light: #ff9a33;
  --dark-gray: #4b4b4b;
  --white: #ffffff;
  --dark-navy: #1a1a2e;
  --dark-navy-2: #16213e;
  --light-bg: #f8f9fa;
  --light-gray: #e9ecef;
  --text-muted: #6c757d;
  --success-green: #25d366;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --shadow-xl: 0 12px 60px rgba(0,0,0,0.2);
  --glass-bg: rgba(255,255,255,0.15);
  --glass-border: rgba(255,255,255,0.2);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --font-primary: 'Inter', sans-serif;
  --font-secondary: 'Roboto', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: var(--font-primary);
  color: var(--dark-gray);
  line-height: 1.7;
  overflow-x: hidden;
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

/* ---- Utility Classes ---- */
.section-padding {
  padding: 100px 0;
}

.section-padding-sm {
  padding: 60px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
}

.section-title span {
  color: var(--orange);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 3rem;
}

.text-orange {
  color: var(--orange) !important;
}

.bg-orange {
  background-color: var(--orange) !important;
}

.bg-dark-navy {
  background-color: var(--dark-navy) !important;
}

.gradient-text {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Buttons ---- */
.btn-orange {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  border: none;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.3px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
}

.btn-orange::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--orange-dark), #cc6200);
  transition: var(--transition);
  z-index: -1;
}

.btn-orange:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 122, 0, 0.4);
}

.btn-orange:hover::before {
  left: 0;
}

.btn-outline-orange {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
  padding: 12px 30px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
}

.btn-outline-orange:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 122, 0, 0.3);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
}

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

/* ---- Top Bar ---- */
.top-bar {
  background: var(--dark-navy);
  padding: 8px 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.top-bar a {
  color: rgba(255,255,255,0.8);
  transition: var(--transition);
}

.top-bar a:hover {
  color: var(--orange);
}

.top-bar i {
  color: var(--orange);
  margin-right: 6px;
}

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

/* ---- Header / Navbar ---- */
.main-header {
  background: transparent;
  box-shadow: none;
  transition: var(--transition);
  z-index: 1050;
  position: relative;
}

.header-top-row {
  background: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.main-header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  box-shadow: none;
  animation: slideDown 0.4s ease;
  background: transparent;
}

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

.main-header .navbar {
  padding: 0;
}

.main-header .navbar-brand img {
  height: 65px;
  width: auto;
  transition: var(--transition);
}

.main-header.sticky .navbar-brand img {
  height: 42px;
}

/* Navbar Orange Styling for Desktop */
@media (min-width: 992px) {
  .main-header .navbar {
    background: linear-gradient(90deg, var(--orange), var(--orange-dark)) !important;
    padding: 0 20px !important;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm) !important;
    margin-bottom: 0px !important;
    box-shadow: var(--shadow-sm);
  }
  .main-header .nav-link {
    color: var(--dark-gray) !important;
    padding: 12px 20px !important;
    font-weight: 700 !important;
  }
  .main-header .nav-link::after {
    background: var(--white) !important;
  }
  .main-header .nav-link:hover,
  .main-header .nav-link.active {
    color: var(--white) !important;
  }
  .main-header .nav-link:hover::after,
  .main-header .nav-link.active::after {
    background: var(--white) !important;
    width: 60%;
  }
}

/* Navbar Styling for Mobile */
@media (max-width: 991px) {
  .main-header .navbar-collapse {
    background: var(--dark-navy);
    padding: 20px;
    border-radius: var(--radius-md);
    margin-top: 10px;
    box-shadow: var(--shadow-md);
  }
  .main-header .nav-link {
    color: var(--white) !important;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 10px 15px !important;
  }
  .main-header .nav-link::after {
    display: none;
  }
  .main-header .nav-link:hover,
  .main-header .nav-link.active {
    color: var(--orange) !important;
    padding-left: 25px !important;
  }
}

.main-header .nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: var(--transition);
}

.main-header .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  transition: var(--transition);
  border-radius: 2px;
}

.nav-cta .btn-orange {
  padding: 10px 24px;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
}

/* Sticky Header Adjustment for Desktop */
@media (min-width: 992px) {
  .main-header.sticky .header-top-row {
    display: none !important;
  }
  .main-header.sticky .navbar {
    padding: 2px 0 !important;
  }
}

/* Hamburger */
.navbar-toggler {
  border: none;
  padding: 4px 8px;
  outline: none !important;
  box-shadow: none !important;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--dark-navy);
  border-radius: 3px;
  transition: var(--transition);
}

.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(2) {
  opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ---- Hero Section ---- */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--dark-navy) 0%, var(--dark-navy-2) 40%, #0f3460 100%);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 122, 0, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 122, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(15, 52, 96, 0.3) 0%, transparent 70%);
  z-index: 1;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--white), transparent);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: var(--white);
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease;
}

.hero-content h1 span {
  color: var(--orange);
}

.hero-content p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 580px;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-decoration {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,122,0,0.12), transparent 70%);
  z-index: 1;
  animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { transform: translateY(-50%) scale(1); opacity: 0.6; }
  50% { transform: translateY(-50%) scale(1.1); opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Floating shapes */
.hero-shapes .shape {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
  opacity: 0.08;
}

.hero-shapes .shape-1 {
  width: 300px;
  height: 300px;
  background: var(--orange);
  top: 10%;
  right: 10%;
  animation: float 6s ease-in-out infinite;
}

.hero-shapes .shape-2 {
  width: 150px;
  height: 150px;
  background: var(--orange-light);
  bottom: 20%;
  left: 5%;
  animation: float 8s ease-in-out infinite reverse;
}

.hero-shapes .shape-3 {
  width: 80px;
  height: 80px;
  background: var(--white);
  top: 30%;
  left: 20%;
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* ---- Service Cards ---- */
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--light-gray);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  transform: scaleX(0);
  transition: var(--transition);
}

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

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card .icon-box {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.1), rgba(255, 122, 0, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--orange);
  transition: var(--transition);
}

.service-card:hover .icon-box {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.service-card .card-link {
  color: var(--orange);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.service-card .card-link:hover {
  gap: 10px;
}

/* ---- Glassmorphism Cards ---- */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--transition);
}

.glass-card:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-4px);
}

/* ---- Fleet Cards ---- */
.fleet-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--light-gray);
  height: 100%;
}

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

.fleet-card .fleet-image {
  height: 220px;
  background: linear-gradient(135deg, var(--dark-navy), var(--dark-navy-2));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.fleet-card .fleet-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(255,122,0,0.2), transparent 60%);
}

.fleet-card .fleet-image i {
  font-size: 4rem;
  color: rgba(255,255,255,0.3);
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.fleet-card:hover .fleet-image i {
  color: var(--orange);
  transform: scale(1.15);
}

.fleet-card .fleet-body {
  padding: 1.5rem;
  text-align: center;
}

.fleet-card .fleet-body h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.fleet-card .fleet-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ---- Stats / Counter Section ---- */
.stats-section {
  background: linear-gradient(135deg, var(--dark-navy) 0%, var(--dark-navy-2) 100%);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 50%, rgba(255,122,0,0.15), transparent 40%),
    radial-gradient(circle at 100% 50%, rgba(255,122,0,0.1), transparent 40%);
}

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
  z-index: 1;
}

.stat-item .stat-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 122, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.75rem;
  color: var(--orange);
  border: 2px solid rgba(255,122,0,0.3);
  transition: var(--transition);
}

.stat-item:hover .stat-icon {
  background: var(--orange);
  color: var(--white);
  transform: scale(1.1);
}

.stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.stat-item .stat-label {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  font-weight: 500;
}

/* ---- Service Areas Grid ---- */
.area-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--light-gray);
  position: relative;
  overflow: hidden;
}

.area-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: var(--transition);
}

.area-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255,122,0,0.2);
}

.area-card:hover::after {
  transform: scaleX(1);
}

.area-card i {
  font-size: 1.5rem;
  color: var(--orange);
  margin-bottom: 0.75rem;
  display: block;
}

.area-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0;
}

.area-card a {
  color: var(--dark-navy);
}

.area-card a:hover {
  color: var(--orange);
}

/* ---- FAQ Accordion ---- */
.faq-section .accordion-item {
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md) !important;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition);
}

.faq-section .accordion-item:hover {
  border-color: rgba(255,122,0,0.3);
}

.faq-section .accordion-button {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--dark-navy);
  padding: 1.25rem 1.5rem;
  background: var(--white);
  box-shadow: none !important;
}

.faq-section .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, rgba(255,122,0,0.05), rgba(255,122,0,0.02));
  color: var(--orange);
}

.faq-section .accordion-button::after {
  background-image: none;
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.8rem;
  color: var(--orange);
  width: auto;
  height: auto;
  transition: var(--transition);
}

.faq-section .accordion-body {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ---- CTA Section ---- */
.cta-section {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}

.cta-section h2 {
  color: var(--white);
  font-size: 2.25rem;
}

.cta-section p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
}

/* ---- WhatsApp Floating Button ---- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--success-green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.75rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

@keyframes whatsapp-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ---- Back to Top ---- */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 9998;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--dark-navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  border: none;
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--orange);
  transform: translateY(-3px);
}

/* ---- Footer ---- */
.main-footer {
  background: linear-gradient(180deg, var(--dark-navy) 0%, #0d0d1a 100%);
  color: rgba(255,255,255,0.7);
  padding-top: 80px;
  position: relative;
}

.main-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light), var(--orange));
}

.footer-title {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

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

.main-footer p {
  font-size: 0.95rem;
  line-height: 1.8;
}

.footer-links {
  list-style: none;
  padding: 0;
}

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

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '\f054';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.65rem;
  color: var(--orange);
  transition: var(--transition);
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 1rem;
}

.footer-contact-item i {
  color: var(--orange);
  font-size: 1rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.footer-contact-item span {
  font-size: 0.95rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  margin-top: 3rem;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
}

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

/* ---- Breadcrumb ---- */
.breadcrumb-section {
  background: linear-gradient(135deg, var(--dark-navy), var(--dark-navy-2));
  padding: 60px 0 40px;
  position: relative;
  overflow: hidden;
}

.breadcrumb-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(255,122,0,0.1), transparent 50%);
}

.breadcrumb-section h1 {
  color: var(--white);
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.breadcrumb-section .breadcrumb {
  background: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
}

.breadcrumb-section .breadcrumb-item {
  font-size: 0.9rem;
}

.breadcrumb-section .breadcrumb-item a {
  color: rgba(255,255,255,0.6);
}

.breadcrumb-section .breadcrumb-item a:hover {
  color: var(--orange);
}

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

.breadcrumb-section .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,0.3);
}

/* ---- Forms ---- */
.form-control,
.form-select {
  padding: 14px 18px;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  transition: var(--transition);
  font-family: var(--font-primary);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 122, 0, 0.1);
}

.form-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark-navy);
  margin-bottom: 0.5rem;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
  color: var(--orange);
}

.contact-form-wrapper,
.quote-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.04);
}

/* ---- Contact Info Cards ---- */
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--light-gray);
  height: 100%;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255,122,0,0.2);
}

.contact-info-card .icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,122,0,0.1), rgba(255,122,0,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem;
  color: var(--orange);
  transition: var(--transition);
}

.contact-info-card:hover .icon-circle {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
}

.contact-info-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

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

/* ---- Blog Cards ---- */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--light-gray);
  height: 100%;
}

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

.blog-card .blog-image {
  height: 220px;
  background: linear-gradient(135deg, var(--dark-navy), var(--dark-navy-2));
  position: relative;
  overflow: hidden;
}

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

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

.blog-card .blog-date {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--orange);
  color: var(--white);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
}

.blog-card .blog-body {
  padding: 1.5rem;
}

.blog-card .blog-body h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  transition: var(--transition);
}

.blog-card:hover .blog-body h3 {
  color: var(--orange);
}

.blog-card .blog-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.blog-card .read-more {
  color: var(--orange);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-card .read-more:hover {
  gap: 10px;
}

/* ---- Trust Indicators ---- */
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.75rem 0;
}

.trust-item i {
  color: var(--orange);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.trust-item span {
  font-weight: 500;
  font-size: 0.95rem;
}

/* ---- Page Content ---- */
.page-content {
  padding: 80px 0;
}

.page-content h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.page-content h2:first-child {
  margin-top: 0;
}

.page-content p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.page-content ul {
  margin-bottom: 1.5rem;
}

.page-content ul li {
  margin-bottom: 0.5rem;
  padding-left: 0.5rem;
}

/* ---- About Features ---- */
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  background: var(--light-bg);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.about-feature:hover {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transform: translateX(5px);
}

.about-feature i {
  font-size: 1.5rem;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.about-feature h4 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.about-feature p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ---- Google Maps ---- */
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--light-gray);
}

.map-wrapper iframe {
  display: block;
}

/* ---- Lazy Load Placeholder ---- */
.lazy-placeholder {
  background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
  animation: shimmer 2s infinite linear;
  background-size: 200% 100%;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

img.lazy {
  opacity: 0;
  transition: opacity 0.5s ease;
}

img.lazy.loaded {
  opacity: 1;
}

/* ---- Quote Form Trust ---- */
.quote-trust-section {
  background: var(--light-bg);
  border-radius: var(--radius-md);
  padding: 2rem;
}

/* ---- Blog Detail ---- */
.blog-detail .blog-header-image {
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, var(--dark-navy), var(--dark-navy-2));
}

.blog-detail .blog-header-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-detail .blog-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.blog-detail .blog-meta i {
  color: var(--orange);
  margin-right: 6px;
}

.blog-detail .blog-content {
  font-size: 1.05rem;
  line-height: 1.9;
}

.blog-detail .blog-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

/* ---- Service Detail ---- */
.service-detail-icon {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255,122,0,0.1), rgba(255,122,0,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--orange);
  margin-bottom: 1.5rem;
}

/* ---- Animations on Scroll ---- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-slow);
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Responsive ---- */
@media (max-width: 1199.98px) {
  .hero-content h1 {
    font-size: 3rem;
  }
  .section-title {
    font-size: 2.25rem;
  }
}

@media (max-width: 991.98px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .section-padding {
    padding: 70px 0;
  }
  .section-title {
    font-size: 2rem;
  }
  .hero-section {
    min-height: 70vh;
  }
  .hero-decoration {
    display: none;
  }
  .main-header .navbar-collapse {
    background: var(--white);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-top: 0.5rem;
    box-shadow: var(--shadow-md);
  }
  .nav-cta {
    margin-top: 1rem;
  }
  .contact-form-wrapper,
  .quote-form-wrapper {
    padding: 2rem;
  }
}

@media (max-width: 767.98px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .hero-section {
    min-height: 60vh;
    padding: 100px 0 80px;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }
  .section-padding {
    padding: 50px 0;
  }
  .section-title {
    font-size: 1.75rem;
  }
  .section-subtitle {
    font-size: 1rem;
  }
  .top-bar {
    display: none;
  }
  .stat-item .stat-number {
    font-size: 2rem;
  }
  .breadcrumb-section {
    padding: 40px 0 30px;
  }
  .breadcrumb-section h1 {
    font-size: 1.75rem;
  }
  .contact-form-wrapper,
  .quote-form-wrapper {
    padding: 1.5rem;
  }
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    font-size: 1.5rem;
  }
  .back-to-top {
    bottom: 85px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 575.98px) {
  .hero-content h1 {
    font-size: 1.75rem;
  }
  .main-footer {
    padding-top: 50px;
  }
}

/* ---- Print ---- */
@media print {
  .top-bar,
  .whatsapp-float,
  .back-to-top,
  .main-header {
    display: none !important;
  }
}
