* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Yantramanav", sans-serif;
  scroll-behavior: smooth;
}
html, body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-main);
}
p {
  font-family: var(--text-font);
}
:root {
  --primary: #ef5027;
  --dark: #000000;
  --dark-blue: #0c2846;
  --light: white;
  --text-light: #f3eeee;
  --font-main: "Yantramanav", sans-serif;
  --text-font: "Poppins", sans-serif;
  --secondary: #0844c7;
  --text-color: #555;
}
.header {
  width: 100%;
  background: var(--light);
  padding: 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 99999;
  transition: all 0.3s ease;
}
.header-container {
  max-width: 1400px;
  background: var(--light);
  margin: 0 auto;
  padding: 16px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.logo {
  flex-shrink: 0;
}
.logo img {
  max-height: 65px;
  transition: transform 0.3s ease;
}
.logo img:hover {
  transform: scale(1.05);
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
  transition: all 0.4s ease;
  margin: 0;
  padding: 0;
  align-items: center;
}
.nav-links .active {
  color: var(--primary);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  transition: 0.4s;
}
.hamburger span {
  height: 3px;
  width: 30px;
  background: var(--dark);
  transition: 0.4s;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.nav-links li {
  transition: all 0.4s ease;
}
.nav-links.active li {
  opacity: 1;
  transform: translateX(0);
}
@keyframes menuFadeSlide {
  0% {
    opacity: 0;
    transform: translateY(-15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.nav-links {
  opacity: 1;
  transition: all 0.4s ease;
}
.nav-links.active {
  opacity: 1;
  pointer-events: auto;
  animation: menuFadeSlide 0.5s ease forwards;
}
@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.nav-links.active li {
  animation: fadeSlideIn 0.6s ease forwards;
}
.nav-links.active li:nth-child(1) {
  animation-delay: 0.1s;
}
.nav-links.active li:nth-child(2) {
  animation-delay: 0.2s;
}
.nav-links.active li:nth-child(3) {
  animation-delay: 0.3s;
}
.nav-links.active li:nth-child(4) {
  animation-delay: 0.4s;
}
.custom-btn {
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--primary), #ff6a00);
  color: var(--light);
  border: none;
  margin: 0;
  border-radius: 50px;
  text-decoration: none;
  font-size: 15px;
  font-family: var(--font-main);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(239, 80, 39, 0.3);
  white-space: nowrap;
}
.custom-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(239, 80, 39, 0.4);
}
.section-subtitle-badge {
  display: inline-block;
  color: var(--primary);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: linear-gradient(135deg, rgba(239, 80, 39, 0.1), rgba(8, 68, 199, 0.1));
  padding: 6px 16px;
  border-radius: 50px;
  border: 1.5px solid rgba(239, 80, 39, 0.2);
  margin-bottom: 20px;
}
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #0844c7 0%, #0c2846 100%);
  overflow: hidden;
  padding: 120px 0 120px;
}
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: float 20s ease-in-out infinite;
}
.shape-1 {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, #ef5027, #ff6a00);
  top: -150px;
  left: -100px;
  animation-delay: 0s;
}
.shape-2 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #3b82f6, #1e40af);
  bottom: -100px;
  right: 100px;
  animation-delay: 7s;
}
.shape-3 {
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, #10b981, #059669);
  top: 50%;
  right: -100px;
  animation-delay: 14s;
}
@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(50px, -50px) scale(1.1);
  }
  66% {
    transform: translate(-30px, 30px) scale(0.9);
  }
}
.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-left {
  color: var(--light);
  animation: fadeInLeft 1s ease-out;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
}
.hero-badge i {
  font-size: 18px;
  color: var(--primary);
}
.hero-subtitle {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  font-family: var(--font-main);
}
.hero-title {
  font-size: 72px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 25px;
  text-transform: uppercase;
  font-family: var(--font-main);
  letter-spacing: -1px;
}
.hero-title-highlight {
  background: linear-gradient(90deg, var(--primary), #ff6a00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-description {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  font-family: var(--text-font);
  max-width: 550px;
}
.hero-features {
  display: flex;
  gap: 25px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}
.hero-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--light);
  font-weight: 500;
}
.hero-feature i {
  font-size: 20px;
  color: #10b981;
}
.hero-cta {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--primary), #ff6a00);
  color: var(--light);
  padding: 18px 40px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 10px 30px rgba(239, 80, 39, 0.4);
  transition: all 0.3s ease;
  font-family: var(--font-main);
}
.hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(239, 80, 39, 0.5);
}
.hero-btn-primary i {
  transition: transform 0.3s ease;
}
.hero-btn-primary:hover i {
  transform: translateX(5px);
}
.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: var(--light);
  padding: 18px 35px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  font-family: var(--font-main);
}
.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}
.hero-right {
  position: relative;
  animation: fadeInRight 1s ease-out;
}
.hero-image-wrapper {
  position: relative;
  z-index: 2;
}
.hero-image-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(239, 80, 39, 0.2), rgba(8, 68, 199, 0.2));
  border-radius: 30px;
  top: 20px;
  left: 20px;
  z-index: 1;
}
.hero-image {
  position: relative;
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  z-index: 2;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}
.floating-card {
  position: absolute;
  background: var(--light);
  padding: 20px 25px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 3;
  animation: floatCard 3s ease-in-out infinite;
}
.discount-card {
  top: 60px;
  left: -40px;
}
.customers-card {
  bottom: 80px;
  right: -40px;
  animation-delay: 1.5s;
}
@keyframes floatCard {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
.card-icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, var(--primary), #ff6a00);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  font-size: 24px;
  flex-shrink: 0;
}
.card-content strong {
  display: block;
  font-size: 20px;
  font-weight: 900;
  color: var(--dark-blue);
  line-height: 1;
  margin-bottom: 4px;
}
.card-content span {
  display: block;
  font-size: 13px;
  color: #666;
  font-weight: 600;
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.buttons {
  display: flex;
  gap: 20px;
}
.btn {
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
}
.btn.primary {
  background: var(--primary);
  color: var(--light);
}
.btn.primary:hover {
  background: var(--primary);
}
.btn.secondary {
  color: var(--light);
  border: 1px solid var(--light);
}
.btn.secondary:hover {
  background: var(--light);
  color: var(--secondary);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  transition: 0.4s;
}
.hamburger span {
  height: 3px;
  width: 30px;
  background: var(--dark);
  transition: 0.4s;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.nav-links li {
  position: relative;
}
.nav-links li a {
  color: var(--dark);
  font-size: 16px;
  font-family: var(--font-main);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  position: relative;
  padding-bottom: 4px;
}
.nav-links li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), #ff6a00);
  transition: width 0.3s ease;
}
.nav-links li a:hover,
.nav-links li a.active,
.nav-links li.current-menu-item > a,
.nav-links li.current_page_item > a,
.nav-links li.current-menu-ancestor > a,
.nav-links li.current-page-ancestor > a {
  color: var(--primary);
}
.nav-links li a:hover::after,
.nav-links li a.active::after,
.nav-links li.current-menu-item > a::after,
.nav-links li.current_page_item > a::after,
.nav-links li.current-menu-ancestor > a::after,
.nav-links li.current-page-ancestor > a::after {
  width: 100%;
}
.booking-form-container {
  margin-top: -150px;
  display: flex;
  justify-content: center;
  z-index: 10;
  position: relative;
  padding: 0 20px;
}
.booking-form {
  background: var(--light);
  border-radius: 20px;
  padding: 40px 50px;
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 25px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
  border: 1px solid #f0f0f0;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  width: 100%;
}
.form-row-single {
  display: flex;
  gap: 20px;
  align-items: stretch;
}
.form-input-wrapper {
  position: relative;
  flex: 1;
}
.booking-form input {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 15px;
  outline: none;
  font-family: var(--text-font);
  transition: all 0.3s ease;
  background: #fafafa;
  color: var(--dark-blue);
}
.booking-form input:focus {
  border: 1px solid var(--primary);
  background: var(--light);
  box-shadow: 0 0 0 4px rgba(239, 80, 39, 0.08);
}
.booking-form input::placeholder {
  color: #aaa;
  font-size: 14px;
}
.quote-submit-btn {
  background: var(--primary);
  color: var(--light);
  border: none;
  padding: 18px 45px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-main);
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 240px;
}
.quote-submit-btn:hover {
  background: #d94620;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(239, 80, 39, 0.25);
}
.quote-submit-btn i {
  transition: transform 0.3s ease;
  font-size: 14px;
}
.quote-submit-btn:hover i {
  transform: translateX(5px);
}

/* Quote Form Message Styles */
.quote-form-message {
  background: #fff;
  border-radius: 12px;
  padding: 20px 25px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-left: 4px solid;
  animation: slideDown 0.3s ease;
  transition: opacity 0.3s ease;
}
.quote-form-message.success {
  background: #f0fdf4;
  border-left-color: #22c55e;
  color: #166534;
}
.quote-form-message.success i {
  color: #22c55e;
  font-size: 24px;
}
.quote-form-message.error {
  background: #fef2f2;
  border-left-color: #ef4444;
  color: #991b1b;
}
.quote-form-message.error i {
  color: #ef4444;
  font-size: 24px;
}
.quote-form-message span {
  flex: 1;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 500;
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.trust-signals-section {
  padding: 80px 5% 40px;
  background: var(--light);
}
.trust-signals-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  align-items: center;
}
.trust-signal {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
  transition: all 0.3s ease;
}
.trust-signal:hover {
  transform: translateY(-5px);
}
.trust-signal .trust-icon {
  width: 90px;
  height: 90px;
  background: var(--primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  font-size: 36px;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(239, 80, 39, 0.25);
  transition: all 0.3s ease;
}
.trust-signal:hover .trust-icon {
  box-shadow: 0 12px 30px rgba(239, 80, 39, 0.35);
  transform: scale(1.05);
}
.trust-signal .trust-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.trust-signal .trust-content h3 {
  font-size: 32px;
  font-weight: 800;
  color: var(--dark);
  margin: 0;
  font-family: var(--font-main);
  line-height: 1;
}
.trust-signal .trust-content p {
  font-size: 14px;
  color: #666;
  margin: 0;
  font-family: var(--text-font);
  font-weight: 500;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: var(--light);
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.trust-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}
.trust-item .trust-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), #ff6a00);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  font-size: 24px;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(239, 80, 39, 0.3);
}
.trust-content h4 {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 5px;
  font-family: var(--font-main);
}
.trust-item .trust-content p {
  font-size: 13px;
  color: var(--text-color);
  margin: 0;
  font-family: var(--text-font);
}
.about-section {
  width: 100%;
  padding: 50px 5% 90px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
}
.about-main-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrapper {
  position: relative;
}
.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}
.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.about-image:hover img {
  transform: scale(1.05);
}
.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(239, 80, 39, 0.1), rgba(8, 68, 199, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.about-image:hover .image-overlay {
  opacity: 1;
}
.badge {
  position: absolute;
  top: -30px;
  left: -30px;
  background: var(--light);
  padding: 20px 25px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 2;
  max-width: 280px;
}
.badge-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), #ff6a00);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.badge-icon i {
  font-size: 28px;
  color: var(--light);
}
.badge-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.badge-text strong {
  font-size: 16px;
  color: var(--dark-blue);
  font-family: var(--font-main);
  font-weight: 700;
}
.badge-text span {
  font-size: 13px;
  color: var(--text-color);
  font-family: var(--text-font);
  line-height: 1.3;
}
.experience-badge {
  position: absolute;
  bottom: -25px;
  right: -25px;
  background: linear-gradient(135deg, var(--primary), #ff6a00);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 40px rgba(239, 80, 39, 0.4);
  border: 8px solid var(--light);
}
.exp-number {
  font-size: 42px;
  font-weight: 900;
  color: var(--light);
  font-family: var(--font-main);
  line-height: 1;
}
.exp-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--light);
  font-family: var(--font-main);
  text-align: center;
  line-height: 1.2;
  margin-top: 5px;
}
.about-content {
  display: block;
}
.about-subtitle {
  display: inline-block;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-family: var(--font-main);
}
.about-content h2 {
  font-size: 38px;
  color: var(--dark-blue);
  font-family: var(--font-main);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.about-description {
  color: #666;
  font-family: var(--text-font);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 35px;
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}
.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 25px;
  background: var(--light);
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}
.feature-item:hover {
  border-left-color: var(--primary);
  transform: translateX(5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(239, 80, 39, 0.1), rgba(255, 106, 0, 0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-icon i {
  font-size: 28px;
  color: var(--primary);
}
.feature-content h4 {
  color: var(--dark-blue);
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.feature-content p {
  font-size: 14px;
  color: #666;
  font-family: var(--text-font);
  line-height: 1.6;
  margin: 0;
}
.about-cta {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.learn-btn-new {
  background: var(--primary);
  color: var(--light);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  padding: 16px 35px;
  text-transform: uppercase;
  border-radius: 10px;
  font-family: var(--font-main);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 1px;
}
.learn-btn-new:hover {
  background: #d94620;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(239, 80, 39, 0.3);
}
.learn-btn-new i {
  transition: transform 0.3s ease;
  font-size: 13px;
}
.learn-btn-new:hover i {
  transform: translateX(5px);
}
.about-stats {
  display: flex;
  align-items: center;
  gap: 20px;
}
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.stat-number {
  font-size: 28px;
  font-weight: 900;
  color: var(--dark-blue);
  font-family: var(--font-main);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: #666;
  font-family: var(--text-font);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.stat-divider {
  width: 2px;
  height: 40px;
  background: #ddd;
}
.learn-btn {
  background: linear-gradient(135deg, var(--primary), #ff6a00);
  color: var(--light);
  border: none;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 45px;
  text-transform: uppercase;
  border-radius: 50px;
  width: fit-content;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: var(--font-main);
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(239, 80, 39, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1.4s ease;
}
.learn-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}
.learn-btn:hover::before {
  left: 100%;
}
.learn-btn::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free", "Font Awesome 7 Free";
  font-weight: 900;
  font-size: 14px;
  transition: transform 0.4s ease;
  flex-shrink: 0;
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.learn-btn:hover {
  background: linear-gradient(135deg, #ff6a00, var(--primary));
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(239, 80, 39, 0.5);
}
.learn-btn:hover::after {
  transform: translateX(5px);
}
.whychoose-section {
  padding: 80px 5%;
  text-align: center;
  background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
}
.whychoose-container {
  max-width: 1200px;
  margin: 0 auto;
}
.whychoose-heading {
  margin-bottom: 60px;
}
.whychoose-heading .whychoose-tag {
  display: inline-block;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-family: var(--font-main);
}
.whychoose-heading h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--dark-blue);
  line-height: 1.3;
  font-family: var(--font-main);
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.whychoose-heading h2 span {
  color: var(--primary);
}
.whychoose-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.whychoose-card {
  position: relative;
  border-radius: 20px;
  padding: 45px 30px;
  background: var(--light);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.whychoose-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  border-color: transparent;
}
.whychoose-icon {
  width: 85px;
  height: 85px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  font-size: 36px;
  margin: 0 auto 30px;
  transition: all 0.4s ease;
}
.whychoose-icon-blue {
  background: linear-gradient(135deg, #3b82f6, #1e40af);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}
.whychoose-icon-orange {
  background: linear-gradient(135deg, #fb923c, #f97316);
  box-shadow: 0 10px 30px rgba(251, 146, 60, 0.3);
}
.whychoose-icon-green {
  background: linear-gradient(135deg, #34d399, #10b981);
  box-shadow: 0 10px 30px rgba(52, 211, 153, 0.3);
}
.whychoose-icon-purple {
  background: linear-gradient(135deg, #a78bfa, #8b5cf6);
  box-shadow: 0 10px 30px rgba(167, 139, 250, 0.3);
}
.whychoose-card:hover .whychoose-icon {
  transform: translateY(-10px) scale(1.05);
}
.whychoose-card:hover .whychoose-icon-blue {
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}
.whychoose-card:hover .whychoose-icon-orange {
  box-shadow: 0 15px 40px rgba(251, 146, 60, 0.4);
}
.whychoose-card:hover .whychoose-icon-green {
  box-shadow: 0 15px 40px rgba(52, 211, 153, 0.4);
}
.whychoose-card:hover .whychoose-icon-purple {
  box-shadow: 0 15px 40px rgba(167, 139, 250, 0.4);
}
.whychoose-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark-blue);
  font-family: var(--font-main);
  transition: color 0.3s;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.whychoose-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  font-family: var(--text-font);
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.move-banner {
  color: var(--light);
  padding: 0 5% 40px;
  background-image: url(images/moving-a-young-couple.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  overflow: visible;
  z-index: 1;
}
.move-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(8, 68, 199, 0.92) 0%, rgba(5, 32, 54, 0.88) 100%);
  z-index: 1;
  pointer-events: none;
}
.move-banner::after {
  content: "";
  position: absolute;
  top: -50%;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(239, 80, 39, 0.15), transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}
.move-banner-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
  position: relative;
  z-index: 2;
}
.move-banner-content {
  flex: 1;
  min-width: 300px;
  z-index: 2;
  position: relative;
  padding: 40px 50px 40px 0;
  max-width: 600px;
}
.move-banner-content::before {
  content: "\f0d1";
  font-family: "Font Awesome 6 Free", "Font Awesome 7 Free";
  font-weight: 900;
  font-size: 80px;
  color: rgba(239, 80, 39, 0.15);
  position: absolute;
  top: -40px;
  left: -10px;
  z-index: -1;
  animation: pulse 3s ease-in-out infinite;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.move-banner-content h2 {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 20px;
  color: var(--light);
  font-family: var(--font-main);
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 0.8s ease;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.move-banner-sub {
  font-size: 18px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.95);
  font-family: var(--text-font);
  line-height: 1.6;
  animation: fadeInUp 1s ease;
}
.move-banner-sub strong {
  color: var(--primary);
  font-size: 28px;
  font-weight: 900;
  text-shadow: 0 0 20px rgba(239, 80, 39, 0.5);
  padding: 0 6px;
  display: inline-block;
  animation: glow 2s ease-in-out infinite;
}
.move-banner-note {
  font-size: 13px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--text-font);
  font-style: italic;
  animation: fadeInUp 1.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}
.move-banner-note::before {
  display: none;
}
.move-banner-note i {
  color: rgba(255, 255, 255, 0.7);
  font-style: normal;
  flex-shrink: 0;
}
.move-banner-image {
  z-index: 10;
  padding: 0;
  position: relative;
}
.move-banner-image::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(239, 80, 39, 0.2), transparent 60%);
  border-radius: 50%;
  animation: pulse 3s ease-in-out infinite;
  z-index: -1;
}
.move-banner-image img {
  width: 460px;
  max-width: 100%;
  object-fit: contain;
  margin-top: -100px;
  margin-bottom: -53px;
  z-index: 10;
  position: relative;
  filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.3));
  animation: fadeInRight 1s ease;
}
@keyframes glow {
  0%, 100% {
    text-shadow: 0 0 20px rgba(239, 80, 39, 0.5);
  }
  50% {
    text-shadow: 0 0 30px rgba(239, 80, 39, 0.8), 0 0 40px rgba(239, 80, 39, 0.6);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.services-section {
  padding: 70px 0;
  background: linear-gradient(180deg, #f9fbff 0%, #ffffff 50%, #f9fbff 100%);
  position: relative;
  overflow: hidden;
}
.services-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(8, 68, 199, 0.05), transparent);
  border-radius: 50%;
  pointer-events: none;
}
.services-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}
.services-header {
  text-align: center;
  margin-bottom: 70px;
}
.services-subtitle {
  display: inline-block;
  color: var(--primary);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: linear-gradient(135deg, rgba(239, 80, 39, 0.1), rgba(8, 68, 199, 0.1));
  padding: 8px 20px;
  border-radius: 50px;
  border: 1.5px solid rgba(239, 80, 39, 0.2);
  margin-bottom: 20px;
}
.services-title {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.2;
  color: var(--dark-blue);
  margin-bottom: 15px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.title-highlight {
  background: linear-gradient(90deg, var(--primary), #ff6a00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.services-description {
  font-size: 18px;
  color: var(--text-color);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-top: 60px;
}
.service-card {
  position: relative;
  background: var(--light);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.service-card-inner {
  padding: 40px 35px;
  position: relative;
  z-index: 2;
}
.service-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(135deg, var(--primary), #ff6a00);
  transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}
.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(239, 80, 39, 0.2);
  border-color: transparent;
}
.service-card:hover .service-gradient {
  height: 100%;
}
.service-card:hover .service-card-inner {
  color: var(--light);
}
.service-card:hover .service-title,
.service-card:hover .service-description {
  color: var(--light);
}
.service-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}
.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), #ff6a00);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(239, 80, 39, 0.25);
  transition: all 0.4s ease;
}
.service-icon i {
  font-size: 36px;
  color: var(--light);
  transition: transform 0.4s ease;
}
.service-card:hover .service-icon {
  background: var(--light);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}
.service-card:hover .service-icon i {
  color: var(--primary);
  transform: scale(1.1) rotate(5deg);
}
.service-number {
  font-size: 60px;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.04);
  line-height: 1;
  transition: color 0.4s ease;
}
.service-card:hover .service-number {
  color: rgba(255, 255, 255, 0.15);
}
.service-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 15px;
  line-height: 1.3;
  transition: color 0.4s ease;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.service-description {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-color);
  margin-bottom: 25px;
  transition: color 0.4s ease;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}
.service-link::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}
.service-link:hover::after {
  width: 70%;
}
.service-card:hover .service-link {
  color: var(--light);
}
.service-card:hover .service-link::after {
  background: var(--light);
}
.service-link i {
  transition: transform 0.3s ease;
}
.service-link:hover i {
  transform: translateX(5px);
}
.service-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(135deg, var(--primary), #ff6a00);
  transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
  border-radius: 24px;
}
.service-card:hover::before {
  height: 100%;
}
.service-card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--primary), #ff6a00);
  color: var(--light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(239, 80, 39, 0.3);
  z-index: 3;
  animation: pulse-badge 2s ease-in-out infinite;
}
@keyframes pulse-badge {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
.service-card .icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), #ff6a00);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  box-shadow: 0 10px 30px rgba(239, 80, 39, 0.25);
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}
.service-card .icon i {
  font-size: 36px;
  color: var(--light);
  transition: transform 0.4s ease;
}
.service-card:hover .icon {
  background: var(--light);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
  transform: scale(1.1) rotate(-5deg);
}
.service-card:hover .icon i {
  color: var(--primary);
  transform: rotate(5deg);
}
.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 15px;
  line-height: 1.3;
  transition: color 0.4s ease;
  position: relative;
  z-index: 2;
}
.service-card:hover h3 {
  color: var(--light);
}
.service-card > p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-color);
  margin-bottom: 20px;
  transition: color 0.4s ease;
  position: relative;
  z-index: 2;
}
.service-card:hover > p {
  color: rgba(255, 255, 255, 0.9);
}
.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
  position: relative;
  z-index: 2;
}
.service-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-color);
  padding: 8px 0;
  transition: all 0.3s ease;
}
.service-features li i {
  font-size: 14px;
  color: var(--primary);
  flex-shrink: 0;
  transition: color 0.3s ease;
}
.service-card:hover .service-features li {
  color: rgba(255, 255, 255, 0.95);
}
.service-card:hover .service-features li i {
  color: var(--light);
}
.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 10px;
  border: 2px solid var(--primary);
  background: transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.service-cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: var(--light);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
  z-index: -1;
}
.service-cta:hover::before {
  width: 300px;
  height: 300px;
}
.service-card:hover .service-cta {
  color: var(--primary);
  border-color: var(--light);
  background: var(--light);
}
.service-cta i {
  transition: transform 0.3s ease;
}
.service-cta:hover i {
  transform: translateX(5px);
}
.service-card {
  padding: 40px 35px;
  position: relative;
}
.why-choose-services {
  padding: 70px 0;
  background: var(--light);
  position: relative;
}
.why-choose-services .section-header {
  margin-bottom: 50px;
}
.why-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 900px;
  margin: 0 auto 40px;
}
.why-services-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--light);
  border-radius: 12px;
  transition: all 0.3s ease;
}
.why-services-item:hover {
  transform: translateX(10px);
  background: rgba(239, 80, 39, 0.02);
}
.why-item-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-item-icon i {
  font-size: 24px;
  color: var(--primary);
  transition: transform 0.3s ease;
}
.why-services-item:hover .why-item-icon i {
  transform: scale(1.2);
}
.why-item-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 8px;
  line-height: 1.3;
}
.why-item-content p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-color);
  margin: 0;
}
.why-cta {
  text-align: center;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .why-services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .why-services-item:hover {
    transform: translateX(0) translateY(-5px);
  }
}
.process-main-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.process-section {
  padding: 70px 0;
  background: var(--light);
  text-align: center;
}
.process-heading .subtitle {
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
}
.process-heading h2 {
  font-size: 36px;
  color: var(--dark-blue);
  margin-top: 8px;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 70px;
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #ff6a00, var(--primary));
  z-index: 1;
  box-shadow: 0 2px 10px rgba(239, 80, 39, 0.3);
}
.process-step {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.process-number {
  width: 80px;
  height: 80px;
  border: 3px solid var(--primary);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--light), #fff8f5);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 26px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
  box-shadow: 0 5px 20px rgba(239, 80, 39, 0.2);
  transition: all 0.3s ease;
}
.process-step:hover .process-number {
  background: linear-gradient(135deg, var(--primary), #ff6a00);
  color: var(--light);
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(239, 80, 39, 0.4);
}
.process-number::after {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 25px;
  background: var(--primary);
}
.process-card {
  border: 1px solid var(--primary);
  border-radius: 10px;
  padding: 40px 25px;
  margin-top: 22px;
  background: var(--light);
  z-index: 999;
  box-shadow: 0 10px 25px rgb(0 0 0 / 11%);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  min-height: 260px;
  height: 100%;
}
.process-card:hover {
  box-shadow: none;
}
.process-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 12px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.process-card p {
  font-size: 14px;
  color: var(--text-color);
  font-family: var(--text-font);
  line-height: 1.6;
  margin-bottom: 18px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  flex: 1;
}
.process-icon i {
  font-size: 32px;
  color: var(--primary);
  transition: transform 0.3s ease;
}
.process-card:hover .process-icon i {
  transform: scale(1.2);
}
.testimonials-modern {
  padding: 70px 20px;
  text-align: center;
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 50%, #fafafa 100%);
  position: relative;
  overflow: hidden;
}
.testimonials-modern::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(239, 80, 39, 0.03), transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
.section-header {
  margin-bottom: 50px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.section-header .section-subtitle-badge {
  display: inline-block;
  background: rgba(239, 80, 39, 0.08);
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 12px;
  padding: 10px 22px;
  border-radius: 50px;
  border: 1px solid rgba(239, 80, 39, 0.15);
}
.testimonial-subtitle {
  display: inline-block;
  color: var(--primary);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2.5px;
  margin-bottom: 12px;
  animation: fadeUp 1s ease;
}
.section-header h2 {
  font-size: 42px;
  font-weight: 800;
  color: #0a1628;
  line-height: 1.2;
  margin: 0 0 15px 0;
  font-family: var(--font-main);
  letter-spacing: -0.5px;
  animation: fadeUp 1.2s ease;
}
.section-header p {
  font-size: 17px;
  color: #666;
  line-height: 1.6;
  margin: 0;
  max-width: 700px;
  margin: 0 auto;
}
.testimonial-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.testimonial-card {
  display: none;
  align-items: flex-start;
  gap: 45px;
  background: var(--light);
  border-radius: 25px;
  padding: 50px 55px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.testimonial-card::after {
  content: "";
  position: absolute;
  bottom: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(239, 80, 39, 0.04), transparent 60%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.testimonial-card.active {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}
.testimonial-card.active::before,
.testimonial-card.active::after {
  opacity: 1;
}
.testimonial-card:hover {
  border-color: rgba(239, 80, 39, 0.15);
  box-shadow: 0 15px 50px rgba(239, 80, 39, 0.12);
}
.client-img-box {
  position: relative;
  width: 190px;
  height: 190px;
  flex-shrink: 0;
}
.client-img-box .img-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(239, 80, 39, 0.12), rgba(255, 106, 0, 0.12));
  border-radius: 50%;
  transform: scale(1.15);
  z-index: 1;
  animation: pulse 3s ease-in-out infinite;
}
@keyframes pulseBg {
  0%, 100% {
    transform: scale(1.15);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}
.client-img-box img {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  z-index: 2;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
  border: 4px solid var(--light);
}
.testimonial-card:hover .client-img-box img {
  transform: scale(1.05);
}
.quote-icon {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: linear-gradient(135deg, var(--primary), #ff6a00);
  color: var(--light);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 6px 20px rgba(239, 80, 39, 0.4);
  border: 4px solid var(--light);
  transition: all 0.3s ease;
}
.testimonial-card:hover .quote-icon {
  transform: rotate(10deg) scale(1.1);
  box-shadow: 0 8px 25px rgba(239, 80, 39, 0.5);
}
.client-text {
  text-align: left;
  flex: 1;
  padding-top: 15px;
}
.client-text p {
  font-size: 17px;
  line-height: 1.85;
  color: #5a5a5a;
  font-style: italic;
  margin-bottom: 28px;
  font-family: var(--text-font);
  position: relative;
  padding-left: 25px;
}
.client-text p::before {
  content: """;
  position: absolute;
  left: 0;
  top: -5px;
  font-size: 48px;
  color: rgba(239, 80, 39, 0.2);
  font-family: Georgia, serif;
  line-height: 1;
}
.client-text h3 {
  color: #0a1628;
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 8px;
  font-family: var(--font-main);
  letter-spacing: -0.3px;
}
.client-text .role {
  color: var(--primary);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2.5px;
  font-weight: 700;
  font-family: var(--font-main);
}
.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}
.testimonial-navigation {
  display: flex;
  gap: 18px;
}
.testimonial-navigation button {
  background: var(--light);
  border: 2.5px solid var(--primary);
  color: var(--primary);
  font-size: 22px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(239, 80, 39, 0.15);
}
.testimonial-navigation button:hover {
  background: var(--primary);
  color: var(--light);
  border-color: var(--primary);
  transform: scale(1.12) rotate(5deg);
  box-shadow: 0 8px 30px rgba(239, 80, 39, 0.3);
}
.testimonial-dots {
  display: flex;
  gap: 12px;
}
.dot {
  width: 14px;
  height: 14px;
  background: #d0d0d0;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.4s ease;
  border: none;
  position: relative;
}
.dot::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--primary);
  opacity: 0;
  transform: scale(1.5);
  transition: all 0.4s ease;
}
.dot:hover {
  background: #b0b0b0;
  transform: scale(1.15);
}
.dot.active {
  background: var(--primary);
  transform: scale(1.3);
}
.dot.active::after {
  opacity: 0.3;
  transform: scale(1.8);
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
footer {
  background: linear-gradient(135deg, #1a1d29 0%, #0f1117 100%);
  color: var(--light);
  padding: 90px 0 0 0;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(239, 80, 39, 0.6), transparent);
}
footer::after {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(239, 80, 39, 0.08), transparent);
  border-radius: 50%;
  pointer-events: none;
}
.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5% 60px;
}
.footer-logo {
  position: relative;
}
.footer-logo img {
  width: 170px;
  margin-bottom: 24px;
  filter: brightness(1.1) drop-shadow(0 4px 12px rgba(239, 80, 39, 0.15));
  transition: transform 0.3s ease;
}
.footer-logo img:hover {
  transform: scale(1.05);
}
.footer-logo p {
  font-size: 15px;
  font-family: var(--text-font);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 24px;
  max-width: 380px;
  padding-left: 4px;
  border-left: 3px solid rgba(239, 80, 39, 0.3);
  padding-left: 16px;
}
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-item {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px 16px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.contact-item:hover {
  background: rgba(239, 80, 39, 0.1);
  border-color: rgba(239, 80, 39, 0.3);
  transform: translateX(5px);
}
.contact-item .contact-icon {
  background: linear-gradient(135deg, var(--primary), #ff6a00);
  color: var(--light);
  font-size: 16px;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 16px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(239, 80, 39, 0.25);
}
.contact-item a {
  text-decoration: none;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  transition: 0.3s;
  line-height: 1.5;
}
.contact-item:hover a {
  color: var(--light);
}
.footer-column {
  position: relative;
}
.footer-column h3 {
  color: var(--light);
  margin-bottom: 32px;
  font-size: 19px;
  font-family: var(--font-main);
  font-weight: 700;
  position: relative;
  padding-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-column h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #ff6a00);
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(239, 80, 39, 0.3);
}
.line-track {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}
.mini-car {
  position: absolute;
  top: -6px;
  left: 0;
  color: var(--primary);
  font-size: 16px;
  animation: truck-drive 3s ease-in-out infinite;
}
@keyframes truck-drive {
  0%, 100% {
    left: 0;
    transform: scaleX(1);
  }
  48% {
    left: calc(100% - 20px);
    transform: scaleX(1);
  }
  52% {
    left: calc(100% - 20px);
    transform: scaleX(-1);
  }
  100% {
    left: 0;
    transform: scaleX(-1);
  }
}
.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-column ul li {
  margin-bottom: 14px;
}
.footer-column ul li a {
  font-size: 15px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
}
.footer-column ul li a::before {
  content: "→";
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}
.footer-column ul li a:hover {
  color: var(--primary);
  transform: translateX(8px);
}
.footer-column ul li a:hover::before {
  opacity: 1;
  transform: translateX(0);
}
.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.social-icons a {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: var(--light);
  font-size: 20px;
  transition: all 0.4s ease;
  text-decoration: none !important;
  position: relative;
}
.social-icons a i {
  text-decoration: none !important;
}
.social-icons a::before {
  display: none;
}
.social-icons a:hover {
  background: linear-gradient(135deg, var(--primary), #ff6a00);
  border-color: transparent;
  color: var(--light);
  transform: translateY(-5px) rotate(5deg);
  box-shadow: 0 10px 25px rgba(239, 80, 39, 0.4);
  text-decoration: none;
}
.footer-bottom {
  text-align: center;
  padding: 32px 5%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--text-font);
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  background: rgba(0, 0, 0, 0.3);
  position: relative;
}
.footer-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(239, 80, 39, 0.5), transparent);
}
.footer-bottom a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}
.footer-bottom a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: width 0.3s ease;
}
.footer-bottom a:hover {
  color: #ff6a00;
}
.footer-bottom a:hover::after {
  width: 100%;
}
.innerpage-conatiner {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 20px;
}
.innerpage-hero {
  position: relative;
  height: 50vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  background: url("images/innerpages-bg.jpeg") center/cover no-repeat;
  overflow: hidden;
}
.innerpage-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6), rgba(0, 33, 71, 0.8));
  z-index: 1;
}
.innerpage-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
}
.innerpage-hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.innerpage-hero-content p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 25px;
  line-height: 1.6;
}
.innerpage-breadcrumb {
  display: inline-flex;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 50px;
  backdrop-filter: blur(5px);
}
.innerpage-breadcrumb a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px !important;
  transition: color 0.3s;
  margin: 0;
}
.innerpage-breadcrumb a:hover {
  color: var(--primary);
}
.innerpage-breadcrumb span {
  color: var(--primary);
  font-weight: 500;
}
.aboutpage-section {
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  padding: 70px 0;
  display: flex;
  justify-content: center;
}
.aboutpage-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 5%;
}
.aboutpage-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.aboutpage-left {
  position: relative;
  padding: 10px;
}
.aboutpage-left::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(239, 80, 39, 0.08), transparent 50%);
  border-radius: 35px;
  z-index: 0;
}
.aboutpage-left img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}
.aboutpage-left img:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
}
.aboutpage-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: var(--primary);
  color: var(--light);
  padding: 18px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 15px 35px rgba(239, 80, 39, 0.4);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}
.aboutpage-badge:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(239, 80, 39, 0.5);
}
.aboutpage-badge i {
  font-size: 22px;
}
.aboutpage-badge i::before {
  display: inline-block;
}
.aboutpage-badge i::after {
  display: none;
}
.aboutpage-right {
  display: block;
}
.aboutpage-right h5 {
  display: inline-block;
  background: rgba(239, 80, 39, 0.08);
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 12px;
  padding: 10px 22px;
  border-radius: 50px;
  border: 1px solid rgba(239, 80, 39, 0.15);
}
.aboutpage-right h2 {
  font-size: 46px;
  color: #0a1628;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 28px 0;
  font-family: var(--font-main);
  letter-spacing: -0.5px;
}
.aboutpage-right p {
  font-size: 17px;
  color: #5a5a5a;
  line-height: 1.85;
  margin-bottom: 40px;
  max-width: 95%;
}
.aboutpage-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 40px;
}
.aboutpage-point {
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.3s ease;
  padding: 4px 0;
}
.aboutpage-point:hover i {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(239, 80, 39, 0.3);
}
.aboutpage-point i {
  width: 26px;
  height: 26px;
  background: var(--primary);
  color: var(--light);
  font-size: 13px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(239, 80, 39, 0.2);
}
.aboutpage-point span {
  font-weight: 600;
  color: #1a1a1a;
  font-size: 15px;
  line-height: 1.5;
}
.about-our-process {
  margin-top: 0;
}
.get-quote {
  position: relative;
  background: url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1400&q=80") no-repeat center center/cover;
  padding: 100px 20px;
  text-align: center;
  color: var(--light);
}
.get-quote .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 33, 71, 0.8);
  z-index: 1;
}
.get-quote .container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}
.get-quote h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--light);
}
.get-quote p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: var(--light);
}
.contact-section {
  background: white;
  padding: 80px 0;
  font-family: "Poppins", sans-serif;
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(239, 80, 39, 0.03), transparent);
  border-radius: 50%;
  pointer-events: none;
}
.contact-section::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(8, 68, 199, 0.02), transparent);
  border-radius: 50%;
  pointer-events: none;
}
.contact-main-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  position: relative;
  z-index: 1;
}
.contact-header {
  text-align: center;
  margin-bottom: 60px;
}
.contact-header h2 {
  font-size: 38px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -0.8px;
}
.contact-header p {
  color: #666;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
  font-size: 16px;
}
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-info .info-item {
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 28px 26px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.contact-info .info-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--primary), #ff6a00);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.contact-info .info-item:hover {
  background: white;
  border-color: rgba(239, 80, 39, 0.15);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}
.contact-info .info-item:hover::before {
  opacity: 1;
}
.contact-info .icon {
  height: 56px;
  width: 56px;
  background: linear-gradient(135deg, rgba(239, 80, 39, 0.1), rgba(8, 68, 199, 0.08));
  color: var(--primary);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 18px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.contact-info .info-item:hover .icon {
  background: linear-gradient(135deg, var(--primary), #ff6a00);
  color: white;
  transform: scale(1.08);
}
.contact-info .info-item div {
  flex: 1;
}
.contact-info .info-item h4 {
  color: #999;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}
.contact-info .info-item p,
.contact-info .info-item a {
  color: #1a1a1a;
  font-size: 17px;
  line-height: 1.4;
  margin: 0;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-info .info-item a:hover {
  color: var(--primary);
}
.contact-form {
  background: white;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.contact-form:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(239, 80, 39, 0.2);
}
.contact-form .form-group {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 20px;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  font-size: 15px;
  outline: none;
  transition: all 0.3s ease;
  background: #fafafa;
  font-family: inherit;
  color: #1a1a1a;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #999;
  font-size: 15px;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 4px rgba(239, 80, 39, 0.1);
  transform: translateY(-1px);
}
.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}
.contact-form button {
  margin-top: 8px;
  width: 100%;
  padding: 17px 40px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--primary), #ff6a00);
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.contact-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(239, 80, 39, 0.35);
}
.contact-form button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}
.contact-form .form-message {
  display: none;
  padding: 15px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: 15px;
  font-weight: 500;
  animation: fadeIn 0.3s ease;
  transition: opacity 0.3s ease;
}
.contact-form .form-message i {
  margin-right: 10px;
}
.contact-form .form-message.success {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(34, 197, 94, 0.1));
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #059669;
}
.contact-form .form-message.error {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 38, 0.1));
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #dc2626;
}
.contact-form .btn-loading {
  display: none;
}
.contact-form .btn-loading i {
  margin-right: 8px;
}
.blog-section {
  padding: 50px 0 70px 0;
  background: #fafafa;
  position: relative;
}
.blog-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}
.blog-header {
  text-align: center;
  margin-bottom: 70px;
}
.blog-subtitle {
  display: inline-block;
  color: var(--primary);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: linear-gradient(135deg, rgba(239, 80, 39, 0.1), rgba(8, 68, 199, 0.1));
  padding: 8px 20px;
  border-radius: 50px;
  border: 1.5px solid rgba(239, 80, 39, 0.2);
  margin-bottom: 20px;
}
.blog-main-title {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.2;
  color: var(--dark-blue);
  margin-bottom: 15px;
}
.title-accent {
  background: linear-gradient(90deg, var(--primary), #ff6a00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.blog-description {
  font-size: 18px;
  color: var(--text-color);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.blog-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
  border-color: rgba(239, 80, 39, 0.2);
}
.blog-image-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.blog-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-image-wrapper img {
  transform: scale(1.08);
}
.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.blog-card:hover .image-overlay {
  opacity: 1;
}
.blog-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: var(--light);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  letter-spacing: 1px;
  z-index: 3;
  box-shadow: 0 5px 15px rgba(16, 185, 129, 0.4);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
.floating-tags {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 3;
}
.tag {
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}
.tag-primary {
  background: rgba(239, 80, 39, 0.9);
  color: var(--light);
}
.tag-secondary {
  background: rgba(8, 68, 199, 0.9);
  color: var(--light);
}
.blog-card:hover .tag {
  transform: translateX(-5px);
}
.read-time {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-blue);
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 3;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.read-time i {
  color: var(--primary);
  font-size: 14px;
}
.blog-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.blog-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #666;
}
.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.meta-item i {
  color: var(--primary);
  font-size: 13px;
}
.meta-divider {
  color: #ddd;
  font-weight: 300;
}
.blog-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark-blue);
  line-height: 1.3;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}
.blog-card:hover .blog-title {
  color: var(--primary);
}
.blog-excerpt {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-color);
  margin-bottom: 25px;
  flex: 1;
}
.blog-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary), #ff6a00);
  color: var(--light);
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(239, 80, 39, 0.3);
  align-self: flex-start;
}
.blog-cta:hover {
  transform: translateX(5px);
  box-shadow: 0 12px 30px rgba(239, 80, 39, 0.4);
}
.blog-cta i {
  transition: transform 0.3s ease;
}
.blog-cta:hover i {
  transform: translateX(5px);
}
.featured-blog-section {
  padding: 70px 0;
  background: #fafafa;
  position: relative;
}
.featured-blog-card {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 0;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
}
.featured-blog-card:hover {
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}
.featured-blog-image {
  position: relative;
  height: 100%;
  min-height: 450px;
  overflow: hidden;
}
.featured-blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.featured-blog-card:hover .featured-blog-image img {
  transform: scale(1.06);
}
.featured-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--primary);
  color: white;
  padding: 7px 16px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(239, 80, 39, 0.4);
}
.featured-badge i {
  font-size: 12px;
}
.featured-blog-content {
  padding: 45px 45px 45px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.featured-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #6b7280;
  font-weight: 500;
}
.featured-meta i {
  color: var(--primary);
  font-size: 13px;
}
.featured-category {
  background: rgba(239, 80, 39, 0.1);
  padding: 5px 13px;
  border-radius: 6px;
  color: var(--primary) !important;
  font-weight: 700;
}
.featured-blog-content h3 {
  font-size: 28px;
  font-weight: 800;
  color: var(--dark-blue);
  margin-bottom: 16px;
  line-height: 1.35;
}
.featured-blog-content p {
  font-size: 15px;
  line-height: 1.75;
  color: #6b7280;
  margin-bottom: 22px;
}
.featured-highlights {
  list-style: none;
  margin-bottom: 26px;
}
.featured-highlights li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--dark-blue);
  font-weight: 500;
}
.featured-highlights i {
  color: var(--primary);
  font-size: 16px;
  flex-shrink: 0;
}
.featured-read-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: white;
  padding: 13px 30px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(239, 80, 39, 0.25);
  align-self: flex-start;
}
.featured-read-btn:hover {
  background: #ff6a00;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(239, 80, 39, 0.35);
}
.featured-read-btn i {
  transition: transform 0.3s ease;
  font-size: 13px;
}
.featured-read-btn:hover i {
  transform: translateX(4px);
}
.blog-category-section {
  padding: 60px 0 40px 0;
  background: white;
}
.category-filter-wrapper {
  text-align: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5%;
}
.category-filter-header {
  margin-bottom: 35px;
}
.category-filter-header h3 {
  font-size: 32px;
  font-weight: 800;
  color: var(--dark-blue);
  margin-bottom: 10px;
}
.category-filter-header p {
  font-size: 16px;
  color: #6b7280;
}
.category-filters {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.category-filter {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f3f4f6;
  border: 2px solid transparent;
  padding: 11px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--dark-blue);
  cursor: pointer;
  transition: all 0.3s ease;
}
.category-filter i {
  font-size: 16px;
  color: var(--primary);
  transition: all 0.3s ease;
}
.category-filter:hover {
  background: #e5e7eb;
  transform: translateY(-2px);
}
.category-filter.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}
.category-filter.active i {
  color: white;
}
.category-count {
  background: rgba(0, 0, 0, 0.1);
  padding: 3px 9px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
}
.category-filter.active .category-count {
  background: rgba(255, 255, 255, 0.25);
}
.blog-category-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary);
  color: white;
  padding: 6px 16px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(239, 80, 39, 0.3);
}
.blog-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 0;
}
.blog-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #6b7280;
  font-weight: 500;
}
.blog-meta i {
  color: var(--primary);
  font-size: 12px;
}
.blog-title {
  font-size: 19px;
  font-weight: 800;
  color: var(--dark-blue);
  margin: 0;
  line-height: 1.4;
  transition: color 0.3s ease;
}
.blog-card:hover .blog-title {
  color: var(--primary);
}
.blog-content p {
  font-size: 14px;
  line-height: 1.7;
  color: #6b7280;
  margin: 0;
  flex: 1;
}
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
  padding-top: 4px;
}
.blog-read-more:hover {
  gap: 12px;
  color: #ff6a00;
}
.blog-read-more i {
  transition: transform 0.3s ease;
  font-size: 12px;
}
.blog-read-more:hover i {
  transform: translateX(5px);
}
.blog-newsletter-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, #ff6a00 100%);
  position: relative;
  overflow: hidden;
}
.blog-newsletter-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
  border-radius: 50%;
  pointer-events: none;
}
.blog-newsletter-section::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent);
  border-radius: 50%;
  pointer-events: none;
}
.newsletter-wrapper {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.newsletter-content {
  margin-bottom: 40px;
}
.newsletter-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
}
.newsletter-icon i {
  font-size: 36px;
  color: white;
}
.newsletter-text h3 {
  font-size: 36px;
  font-weight: 900;
  color: white;
  margin-bottom: 15px;
  line-height: 1.3;
}
.newsletter-text p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}
.newsletter-form {
  max-width: 650px;
  margin: 0 auto;
}
.newsletter-input-group {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 60px;
  padding: 8px 8px 8px 25px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  margin-bottom: 15px;
  position: relative;
}
.newsletter-input-group i {
  color: var(--primary);
  font-size: 18px;
  margin-right: 15px;
}
.newsletter-input-group input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 16px;
  padding: 12px 0;
  color: var(--dark-blue);
  background: transparent;
}
.newsletter-input-group input::placeholder {
  color: #999;
}
.newsletter-btn {
  background: linear-gradient(135deg, var(--dark-blue), #0644b3);
  color: white;
  border: none;
  padding: 16px 35px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 8px 25px rgba(8, 68, 199, 0.3);
}
.newsletter-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(8, 68, 199, 0.4);
}
.newsletter-btn i {
  color: white;
  margin: 0;
  transition: transform 0.3s ease;
}
.newsletter-btn:hover i {
  transform: translateX(5px);
}
.newsletter-privacy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.newsletter-privacy i {
  font-size: 12px;
}
.newsletter-message {
  margin-top: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}
.newsletter-message.success {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}
.newsletter-message.error {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}
.single-post-hero {
  background-image: url(images/post1.jpg);
}
.post-main-container {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}
.post-title {
  color: var(--primary);
  font-size: 30px;
}
.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--text-color);
  margin-bottom: 20px;
}
.post-categories span {
  display: inline-block;
  background: #ef50272e;
  color: var(--primary);
  padding: 7px 14px;
  border-radius: 14px;
  font-size: 0.85rem;
  margin-right: 6px;
  margin-bottom: 6px;
}
.post-content {
  margin: 35px 0;
  font-size: 1.12rem;
  line-height: 1.8;
}
.post-quote {
  background: var(--light);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 8px;
  margin: 25px 0;
}
.blog-main-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5%;
}
@media (max-width: 1200px) {
  .header-container {
    gap: 20px;
  }
  .nav-links {
    gap: 22px;
  }
  .custom-btn {
    padding: 10px 18px;
    font-size: 13px;
  }
}
@media (max-width: 900px) {
  .section-subtitle-badge {
    font-size: 12px;
    padding: 5px 14px;
    letter-spacing: 1.2px;
  }
  .header-container {
    padding: 14px 4%;
    gap: 20px;
  }
  .logo img {
    max-height: 55px;
  }
  .nav-links {
    gap: 30px;
  }
  .custom-btn {
    padding: 10px 22px;
    font-size: 14px;
  }
  .btn {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .nav-links {
    position: absolute;
    top: 85px;
    right: 0;
    width: 100%;
    background: var(--light);
    flex-direction: column;
    text-align: center;
    gap: 18px;
    border-radius: 6px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.18);
    transition: right 0.45s ease-in-out;
    padding: 20px 0;
    display: none;
  }
  .nav-links.active {
    display: flex;
  }
  .hamburger {
    display: flex;
  }
  .hero {
    padding: 80px 0 80px;
  }
  .hero-container {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 0 5%;
  }
  .hero-title {
    font-size: 56px;
  }
  .hero-description {
    font-size: 17px;
  }
  .hero-features {
    grid-template-columns: 1fr;
  }
  .hero-cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .hero-cta-primary,
  .hero-cta-secondary {
    width: 100%;
    justify-content: center;
  }
  .hero-image-wrapper {
    max-width: 100%;
  }
  .hero-image {
    height: 400px;
  }
  .floating-discount {
    width: 120px;
    height: 120px;
    top: 20px;
    right: 20px;
  }
  .discount-percent {
    font-size: 32px;
  }
  .discount-text {
    font-size: 11px;
  }
  .floating-customers {
    padding: 15px 20px;
    bottom: 20px;
    left: 20px;
  }
  .customers-count {
    font-size: 24px;
  }
  .booking-form {
    padding: 30px 35px;
  }
  .form-row {
    gap: 20px;
  }
  .form-row-single {
    flex-direction: column;
  }
  .quote-submit-btn {
    width: 100%;
    min-width: unset;
  }
  .trust-signals-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .trust-signal .trust-icon {
    width: 75px;
    height: 75px;
    font-size: 30px;
  }
  .trust-signal .trust-content h3 {
    font-size: 28px;
  }
  .trust-signal .trust-content p {
    font-size: 13px;
  }
  .trust-item {
    padding: 15px;
  }
  .trust-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  .trust-content h4 {
    font-size: 20px;
  }
  .whychoose-section {
    padding: 130px 5% 140px;
  }
  .whychoose-heading h2 {
    font-size: 32px;
  }
  .whychoose-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .whychoose-icon {
    width: 75px;
    height: 75px;
    font-size: 32px;
  }
  .about-section {
    flex-direction: column;
    padding: 70px 5%;
  }
  .about-main-container {
    padding: 0 0;
    gap: 20px;
  }
  .about-image,
  .about-content,
  .ceo-card {
    width: 100%;
  }
  .service {
    margin: 0;
  }
  .about-image img {
    height: 460px;
  }
  .badge {
    display: none;
  }
  .about-content {
    padding: 30px 0;
  }
  .about-content h2 {
    font-size: 28px;
  }
     .whychoose-heading h2 {
    font-size: 26px;
  }
  .whychoose-features {
    gap: 20px;
  }
  .whychoose-card {
    padding: 35px 25px;
  }
  .services-section {
    padding: 70px 0;
  }
  .services-header {
    margin-bottom: 50px;
  }
  .services-title {
    font-size: 36px;
  }
  .services-description {
    font-size: 16px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .service-card-inner {
    padding: 35px 28px;
  }
  .service-icon {
    width: 70px;
    height: 70px;
  }
  .service-icon i {
    font-size: 32px;
  }
  .service-number {
    font-size: 50px;
  }
  .service-card {
    padding: 30px 20px;
  }
  .blog-section {
    padding: 70px 0;
  }
  .blog-header {
    margin-bottom: 50px;
  }
  .blog-main-title {
    font-size: 36px;
  }
  .blog-description {
    font-size: 16px;
  }
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .blog-image-wrapper {
    height: 250px;
  }
  .blog-content {
    padding: 25px;
  }
  .blog-title {
    font-size: 20px;
  }
  .featured-blog-section {
    padding: 60px 0;
  }
  .featured-blog-card {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .featured-blog-image {
    height: 350px;
  }
  .featured-blog-content {
    padding: 40px 30px;
  }
  .featured-blog-content h3 {
    font-size: 28px;
  }
  .featured-blog-content p {
    font-size: 16px;
  }
  .blog-category-section {
    padding: 50px 0;
  }
  .category-filter-header h3 {
    font-size: 28px;
  }
  .category-filters {
    gap: 12px;
  }
  .category-filter {
    padding: 12px 20px;
    font-size: 14px;
  }
  .blog-newsletter-section {
    padding: 60px 0;
  }
  .newsletter-text h3 {
    font-size: 28px;
  }
  .newsletter-text p {
    font-size: 16px;
  }
  .testimonials-modern {
    padding: 70px 20px;
  }
  .section-header {
    margin-bottom: 40px;
  }
  .testimonial-card {
    flex-direction: column;
    text-align: center;
    padding: 35px 30px;
    gap: 30px;
  }
  .client-text {
    text-align: center;
    padding-top: 0;
  }
  .client-img-box {
    margin-bottom: 0;
    width: 160px;
    height: 160px;
  }
  .quote-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
  .testimonial-navigation button {
    width: 50px;
    height: 50px;
    font-size: 18px;
    border-width: 2px;
  }
  .testimonial-controls {
    flex-direction: column;
    gap: 20px;
    margin-top: 35px;
  }
  .move-banner-content {
    padding: 40px 30px 40px 0;
    max-width: 100%;
  }
  .move-banner-content h2 {
    font-size: 42px;
    margin-bottom: 18px;
  }
  .move-banner-sub {
    font-size: 18px;
    margin-bottom: 16px;
  }
  .move-banner-sub strong {
    font-size: 28px;
  }
  .move-banner-content::before {
    font-size: 60px;
    top: -30px;
  }
  .move-banner-image img {
    width: 380px;
    margin-top: -120px;
  }
  .footer-container {
    grid-template-columns: -1fr;
  }
  footer {
    padding: 40px 20px 34px 20px;
  }
  .aboutpage-hero-content h1 {
    font-size: 38px;
  }
  .aboutpage-section {
    padding: 80px 5%;
  }
  .aboutpage-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .aboutpage-left img {
    border-radius: 20px;
  }
  .aboutpage-badge {
    bottom: 20px;
    left: 20px;
    padding: 14px 24px;
    font-size: 14px;
  }
  .aboutpage-right h2 {
    font-size: 36px;
  }
  .aboutpage-right p {
    font-size: 16px;
  }
  .aboutpage-points {
    gap: 15px;
  }
  .get-quote h2 {
    font-size: 2rem;
  }
  .get-quote p {
    font-size: 1rem;
  }
  .get-quote {
    padding: 80px 15px;
  }
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 0 4% 50px;
  }
  .footer-logo {
    grid-column: span 2;
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .contact-info {
    order: 2;
  }
  .contact-form {
    order: 1;
  }
}
.language-switcher {
  position: relative;
  margin-left: 20px;
  display: inline-block;
}
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid #ddd;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  transition: all 0.3s ease;
}
.lang-toggle:hover {
  background: var(--primary);
  color: var(--primary);
  border-color: var(--primary);
}
.lang-toggle i.fa-globe {
  font-size: 16px;
}
.lang-toggle i.fa-chevron-down {
  font-size: 10px;
  transition: transform 0.3s ease;
}
.lang-toggle.active i.fa-chevron-down {
  transform: rotate(180deg);
}
.current-lang {
  font-weight: 600;
  font-size: 13px;
}
.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff !important;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  min-width: 150px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}
.lang-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  color: #333 !important;
  text-decoration: none !important;
  font-size: 14px;
  transition: background 0.3s ease;
  border-bottom: 1px solid #f0f0f0;
}
.lang-option:last-child {
  border-bottom: none;
}
.lang-option:hover {
  background: #f5f5f5 !important;
  color: #EF5027 !important;
}
.lang-option:hover * {
  color: #EF5027 !important;
}
.lang-option.active {
  background: #EF5027 !important;
  color: #fff !important;
  font-weight: 600;
}
.lang-option.active * {
  color: #fff !important;
}
.lang-option .lang-flag {
  font-size: 20px;
}
.lang-option .lang-name {
  color: inherit !important;
}
@media (max-width: 600px) {
  .section-subtitle-badge {
    font-size: 11px;
    padding: 5px 12px;
    letter-spacing: 1px;
  }
  .header-container {
    padding: 12px 20px;
  }
  .logo img {
    max-height: 50px;
  }
  .header-container .custom-btn {
    display: none;
  }
  .hero {
    padding: 60px 0 60px;
  }
  .hero-container {
    padding: 0 20px;
  }
  .hero-badge {
    padding: 8px 16px;
    font-size: 11px;
  }
  .hero-badge i {
    font-size: 14px;
  }
  .hero-subtitle {
    font-size: 11px;
  }
  .hero-title {
    font-size: 42px;
    margin-bottom: 20px;
  }
  .hero-description {
    font-size: 15px;
    margin-bottom: 25px;
  }
  .hero-features {
    margin-bottom: 30px;
  }
  .hero-feature {
    font-size: 14px;
  }
  .hero-feature i {
    font-size: 16px;
    width: 16px;
    height: 16px;
  }
  .hero-image-wrapper {
    display: none;
  }
  .floating-discount,
  .floating-customers {
    display: none;
  }
  .shape {
    display: none;
  }
  .booking-form-container {
    margin-top: -120px;
  }
  .booking-form {
    padding: 25px 20px;
    border-radius: 16px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .form-row-single {
    flex-direction: column;
    gap: 15px;
  }
  .booking-form input {
    padding: 14px 16px;
    font-size: 14px;
  }
  .quote-submit-btn {
    width: 100%;
    padding: 16px 30px;
    min-width: unset;
  }
  .trust-signals-section {
    padding: 60px 15px;
  }
  .trust-signals-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .trust-signal .trust-icon {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }
  .trust-signal .trust-content h3 {
    font-size: 24px;
  }
  .trust-signal .trust-content p {
    font-size: 12px;
  }
  .trust-item {
    padding: 18px;
  }
  .trust-icon {
    width: 55px;
    height: 55px;
  }
  .trust-content h4 {
    font-size: 22px;
  }
  .trust-content p {
    font-size: 12px;
  }
  .whychoose-section {
    padding: 100px 5% 60px;
  }
  .whychoose-heading {
    margin-bottom: 40px;
  }
  .whychoose-heading h2 {
    font-size: 26px;
  }
  .whychoose-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .whychoose-card {
    padding: 35px 25px;
  }
  .whychoose-icon {
    width: 70px;
    height: 70px;
    font-size: 30px;
    margin-bottom: 25px;
  }
  .whychoose-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }
  .whychoose-card p {
    font-size: 13px;
  }
  .services-section {
    padding: 60px 0;
  }
  .services-section::before {
    display: none;
  }
  .services-header {
    margin-bottom: 40px;
  }
  .services-subtitle {
    font-size: 11px;
    padding: 6px 16px;
  }
  .services-title {
    font-size: 28px;
  }
  .services-description {
    font-size: 15px;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }
  .service-card {
    border-radius: 20px;
  }
  .service-card-inner {
    padding: 30px 25px;
  }
  .service-icon {
    width: 65px;
    height: 65px;
    border-radius: 16px;
  }
  .service-icon i {
    font-size: 28px;
  }
  .service-number {
    font-size: 42px;
  }
  .service-title {
    font-size: 19px;
    margin-bottom: 12px;
  }
  .service-description {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .service-link {
    font-size: 14px;
  }
  .blog-section {
    padding: 60px 0;
  }
  .blog-header {
    margin-bottom: 40px;
  }
  .blog-subtitle {
    font-size: 11px;
    padding: 6px 16px;
  }
  .blog-main-title {
    font-size: 28px;
  }
  .blog-description {
    font-size: 15px;
  }
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }
  .blog-image-wrapper {
    height: 240px;
  }
  .blog-content {
    padding: 25px 20px;
  }
  .featured-blog-section {
    padding: 50px 0;
  }
  .featured-blog-image {
    height: 280px;
  }
  .featured-blog-content {
    padding: 30px 25px;
  }
  .featured-blog-content h3 {
    font-size: 24px;
  }
  .featured-blog-content p {
    font-size: 15px;
  }
  .featured-highlights li {
    font-size: 14px;
  }
  .featured-read-btn {
    padding: 14px 28px;
    font-size: 14px;
    width: 100%;
    justify-content: center;
  }
  .blog-category-section {
    padding: 40px 0;
  }
  .category-filter-header h3 {
    font-size: 24px;
  }
  .category-filter-header p {
    font-size: 14px;
  }
  .category-filters {
    gap: 10px;
  }
  .category-filter {
    padding: 10px 16px;
    font-size: 13px;
  }
  .category-filter span:first-of-type {
    display: none;
  }
  .category-filter i {
    font-size: 16px;
    margin-right: 0;
  }
  .blog-newsletter-section {
    padding: 50px 0;
  }
  .newsletter-icon {
    width: 65px;
    height: 65px;
  }
  .newsletter-icon i {
    font-size: 28px;
  }
  .newsletter-text h3 {
    font-size: 24px;
  }
  .newsletter-text p {
    font-size: 15px;
  }
  .newsletter-input-group {
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    border-radius: 20px;
  }
  .newsletter-input-group i:first-child {
    display: none;
  }
  .newsletter-input-group input {
    padding: 12px;
    text-align: center;
  }
  .newsletter-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 30px;
  }
  .blog-title {
    font-size: 19px;
  }
  .blog-excerpt {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .blog-cta {
    padding: 12px 24px;
    font-size: 14px;
  }
  .floating-tags {
    top: 15px;
    right: 15px;
    gap: 6px;
  }
  .tag {
    padding: 5px 12px;
    font-size: 11px;
  }
  .read-time {
    bottom: 15px;
    left: 15px;
    padding: 6px 12px;
    font-size: 12px;
  }
  .blog-badge {
    top: 15px;
    left: 15px;
    font-size: 11px;
    padding: 5px 12px;
  }
  .about-section {
    padding: 60px 5%;
  }
  .about-main-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-image img {
    height: 350px;
  }
  .badge {
    position: relative;
    top: 0;
    left: 0;
    margin-bottom: 20px;
    max-width: 100%;
  }
  .experience-badge {
    width: 100px;
    height: 100px;
    bottom: 15px;
    right: 15px;
    border-width: 5px;
  }
  .exp-number {
    font-size: 32px;
  }
  .exp-text {
    font-size: 12px;
  }
  .about-subtitle {
    font-size: 12px;
  }
  .about-content h2 {
    font-size: 26px;
  }
  .about-description {
    font-size: 15px;
  }
  .about-features {
    gap: 20px;
    margin-bottom: 30px;
  }
  .feature-item {
    padding: 18px;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .feature-icon {
    width: 50px;
    height: 50px;
  }
  .feature-icon i {
    font-size: 22px;
  }
  .feature-content h4 {
    font-size: 17px;
  }
  .feature-content p {
    font-size: 13px;
  }
  .about-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .learn-btn-new {
    width: 100%;
    justify-content: center;
    padding: 14px 30px;
  }
  .about-stats {
    justify-content: space-around;
  }
  .stat-number {
    font-size: 24px;
  }
  .stat-label {
    font-size: 11px;
  }
  .process-section {
    padding: 60px 0;
  }
  .process-main-container {
    padding: 0 15px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .process-card {
    padding: 30px 20px;
    margin-top: 0;
  }
  .process-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .process-card p {
    font-size: 13px;
    margin-bottom: 15px;
  }
  .process-icon {
    width: 60px;
    height: 60px;
  }
  .process-icon i {
    font-size: 26px;
  }
  .testimonials-modern {
    padding: 60px 15px;
  }
  .section-header {
    margin-bottom: 35px;
  }
  .section-header h2 {
    font-size: 26px;
  }
  .testimonial-card {
    padding: 30px 20px;
    gap: 20px;
    border-radius: 16px;
  }
  .client-img-box {
    width: 140px;
    height: 140px;
  }
  .quote-icon {
    width: 42px;
    height: 42px;
    font-size: 16px;
    bottom: 5px;
    right: 5px;
  }
  .client-text p {
    font-size: 15px;
    margin-bottom: 18px;
  }
  .client-text h3 {
    font-size: 18px;
  }
  .client-text .role {
    font-size: 10px;
  }
  .testimonial-controls {
    margin-top: 30px;
    gap: 18px;
  }
  .testimonial-navigation button {
    width: 48px;
    height: 48px;
    font-size: 17px;
    border-width: 2px;
  }
  .dot {
    width: 10px;
    height: 10px;
  }
  .move-banner {
    background-attachment: scroll;
    padding: 0 5%;
  }
  .move-banner-container {
    flex-direction: column;
    gap: 30px;
  }
  .move-banner-content {
    text-align: center;
    padding: 30px 20px;
    max-width: 100%;
  }
  .move-banner-content::before {
    font-size: 50px;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
  }
  .move-banner-content h2 {
    font-size: 32px;
    margin-bottom: 18px;
  }
  .move-banner-sub {
    font-size: 16px;
    margin-bottom: 16px;
  }
  .move-banner-sub strong {
    font-size: 24px;
  }
  .move-banner-note {
    font-size: 13px;
    margin-bottom: 25px;
    justify-content: center;
  }
  .move-banner-image {
    display: none;
  }
  .learn-btn {
    padding: 16px 35px;
    font-size: 15px;
    min-height: 48px;
  }
  .blog-meta {
    gap: 10px;
  }
  .blog-date,
  .blog-author {
    font-size: 12px;
  }
  .aboutpage-section {
    padding: 60px 5%;
  }
  .aboutpage-inner {
    gap: 40px;
  }
  .aboutpage-left img {
    border-radius: 15px;
  }
  .aboutpage-badge {
    bottom: 15px;
    left: 15px;
    padding: 12px 20px;
    font-size: 13px;
  }
  .aboutpage-badge i {
    font-size: 18px;
  }
  .aboutpage-right h5 {
    font-size: 12px;
  }
  .aboutpage-right h2 {
    font-size: 28px;
  }
  .aboutpage-right p {
    font-size: 15px;
  }
  .aboutpage-points {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .aboutpage-point span {
    font-size: 14px;
  }
  .contact-section {
    padding: 60px 15px;
  }
  .contact-header {
    margin-bottom: 40px;
  }
  .contact-header h2 {
    font-size: 28px;
    margin-bottom: 12px;
  }
  .contact-header p {
    font-size: 14px;
  }
  .contact-main-container {
    flex-direction: column;
    gap: 30px;
  }
  .contact-info-box {
    padding: 20px;
    margin-bottom: 15px;
  }
  .info-item {
    padding: 15px;
  }
  .info-item .icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
  .info-item h4 {
    font-size: 16px;
  }
  .info-item p,
  .info-item a {
    font-size: 14px;
  }
  .contact-form {
    padding: 25px 20px;
  }
  .contact-form .form-group {
    flex-direction: column;
    margin-bottom: 15px;
  }
  .contact-form input,
  .contact-form textarea {
    padding: 14px 16px;
    font-size: 14px;
  }
  .contact-form button {
    width: 100%;
    padding: 16px 30px;
    font-size: 15px;
  }
  footer {
    padding: 60px 0 0 0;
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 0 20px 40px;
  }
  .footer-logo {
    grid-column: span 1;
  }
  .footer-logo img {
    width: 140px;
  }
  .footer-logo p {
    max-width: 100%;
  }
  .contact-item {
    padding: 12px 14px;
  }
  .contact-item .contact-icon {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }
  .contact-item a {
    font-size: 13px;
  }
  .footer-column h3 {
    font-size: 18px;
  }
  .footer-bottom {
    padding: 24px 20px;
    font-size: 13px;
  }
  .contact-form {
    padding: 20px;
  }
}
.service-areas-section {
  padding: 70px 0;
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 50%, #fafafa 100%);
  position: relative;
  overflow: hidden;
}
.service-areas-section::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(5, 32, 54, 0.04), transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
.service-areas-section::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(239, 80, 39, 0.03), transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
.service-areas-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
  position: relative;
  z-index: 1;
}
.section-header-center {
  text-align: center;
  margin-bottom: 70px;
}
.section-description {
  font-size: 17px;
  color: var(--text-color);
  font-family: var(--text-font);
  margin-top: 15px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.text-highlight {
  color: var(--primary);
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-bottom: 50px;
}
.area-card {
  background: var(--light);
  padding: 45px 35px;
  border-radius: 25px;
  border: 2px solid rgba(239, 80, 39, 0.08);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-align: center;
  display: flex;
  flex-direction: column;
  min-height: 300px;
  position: relative;
  overflow: hidden;
}
.area-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #ff6a00);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.area-card:hover::before {
  transform: scaleX(1);
}
.area-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(239, 80, 39, 0.04), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.area-card:hover::after {
  opacity: 1;
}
.area-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 50px rgba(239, 80, 39, 0.12);
  border-color: rgba(239, 80, 39, 0.2);
}
.area-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 30px;
  background: linear-gradient(135deg, var(--primary), #ff6a00);
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: var(--light);
  box-shadow: 0 10px 30px rgba(239, 80, 39, 0.35);
  transition: all 0.4s ease;
  position: relative;
}
.area-icon::before {
  content: "";
  position: absolute;
  width: 110%;
  height: 110%;
  border-radius: 25px;
  background: linear-gradient(135deg, var(--primary), #ff6a00);
  opacity: 0.3;
  filter: blur(10px);
  z-index: -1;
  transition: all 0.4s ease;
}
.area-card:hover .area-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 15px 45px rgba(239, 80, 39, 0.45);
}
.area-card:hover .area-icon::before {
  opacity: 0.5;
  filter: blur(15px);
}
.area-card h3 {
  font-size: 24px;
  font-weight: 800;
  color: #0a1628;
  font-family: var(--font-main);
  margin-bottom: 16px;
  letter-spacing: -0.3px;
  line-height: 1.3;
}
.area-card p {
  font-size: 15px;
  color: #5a5a5a;
  font-family: var(--text-font);
  line-height: 1.75;
  margin-bottom: 25px;
  flex: 1;
}
.area-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}
.area-link:hover {
  color: #d64e1f;
  gap: 14px;
  transform: translateX(3px);
}
.area-link i {
  font-size: 10px !important;
  transition: transform 0.3s ease;
}
.area-link:hover i {
  transform: translateX(3px);
}
.area-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 12px;
  padding: 12px 28px;
  background: #ef5027;
  background: linear-gradient(135deg, #ef5027, #ff6a00);
  color: #fff !important;
  border-radius: 50px;
  text-decoration: none !important;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-main);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(239, 80, 39, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 2;
  border: none;
}
.area-cta::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: left 0.5s ease;
}
.area-cta:hover::before {
  left: 100%;
}
.area-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(239, 80, 39, 0.35);
}
.coverage-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 30px;
  background: rgba(239, 80, 39, 0.05);
  border-radius: 12px;
  border-left: 4px solid var(--primary);
}
.coverage-note i {
  color: var(--primary);
  font-size: 24px;
}
.coverage-note p {
  font-size: 16px;
  color: var(--dark-blue);
  font-family: var(--text-font);
  margin: 0;
}
.coverage-note a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}
.coverage-note a:hover {
  text-decoration: underline;
}
.pricing-section {
  padding: 70px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  position: relative;
}
.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}
.pricing-card {
  background: var(--light);
  padding: 40px 30px;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}
.pricing-featured {
  border: 2px solid var(--primary);
  transform: scale(1.05);
  box-shadow: 0 15px 45px rgba(239, 80, 39, 0.15);
}
.pricing-featured:hover {
  transform: scale(1.05) translateY(-10px);
}
.featured-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), #ff6a00);
  color: var(--light);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--font-main);
  box-shadow: 0 4px 15px rgba(239, 80, 39, 0.4);
}
.pricing-header {
  text-align: center;
  margin-bottom: 25px;
}
.pricing-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(239, 80, 39, 0.1), rgba(8, 68, 199, 0.1));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--primary);
}
.pricing-header h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark-blue);
  font-family: var(--font-main);
  margin-bottom: 10px;
}
.pricing-subtitle {
  font-size: 14px;
  color: var(--text-color);
  font-family: var(--text-font);
}
.pricing-badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(239, 80, 39, 0.1);
  color: var(--primary);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-main);
}
.pricing-price {
  text-align: center;
  padding: 25px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}
.pricing-price .currency {
  font-size: 18px;
  color: var(--text-color);
  font-weight: 600;
  margin-right: 5px;
}
.pricing-price .amount {
  font-size: 48px;
  font-weight: 900;
  color: var(--dark-blue);
  font-family: var(--font-main);
}
.pricing-price .period {
  font-size: 16px;
  color: var(--text-color);
  margin-left: 5px;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 15px;
  color: var(--text-color);
  font-family: var(--text-font);
  line-height: 1.6;
}
.pricing-features li i {
  color: var(--primary);
  font-size: 16px;
  flex-shrink: 0;
}
.pricing-btn {
  display: block;
  width: 100%;
  padding: 15px 30px;
  background: var(--primary);
  color: var(--light);
  border-radius: 50px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-main);
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(239, 80, 39, 0.3);
}
.pricing-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(239, 80, 39, 0.4);
}
.pricing-btn-featured {
  background: linear-gradient(135deg, var(--primary), #ff6a00);
}
.pricing-cta {
  display: block;
  width: 100%;
  padding: 15px 30px;
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 50px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-main);
  text-align: center;
  transition: all 0.3s ease;
}
.pricing-cta:hover {
  background: var(--primary);
  color: var(--light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(239, 80, 39, 0.4);
}
.pricing-featured .pricing-cta {
  background: linear-gradient(135deg, var(--primary), #ff6a00);
  color: var(--light);
  border: none;
}
.pricing-featured .pricing-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(239, 80, 39, 0.5);
}
.pricing-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 30px;
  background: rgba(8, 68, 199, 0.05);
  border-radius: 12px;
  border-left: 4px solid var(--dark-blue);
}
.pricing-note i {
  color: var(--dark-blue);
  font-size: 20px;
}
.pricing-note p {
  font-size: 15px;
  color: var(--dark-blue);
  font-family: var(--text-font);
  margin: 0;
}
.faq-section {
  padding: 70px 0;
  background: linear-gradient(180deg, #f9fbff 0%, #ffffff 100%);
}
.faq-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}
.faq-wrapper {
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  align-items: start;
}
.faq-item {
  background: var(--light);
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 16px;
}
.faq-item:last-child {
  margin-bottom: 0;
}
.faq-item:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 30px;
  cursor: pointer;
  gap: 20px;
}
.faq-question h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark-blue);
  font-family: var(--font-main);
  margin: 0;
  flex: 1;
}
.faq-toggle {
  width: 35px;
  height: 35px;
  background: rgba(239, 80, 39, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.faq-toggle i {
  color: var(--primary);
  font-size: 16px;
  transition: transform 0.3s ease;
}
.faq-item.active .faq-toggle {
  background: var(--primary);
}
.faq-item.active .faq-toggle i {
  color: var(--light);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 30px;
}
.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 30px 25px 30px;
}
.faq-answer p {
  font-size: 15px;
  color: var(--text-color);
  font-family: var(--text-font);
  line-height: 1.8;
  margin: 0;
}
.faq-cta {
  text-align: center;
  padding: 50px 30px;
  background: linear-gradient(135deg, rgba(239, 80, 39, 0.03), rgba(8, 68, 199, 0.03));
  border-radius: 20px;
  border: 1px solid rgba(239, 80, 39, 0.1);
  margin-top: 30px;
}
.faq-cta-section {
  text-align: center;
  padding: 40px 30px;
  margin-top: 50px;
  background: linear-gradient(135deg, rgba(239, 80, 39, 0.05), rgba(8, 68, 199, 0.05));
  border-radius: 20px;
  border: 2px dashed rgba(239, 80, 39, 0.2);
}
.faq-cta-section h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--dark-blue);
  font-family: var(--font-main);
  margin-bottom: 12px;
}
.faq-cta-section p {
  font-size: 16px;
  color: var(--text-color);
  font-family: var(--text-font);
  margin-bottom: 25px;
}
.faq-cta p {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark-blue);
  font-family: var(--font-main);
  margin-bottom: 25px;
  letter-spacing: -0.3px;
}
.faq-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 45px;
  background: linear-gradient(135deg, var(--primary), #ff6a00);
  color: var(--light);
  border-radius: 50px;
  text-decoration: none;
  font-size: 17px;
  font-weight: 700;
  font-family: var(--font-main);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(239, 80, 39, 0.25);
  position: relative;
  overflow: hidden;
}
.faq-cta-btn::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: left 0.6s ease;
}
.faq-cta-btn:hover::before {
  left: 100%;
}
.faq-cta-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 35px rgba(239, 80, 39, 0.35);
}
.faq-cta-btn i {
  font-size: 18px;
}
@media (max-width: 900px) {
  .service-areas-section {
    padding: 70px 0;
  }
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .area-card {
    padding: 30px 25px;
  }
  .area-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }
  .area-card h3 {
    font-size: 20px;
    margin: 18px 0 10px;
  }
  .area-card p {
    font-size: 14px;
  }
  .coverage-note {
    font-size: 14px;
    padding: 12px 20px;
  }
  .pricing-section {
    padding: 70px 5%;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 500px;
    margin: 0 auto;
  }
  .pricing-featured {
    transform: scale(1);
    order: -1;
  }
  .pricing-card {
    padding: 35px 30px;
  }
  .faq-section {
    padding: 70px 5%;
  }
  .faq-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .faq-question h3 {
    font-size: 16px;
  }
  .faq-toggle {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
  .faq-answer {
    font-size: 14px;
  }
  .faq-cta-section {
    padding: 35px 30px;
  }
  .faq-cta-section h3 {
    font-size: 22px;
  }
}
@media (max-width: 600px) {
  .service-areas-section {
    padding: 60px 0;
  }
  .areas-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .area-card {
    padding: 25px 20px;
  }
  .area-icon {
    width: 55px;
    height: 55px;
    font-size: 26px;
  }
  .area-card h3 {
    font-size: 18px;
    margin: 15px 0 8px;
  }
  .area-card p {
    font-size: 13px;
    line-height: 1.5;
  }
  .coverage-note {
    font-size: 13px;
    padding: 10px 15px;
    margin-top: 30px;
  }
  .coverage-note i {
    font-size: 16px;
  }
  .pricing-section {
    padding: 60px 5%;
  }
  .pricing-card {
    padding: 30px 25px;
  }
  .pricing-header h3 {
    font-size: 22px;
  }
  .pricing-price {
    margin: 20px 0;
  }
  .price-amount {
    font-size: 42px;
  }
  .price-currency {
    font-size: 20px;
  }
  .pricing-features li {
    font-size: 14px;
    padding: 10px 0;
  }
  .pricing-cta {
    padding: 13px 28px;
    font-size: 14px;
  }
  .featured-badge {
    padding: 6px 16px;
    font-size: 11px;
  }
  .faq-section {
    padding: 60px 5%;
  }
  .faq-wrapper {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .faq-item {
    margin-bottom: 0;
  }
  .faq-question {
    padding: 18px 20px;
  }
  .faq-question h3 {
    font-size: 15px;
    line-height: 1.5;
    padding-right: 35px;
  }
  .faq-toggle {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
  .faq-item.active .faq-answer {
    padding: 0 20px 20px 20px;
  }
  .faq-answer {
    font-size: 13px;
    line-height: 1.6;
  }
  .faq-cta-section {
    padding: 30px 25px;
    margin-top: 35px;
  }
  .faq-cta-section h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .faq-cta-section p {
    font-size: 13px;
    margin-bottom: 18px;
  }
  .faq-cta-btn {
    padding: 13px 28px;
    font-size: 14px;
  }
  .faq-cta-btn i {
    font-size: 16px;
  }
}
.aboutpage-section + .whychoose-section {
  padding: 70px 5%;
  background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
}
.aboutpage-section + .whychoose-section .whychoose-grid {
  grid-template-columns: 1fr;
  max-width: 1000px;
  margin: 0 auto;
  gap: 25px;
}
.aboutpage-section + .whychoose-section .whychoose-card {
  display: flex;
  align-items: center;
  gap: 35px;
  text-align: left;
  padding: 40px 45px;
  background: var(--light);
  border-radius: 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}
.aboutpage-section + .whychoose-section .whychoose-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary), #ff6a00);
  transform: scaleY(0);
  transition: transform 0.4s ease;
}
.aboutpage-section + .whychoose-section .whychoose-card:hover::before {
  transform: scaleY(1);
}
.aboutpage-section + .whychoose-section .whychoose-card::after {
  content: "";
  position: absolute;
  right: -30%;
  top: 50%;
  transform: translateY(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(239, 80, 39, 0.04), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.aboutpage-section + .whychoose-section .whychoose-card:hover::after {
  opacity: 1;
}
.aboutpage-section + .whychoose-section .whychoose-card:hover {
  transform: translateX(10px);
  box-shadow: 0 15px 45px rgba(239, 80, 39, 0.12);
  border-color: rgba(239, 80, 39, 0.15);
}
.aboutpage-section + .whychoose-section .whychoose-icon {
  margin: 0;
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: var(--light);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  position: relative;
}
.aboutpage-section + .whychoose-section .whychoose-icon::before {
  content: "";
  position: absolute;
  width: 110%;
  height: 110%;
  border-radius: 22px;
  opacity: 0.3;
  filter: blur(12px);
  z-index: -1;
  transition: all 0.4s ease;
}
.aboutpage-section + .whychoose-section .whychoose-card:nth-child(1) .whychoose-icon {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}
.aboutpage-section + .whychoose-section .whychoose-card:nth-child(1) .whychoose-icon::before {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}
.aboutpage-section + .whychoose-section .whychoose-card:nth-child(2) .whychoose-icon {
  background: linear-gradient(135deg, var(--primary), #ff6a00);
}
.aboutpage-section + .whychoose-section .whychoose-card:nth-child(2) .whychoose-icon::before {
  background: linear-gradient(135deg, var(--primary), #ff6a00);
}
.aboutpage-section + .whychoose-section .whychoose-card:nth-child(3) .whychoose-icon {
  background: linear-gradient(135deg, #10b981, #059669);
}
.aboutpage-section + .whychoose-section .whychoose-card:nth-child(3) .whychoose-icon::before {
  background: linear-gradient(135deg, #10b981, #059669);
}
.aboutpage-section + .whychoose-section .whychoose-card:nth-child(4) .whychoose-icon {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}
.aboutpage-section + .whychoose-section .whychoose-card:nth-child(4) .whychoose-icon::before {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}
.aboutpage-section + .whychoose-section .whychoose-card:nth-child(5) .whychoose-icon {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}
.aboutpage-section + .whychoose-section .whychoose-card:nth-child(5) .whychoose-icon::before {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}
.aboutpage-section + .whychoose-section .whychoose-card:nth-child(6) .whychoose-icon {
  background: linear-gradient(135deg, #ec4899, #db2777);
}
.aboutpage-section + .whychoose-section .whychoose-card:nth-child(6) .whychoose-icon::before {
  background: linear-gradient(135deg, #ec4899, #db2777);
}
.aboutpage-section + .whychoose-section .whychoose-card:hover .whychoose-icon {
  transform: scale(1.08) rotate(-5deg);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}
.aboutpage-section + .whychoose-section .whychoose-card:hover .whychoose-icon::before {
  opacity: 0.5;
  filter: blur(18px);
}
.aboutpage-section + .whychoose-section .whychoose-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 800;
  color: #0a1628;
  letter-spacing: -0.3px;
  line-height: 1.3;
}
.aboutpage-section + .whychoose-section .whychoose-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: #5a5a5a;
}
.values-section {
  padding: 70px 0;
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  position: relative;
  overflow: hidden;
}
.values-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(239, 80, 39, 0.05), transparent 70%);
  border-radius: 50%;
}
.values-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}
.values-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}
.values-section .section-header p {
  font-size: 17px;
  color: #666;
  margin-top: 15px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}
.value-card {
  background: var(--light);
  padding: 50px 35px;
  border-radius: 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #ff6a00);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.value-card:hover::before {
  transform: scaleX(1);
}
.value-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 50px rgba(239, 80, 39, 0.12);
  border-color: rgba(239, 80, 39, 0.15);
}
.value-icon {
  width: 90px;
  height: 90px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  box-shadow: 0 12px 35px rgba(239, 80, 39, 0.25);
  transition: all 0.4s ease;
  position: relative;
}
.value-icon::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--primary);
  opacity: 0;
  animation: ripple 2s ease-out infinite;
}
.value-card:hover .value-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 45px rgba(239, 80, 39, 0.35);
}
.value-icon i {
  font-size: 40px;
  color: var(--light);
}
.value-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: #0a1628;
  margin-bottom: 18px;
  line-height: 1.3;
}
.value-card p {
  font-size: 15px;
  line-height: 1.75;
  color: #5a5a5a;
}
@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
.team-section {
  padding: 70px 0;
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 50%, #fafafa 100%);
  position: relative;
  overflow: hidden;
}
.team-section::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(239, 80, 39, 0.04), transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
.team-section::after {
  content: "";
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(5, 32, 54, 0.03), transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
.team-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
  position: relative;
  z-index: 1;
}
.team-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}
.team-section .section-header p {
  font-size: 17px;
  color: #666;
  margin-top: 15px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}
.team-card {
  background: var(--light);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid transparent;
  position: relative;
}
.team-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), #ff6a00);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  z-index: 10;
}
.team-card:hover::before {
  transform: scaleX(1);
}
.team-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 50px rgba(239, 80, 39, 0.15);
  border-color: rgba(239, 80, 39, 0.1);
}
.team-image {
  position: relative;
  overflow: hidden;
  height: 320px;
  background: linear-gradient(135deg, rgba(239, 80, 39, 0.05), rgba(5, 32, 54, 0.05));
}
.team-image::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.15), transparent);
  z-index: 1;
  pointer-events: none;
}
.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  filter: grayscale(0.1);
}
.team-card:hover .team-image img {
  transform: scale(1.12);
  filter: grayscale(0);
}
.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(239, 80, 39, 0.95), rgba(5, 32, 54, 0.95));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 2;
}
.team-card:hover .team-overlay {
  opacity: 1;
}
.team-social {
  display: flex;
  gap: 15px;
  transform: translateY(20px);
  transition: transform 0.4s ease 0.1s;
}
.team-card:hover .team-social {
  transform: translateY(0);
}
.team-social a {
  width: 50px;
  height: 50px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all 0.3s ease;
  text-decoration: none !important;
  font-size: 18px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.team-social a i {
  text-decoration: none !important;
}
.team-social a:hover {
  background: var(--primary);
  color: var(--light);
  transform: translateY(-8px) rotate(5deg);
  text-decoration: none !important;
  box-shadow: 0 10px 25px rgba(239, 80, 39, 0.4);
}
.team-info {
  padding: 30px 25px 28px;
  text-align: center;
  background: var(--light);
}
.team-info h3 {
  font-size: 22px;
  font-weight: 800;
  color: #0a1628;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.team-info p {
  font-size: 15px;
  color: var(--primary);
  margin-bottom: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.team-experience {
  display: inline-block;
  background: linear-gradient(135deg, rgba(239, 80, 39, 0.12), rgba(239, 80, 39, 0.08));
  color: var(--primary);
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid rgba(239, 80, 39, 0.15);
  letter-spacing: 0.5px;
}
.awards-section {
  padding: 70px 0;
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  position: relative;
  overflow: hidden;
}
.awards-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(239, 80, 39, 0.03), transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
.awards-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
  position: relative;
  z-index: 1;
}
.awards-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}
.awards-section .section-header p {
  font-size: 17px;
  color: #666;
  margin-top: 15px;
}
.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}
.award-card {
  background: var(--light);
  padding: 50px 40px;
  border-radius: 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 2px solid rgba(239, 80, 39, 0.1);
  position: relative;
  overflow: hidden;
}
.award-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  transition: transform 0.4s ease;
}
.award-card:hover::before {
  transform: translateX(-50%) scaleX(1);
}
.award-card::after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(239, 80, 39, 0.03), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.award-card:hover::after {
  opacity: 1;
}
.award-card:hover {
  transform: translateY(-15px);
  border-color: var(--primary);
  box-shadow: 0 20px 50px rgba(239, 80, 39, 0.15);
}
.award-card:nth-child(1) {
  border-color: rgba(239, 80, 39, 0.2);
}
.award-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(239, 80, 39, 0.08), rgba(239, 80, 39, 0.12));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  border: 3px solid var(--primary);
  transition: all 0.4s ease;
  position: relative;
}
.award-icon::before {
  content: "";
  position: absolute;
  width: 110%;
  height: 110%;
  border-radius: 50%;
  border: 2px solid var(--primary);
  opacity: 0;
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}
.award-card:hover .award-icon {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 15px 40px rgba(239, 80, 39, 0.3);
}
.award-icon i {
  font-size: 44px;
  color: var(--primary);
  transition: transform 0.3s ease;
}
.award-card:hover .award-icon i {
  transform: scale(1.1);
}
.award-card h3 {
  font-size: 24px;
  font-weight: 800;
  color: #0a1628;
  margin-bottom: 18px;
  letter-spacing: -0.3px;
  line-height: 1.3;
}
.award-card p {
  font-size: 15px;
  line-height: 1.75;
  color: #5a5a5a;
}
.final-cta-section {
  padding: 100px 5%;
  background: linear-gradient(135deg, rgba(5, 32, 54, 0.95), rgba(8, 68, 199, 0.95)),
              url('images/moving-a-young-couple.jpg') center/cover no-repeat;
  position: relative;
  overflow: hidden;
}
.final-cta-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.final-cta-content {
  flex: 1;
  color: var(--light);
}
.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(239, 80, 39, 0.2);
  border: 1px solid var(--primary);
  padding: 8px 20px;
  border-radius: 30px;
  color: var(--light);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}
.final-cta-content h2 {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.2;
}
.final-cta-content > p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}
.cta-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 35px;
}
.cta-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
}
.cta-feature i {
  color: var(--primary);
  font-size: 20px;
}
.cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.cta-primary-btn,
.cta-secondary-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 35px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.cta-primary-btn {
  background: var(--primary);
  color: var(--light);
  box-shadow: 0 10px 30px rgba(239, 80, 39, 0.4);
}
.cta-primary-btn:hover {
  background: #d64e1f;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(239, 80, 39, 0.5);
}
.cta-secondary-btn {
  background: transparent;
  color: var(--light);
  border: 2px solid var(--light);
}
.cta-secondary-btn:hover {
  background: var(--light);
  color: var(--primary);
  transform: translateY(-3px);
}
.final-cta-image {
  flex: 0 0 400px;
}
.final-cta-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
@media (max-width: 900px) {
  .aboutpage-section + .whychoose-section .whychoose-card {
    padding: 35px 30px;
    gap: 25px;
  }
  .aboutpage-section + .whychoose-section .whychoose-icon {
    width: 80px;
    height: 80px;
    font-size: 36px;
  }
  .aboutpage-section + .whychoose-section .whychoose-card h3 {
    font-size: 20px;
  }
  .aboutpage-section + .whychoose-section .whychoose-card p {
    font-size: 14px;
  }
  .values-section {
    padding: 70px 5%;
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .value-card {
    padding: 40px 30px;
  }
  .value-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
  }
  .value-icon i {
    font-size: 36px;
  }
  .value-card h3 {
    font-size: 20px;
  }
  .value-card p {
    font-size: 14px;
  }
  .team-section {
    padding: 70px 5%;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .team-image {
    height: 280px;
  }
  .team-info h3 {
    font-size: 20px;
  }
  .team-info p {
    font-size: 14px;
  }
  .awards-section {
    padding: 70px 5%;
  }
  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .award-card {
    padding: 35px 30px;
  }
  .award-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 22px;
  }
  .award-icon i {
    font-size: 36px;
  }
  .award-card h3 {
    font-size: 20px;
  }
  .award-card p {
    font-size: 14px;
  }
  .process-section {
    padding: 70px 5%;
  }
  .process-heading h2 {
    font-size: 32px;
  }
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .process-steps::before {
    display: none;
  }
  .process-card h3 {
    font-size: 20px;
  }
  .process-card p {
    font-size: 15px;
  }
  .testimonials-modern {
    padding: 70px 5%;
  }
  .testimonial-card {
    padding: 35px 30px;
  }
  .client-text h3 {
    font-size: 22px;
  }
  .client-text p {
    font-size: 16px;
  }
  .service-areas-section {
    padding: 70px 5%;
  }
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .final-cta-container {
    flex-direction: column;
    gap: 40px;
  }
  .final-cta-content h2 {
    font-size: 38px;
  }
  .final-cta-image {
    flex: 0 0 auto;
  }
  .final-cta-image img {
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .aboutpage-section + .whychoose-section .whychoose-card {
    flex-direction: column;
    text-align: center;
    padding: 30px 25px;
  }
  .aboutpage-section + .whychoose-section .whychoose-card:hover {
    transform: translateX(0) translateY(-8px);
  }
  .aboutpage-section + .whychoose-section .whychoose-icon {
    margin: 0 auto 20px;
    width: 75px;
    height: 75px;
    font-size: 32px;
  }
  .aboutpage-section + .whychoose-section .whychoose-card h3 {
    font-size: 20px;
  }
  .aboutpage-section + .whychoose-section .whychoose-card p {
    font-size: 14px;
  }
  .values-section,
  .team-section,
  .awards-section,
  .final-cta-section {
    padding: 60px 5%;
  }
  .section-header h2 {
    font-size: 32px !important;
    line-height: 1.3 !important;
  }
  .section-header p {
    font-size: 15px !important;
  }
  .values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .value-card {
    padding: 30px 25px;
  }
  .value-icon {
    width: 75px;
    height: 75px;
    margin-bottom: 25px;
  }
  .value-icon i {
    font-size: 32px;
  }
  .value-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .value-card p {
    font-size: 14px;
    line-height: 1.65;
  }
  .team-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .team-image {
    height: 250px;
  }
  .team-info {
    padding: 25px 20px;
  }
  .team-info h3 {
    font-size: 20px;
  }
  .team-info p {
    font-size: 14px;
  }
  .team-experience {
    font-size: 12px;
    padding: 7px 15px;
  }
  .awards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .award-card {
    padding: 30px 25px;
  }
  .award-icon {
    width: 75px;
    height: 75px;
    margin-bottom: 20px;
  }
  .award-icon i {
    font-size: 32px;
  }
  .award-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }
  .award-card p {
    font-size: 14px;
  }
  .process-section {
    padding: 60px 5%;
  }
  .process-heading h2 {
    font-size: 28px;
  }
  .process-heading p {
    font-size: 15px;
  }
  .process-steps {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .process-steps::before {
    display: none;
  }
  .process-number {
    font-size: 20px;
    width: 50px;
    height: 50px;
  }
  .process-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }
  .process-card p {
    font-size: 14px;
    line-height: 1.6;
  }
  .process-icon i {
    font-size: 28px;
  }
  .testimonials-modern {
    padding: 60px 5%;
  }
  .testimonial-card {
    flex-direction: column;
    padding: 30px 25px;
  }
  .client-img-box {
    width: 100%;
    max-width: 200px;
    margin: 0 auto 25px;
  }
  .client-text h3 {
    font-size: 20px;
  }
  .client-text p {
    font-size: 15px;
    line-height: 1.7;
  }
  .final-cta-content h2 {
    font-size: 32px;
  }
  .final-cta-content > p {
    font-size: 16px;
  }
  .cta-buttons {
    flex-direction: column;
  }
  .cta-primary-btn,
  .cta-secondary-btn {
    width: 100%;
    justify-content: center;
  }
}
.innerpage-hero {
  position: relative !important;
  min-height: auto !important;
  height: auto !important;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  background: linear-gradient(135deg, #0a1628 0%, #1e3a5f 50%, #0a1628 100%) !important;
  color: var(--light);
  padding: 80px 0 130px !important;
  overflow: hidden;
}
.innerpage-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(239, 80, 39, 0.1), transparent 60%) !important;
  z-index: 1;
  animation: pulse 8s ease-in-out infinite;
}
.innerpage-hero .hero-bg-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  overflow: hidden;
}
.innerpage-hero .shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.05;
  animation: float 20s ease-in-out infinite;
}
.innerpage-hero .shape-1 {
  width: 400px;
  height: 400px;
  background: var(--primary);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}
.innerpage-hero .shape-2 {
  width: 300px;
  height: 300px;
  background: var(--primary);
  bottom: -50px;
  left: -50px;
  animation-delay: 3s;
}
.innerpage-hero .shape-3 {
  width: 200px;
  height: 200px;
  background: var(--primary);
  top: 50%;
  left: 50%;
  animation-delay: 6s;
}
.innerpage-hero-content {
  position: relative !important;
  z-index: 2 !important;
  max-width: 1400px !important;
  width: 100%;
  margin: 0 auto;
  padding: 0 5%;
  text-align: left !important;
  display: flex;
  gap: 60px;
  align-items: start;
}
.innerpage-hero-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-right: 20px;
}
.innerpage-hero-left p {
  font-size: 17px !important;
  color: rgba(255, 255, 255, 0.85) !important;
  line-height: 1.8 !important;
  font-weight: 400;
  margin: 0;
  animation: fadeInUp 1.3s ease;
  max-width: 600px;
}
.innerpage-hero-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  background: transparent;
  border-radius: 0;
  border: none;
  backdrop-filter: none;
  position: relative;
  overflow: visible;
  padding-top: 68px;
}
.innerpage-hero-bottom {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 30px;
  position: absolute;
  bottom: -80px;
  left: 0;
}
.innerpage-hero-content .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(239, 80, 39, 0.2), rgba(239, 80, 39, 0.1));
  border: 1px solid rgba(239, 80, 39, 0.4);
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.8px;
  color: var(--primary);
  animation: fadeInDown 0.8s ease;
  box-shadow: 0 8px 25px rgba(239, 80, 39, 0.15);
  position: relative;
  overflow: hidden;
  width: fit-content;
  align-self: flex-start;
}
.innerpage-hero-content .hero-badge::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(45deg);
  animation: shimmer 3s infinite;
}
@keyframes shimmer {
  0% { transform: translateX(-100%) rotate(45deg); }
  100% { transform: translateX(100%) rotate(45deg); }
}
.innerpage-hero-content .hero-badge i {
  font-size: 18px;
  filter: drop-shadow(0 2px 4px rgba(239, 80, 39, 0.3));
}
.innerpage-hero-content .hero-subtitle {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3.5px;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  animation: fadeInUp 1s ease;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.5));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  padding-left: 25px;
}
.innerpage-hero-content .hero-subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), transparent);
}
.innerpage-hero-content h1 {
  font-size: 56px !important;
  font-weight: 900 !important;
  margin-bottom: 25px !important;
  line-height: 1.2 !important;
  color: var(--light) !important;
  animation: fadeInUp 1s ease;
  letter-spacing: -1px;
  text-transform: none !important;
}
.innerpage-hero-content h1 .hero-title-highlight {
  background: linear-gradient(135deg, var(--primary), #ff6a00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.innerpage-hero-content p {
  font-size: 18px !important;
  color: rgba(255, 255, 255, 0.85) !important;
  margin-bottom: 35px !important;
  line-height: 1.8 !important;
  font-weight: 400;
  max-width: 750px;
  margin-left: 0;
  margin-right: 0;
  animation: fadeInUp 1.2s ease;
}
.innerpage-hero-content .hero-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: fadeInUp 1.4s ease;
  position: relative;
  z-index: 1;
}
.innerpage-hero-content .hero-feature {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--light);
  font-size: 16px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.05);
  padding: 28px 32px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.innerpage-hero-content .hero-feature::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary), #ff6a00);
  transform: scaleY(0);
  transition: transform 0.4s ease;
}
.innerpage-hero-content .hero-feature::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -50%;
  transform: translateY(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(239, 80, 39, 0.08), transparent 60%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.innerpage-hero-content .hero-feature:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(239, 80, 39, 0.4);
  transform: translateX(-8px);
  box-shadow: 0 15px 40px rgba(239, 80, 39, 0.15);
}
.innerpage-hero-content .hero-feature:hover::before {
  transform: scaleY(1);
}
.innerpage-hero-content .hero-feature:hover::after {
  opacity: 1;
}
.innerpage-hero-content .hero-feature i {
  color: var(--light);
  font-size: 24px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border-radius: 14px;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(239, 80, 39, 0.3);
  transition: all 0.3s ease;
}
.innerpage-hero-content .hero-feature:hover i {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 12px 35px rgba(239, 80, 39, 0.4);
}
.innerpage-breadcrumb {
  animation: fadeInUp 1.6s ease;
}
@media (max-width: 900px) {
  .innerpage-hero {
    padding: 70px 0 120px !important;
  }
  .innerpage-hero-content {
    flex-direction: column;
    gap: 40px;
  }
  .innerpage-hero-right {
    padding-top: 0;
  }
  .innerpage-hero-left {
    padding-right: 0;
  }
  .innerpage-hero-content h1 {
    font-size: 38px !important;
    line-height: 1.2 !important;
  }
  .innerpage-hero-content .hero-features {
    gap: 16px;
  }
  .innerpage-hero-content .hero-feature {
    padding: 22px 28px;
  }
  .innerpage-hero-bottom {
    bottom: -60px;
  }
  .innerpage-hero-content .hero-badge {
    font-size: 12px;
    padding: 12px 24px;
  }
  .innerpage-hero-content .hero-subtitle {
    font-size: 12px;
  }
}
@media (max-width: 600px) {
  .innerpage-hero {
    padding: 60px 0 110px !important;
  }
  .innerpage-hero-content {
    flex-direction: column;
    gap: 30px;
  }
  .innerpage-hero-content h1 {
    font-size: 28px !important;
    line-height: 1.3 !important;
  }
  .innerpage-hero-content p {
    font-size: 15px !important;
    line-height: 1.7 !important;
  }
  .innerpage-hero-content .hero-features {
    gap: 14px;
  }
  .innerpage-hero-content .hero-feature {
    padding: 20px 24px;
    font-size: 15px;
  }
  .innerpage-hero-content .hero-feature i {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
  .innerpage-hero-bottom {
    bottom: -50px;
  }
  .innerpage-hero-content .hero-badge {
    font-size: 11px;
    padding: 10px 20px;
    letter-spacing: 1.2px;
  }
  .innerpage-hero-content .hero-subtitle {
    font-size: 11px;
    letter-spacing: 2.5px;
    padding-left: 20px;
  }
  .innerpage-hero-content .hero-subtitle::before {
    width: 12px;
  }
}
.hero-contact-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.hero-contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px 30px;
  background: white;
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(239, 80, 39, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.hero-contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary), #ff6a00);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-contact-card:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(239, 80, 39, 0.15);
  border-color: rgba(239, 80, 39, 0.3);
}
.hero-contact-card:hover::before {
  transform: scaleY(1);
  transform-origin: top;
}
.hero-contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(239, 80, 39, 0.1), rgba(8, 68, 199, 0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary);
  flex-shrink: 0;
  transition: all 0.4s ease;
}
.hero-contact-card:hover .hero-contact-icon {
  background: linear-gradient(135deg, var(--primary), #ff6a00);
  color: white;
  transform: rotate(5deg) scale(1.05);
}
.hero-contact-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.hero-contact-label {
  font-size: 13px;
  font-weight: 500;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hero-contact-value {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  transition: color 0.3s ease;
  text-decoration: none;
}
.hero-contact-value:hover {
  color: var(--primary);
}
.hero-contact-card a.hero-contact-value {
  cursor: pointer;
}
@media (max-width: 900px) {
  .hero-contact-cards {
    gap: 15px;
  }
  .hero-contact-card {
    padding: 20px 25px;
  }
  .hero-contact-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  .hero-contact-label {
    font-size: 12px;
  }
  .hero-contact-value {
    font-size: 16px;
  }
}
@media (max-width: 600px) {
  .hero-contact-cards {
    gap: 12px;
  }
  .hero-contact-card {
    padding: 18px 20px;
    gap: 15px;
  }
  .hero-contact-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
  .hero-contact-label {
    font-size: 11px;
  }
  .hero-contact-value {
    font-size: 15px;
  }
}
.why-choose-contact {
  padding: 70px 0;
  background: linear-gradient(135deg, rgba(239, 80, 39, 0.02), rgba(8, 68, 199, 0.02));
  position: relative;
  overflow: hidden;
}
.why-choose-contact::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(239, 80, 39, 0.05), transparent);
  border-radius: 50%;
  pointer-events: none;
}
.why-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}
.why-contact-card {
  position: relative;
  padding: 35px 28px;
  background: white;
  border-radius: 16px;
  border: 1.5px solid rgba(239, 80, 39, 0.12);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.why-contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #ff6a00);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.why-contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(239, 80, 39, 0.15);
  border-color: rgba(239, 80, 39, 0.25);
}
.why-contact-card:hover::before {
  transform: scaleX(1);
}
.why-contact-number {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  background: rgba(239, 80, 39, 0.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  transition: all 0.3s ease;
}
.why-contact-card:hover .why-contact-number {
  background: linear-gradient(135deg, var(--primary), #ff6a00);
  color: white;
  transform: scale(1.08);
}
.why-contact-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(239, 80, 39, 0.08), rgba(8, 68, 199, 0.08));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 18px;
  transition: all 0.3s ease;
}
.why-contact-card:hover .why-contact-icon {
  background: linear-gradient(135deg, var(--primary), #ff6a00);
  color: white;
  transform: scale(1.05);
}
.why-contact-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
  line-height: 1.3;
}
.why-contact-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}
.why-contact-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 50px 0 0;
  border-top: 1px solid rgba(239, 80, 39, 0.1);
  margin-top: 20px;
}
.why-stat {
  text-align: center;
  padding: 32px 20px;
  background: white;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.why-stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #ff6a00);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.why-stat:hover::before {
  transform: scaleX(1);
}
.why-stat:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(239, 80, 39, 0.12);
  border-color: rgba(239, 80, 39, 0.2);
}
.stat-number {
  font-size: 40px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), #ff6a00);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
  line-height: 1.1;
  letter-spacing: -1px;
}
.stat-label {
  font-size: 12px;
  font-weight: 700;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.4;
}
@media (max-width: 900px) {
  .why-contact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .why-contact-card {
    padding: 35px 25px;
  }
  .why-contact-icon {
    width: 60px;
    height: 60px;
    font-size: 26px;
  }
  .why-contact-card h3 {
    font-size: 20px;
  }
  .why-contact-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .stat-number {
    font-size: 32px;
  }
}
@media (max-width: 600px) {
  .why-contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .why-contact-card {
    padding: 30px 20px;
  }
  .why-contact-number {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  .why-contact-icon {
    width: 55px;
    height: 55px;
    font-size: 24px;
  }
  .why-contact-card h3 {
    font-size: 18px;
  }
  .why-contact-card p {
    font-size: 14px;
  }
  .why-contact-stats {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .why-stat {
    padding: 25px 15px;
  }
  .stat-number {
    font-size: 28px;
  }
  .stat-label {
    font-size: 12px;
  }
}
.map-section {
  padding: 70px 0;
  background: white;
}
.map-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.map-container {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  position: relative;
}
.map-container::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 1px solid rgba(239, 80, 39, 0.1);
  pointer-events: none;
}
.map-info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.map-info-card {
  display: flex;
  gap: 18px;
  padding: 26px;
  background: white;
  border-radius: 14px;
  border: 1.5px solid rgba(239, 80, 39, 0.12);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}
.map-info-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #ff6a00);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.map-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(239, 80, 39, 0.14);
  border-color: rgba(239, 80, 39, 0.25);
}
.map-info-card:hover::before {
  transform: scaleX(1);
}
.map-info-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(239, 80, 39, 0.08), rgba(8, 68, 199, 0.08));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary);
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.map-info-card:hover .map-info-icon {
  background: linear-gradient(135deg, var(--primary), #ff6a00);
  color: white;
  transform: scale(1.08);
}
.map-info-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.map-info-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.3;
}
.map-info-content p {
  font-size: 14px;
  line-height: 1.5;
  color: #666;
  margin: 0;
}
.map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  margin-top: 8px;
  transition: all 0.3s ease;
}
.map-link i {
  transition: transform 0.3s ease;
}
.map-link:hover {
  gap: 12px;
  color: #ff6a00;
}
.map-link:hover i {
  transform: translateX(4px);
}
@media (max-width: 900px) {
  .map-info-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .map-container iframe {
    height: 400px;
  }
  .map-info-card {
    padding: 25px;
  }
  .map-info-icon {
    width: 55px;
    height: 55px;
    font-size: 24px;
  }
  .map-info-content h4 {
    font-size: 17px;
  }
}
@media (max-width: 600px) {
  .map-container iframe {
    height: 350px;
  }
  .map-info-card {
    padding: 20px;
    gap: 15px;
  }
  .map-info-icon {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
  .map-info-content h4 {
    font-size: 16px;
  }
  .map-info-content p {
    font-size: 13px;
  }
  .map-link {
    font-size: 13px;
  }
}
@media (max-width: 900px) {
  .contact-section {
    padding: 60px 0;
  }
  .contact-header h2 {
    font-size: 32px;
  }
  .contact-header p {
    font-size: 15px;
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-info .info-item {
    padding: 24px 22px;
  }
  .contact-info .icon {
    height: 52px;
    width: 52px;
    font-size: 22px;
    margin-bottom: 16px;
  }
  .contact-info .info-item p,
  .contact-info .info-item a {
    font-size: 16px;
  }
  .contact-form {
    padding: 32px;
  }
  .contact-form .form-group {
    flex-direction: column;
    gap: 12px;
  }
}
@media (max-width: 600px) {
  .contact-section {
    padding: 50px 0;
  }
  .contact-header {
    margin-bottom: 40px;
  }
  .contact-header h2 {
    font-size: 28px;
    letter-spacing: -0.5px;
  }
  .contact-header p {
    font-size: 14px;
  }
  .contact-wrapper {
    gap: 30px;
  }
  .contact-info {
    gap: 16px;
  }
  .contact-info .info-item {
    padding: 22px 20px;
  }
  .contact-info .icon {
    height: 48px;
    width: 48px;
    font-size: 20px;
    margin-bottom: 14px;
  }
  .contact-info .info-item h4 {
    font-size: 10px;
  }
  .contact-info .info-item p,
  .contact-info .info-item a {
    font-size: 15px;
  }
  .contact-form {
    padding: 28px 24px;
  }
  .contact-form input,
  .contact-form textarea {
    padding: 14px 16px;
    font-size: 14px;
  }
  .contact-form button {
    padding: 15px 32px;
    font-size: 15px;
  }
}
.faq-contact-section {
  padding: 70px 0;
  background: linear-gradient(180deg, #f9fbff 0%, #ffffff 100%);
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 50px;
  align-items: start;
}
.faq-contact-section .faq-item {
  background: var(--light);
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-contact-section .faq-item:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}
.faq-contact-section .faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
  gap: 20px;
}
.faq-contact-section .faq-question span {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark-blue);
  line-height: 1.4;
  flex: 1;
  margin: 0;
}
.faq-contact-section .faq-toggle {
  width: 35px;
  height: 35px;
  background: rgba(239, 80, 39, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.faq-contact-section .faq-toggle i,
.faq-contact-section .faq-question i {
  color: var(--primary);
  font-size: 16px;
  transition: transform 0.3s ease;
}
.faq-contact-section .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 30px;
}
.faq-contact-section .faq-answer p {
  font-size: 15px;
  color: var(--text-color);
  line-height: 1.8;
  margin: 0;
}
.faq-contact-section .faq-item.active .faq-toggle {
  background: var(--primary);
}
.faq-contact-section .faq-item.active .faq-toggle i,
.faq-contact-section .faq-item.active .faq-question i {
  color: var(--light);
  transform: rotate(45deg);
}
.faq-contact-section .faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 30px 25px 30px;
}
.faq-contact-cta {
  text-align: center;
  padding: 40px 36px;
  background: white;
  border-radius: 16px;
  border: 1.5px solid rgba(239, 80, 39, 0.15);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.faq-contact-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(239, 80, 39, 0.03), transparent);
  pointer-events: none;
}
.faq-contact-cta h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 10px 0;
  position: relative;
  z-index: 1;
}
.faq-contact-cta p {
  font-size: 15px;
  color: #666;
  margin: 0 0 26px 0;
  position: relative;
  z-index: 1;
}
.faq-cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.faq-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 35px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.faq-cta-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.2));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.faq-cta-btn:hover::before {
  opacity: 1;
}
.faq-cta-btn.primary {
  background: linear-gradient(135deg, var(--primary), #ff6a00);
  color: white;
  border: 2px solid transparent;
}
.faq-cta-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(239, 80, 39, 0.3);
}
.faq-cta-btn.secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.faq-cta-btn.secondary:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(239, 80, 39, 0.2);
}
.faq-cta-btn i {
  font-size: 18px;
}
@media (max-width: 900px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .faq-contact-section .faq-question {
    padding: 20px 25px;
  }
  .faq-contact-section .faq-question span {
    font-size: 16px;
  }
  .faq-contact-section .faq-answer {
    padding: 0 25px;
  }
  .faq-contact-section .faq-answer p {
    font-size: 14px;
  }
  .faq-contact-section .faq-item.active .faq-answer {
    padding: 0 25px;
  }
  .faq-contact-cta {
    padding: 40px 30px;
  }
  .faq-contact-cta h3 {
    font-size: 24px;
  }
  .faq-cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
}
@media (max-width: 600px) {
  .faq-contact-section .faq-question {
    padding: 18px 20px;
    gap: 15px;
  }
  .faq-contact-section .faq-question span {
    font-size: 15px;
  }
  .faq-contact-section .faq-question i {
    width: 26px;
    height: 26px;
    font-size: 14px;
  }
  .faq-contact-section .faq-answer {
    padding: 0 20px;
  }
  .faq-contact-section .faq-item.active .faq-answer {
    padding: 0 20px;
  }
  .faq-contact-cta {
    padding: 30px 20px;
  }
  .faq-contact-cta h3 {
    font-size: 22px;
  }
  .faq-contact-cta p {
    font-size: 15px;
  }
  .faq-cta-btn {
    padding: 14px 28px;
    font-size: 15px;
  }
}
.final-cta-contact {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  position: relative;
  overflow: hidden;
}
.final-cta-contact::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(239, 80, 39, 0.15), transparent);
  border-radius: 50%;
  pointer-events: none;
}
.final-cta-contact::after {
  content: "";
  position: absolute;
  bottom: -30%;
  right: -15%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(8, 68, 199, 0.12), transparent);
  border-radius: 50%;
  pointer-events: none;
}
.final-cta-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.final-cta-left h2 {
  font-size: 42px;
  font-weight: 900;
  color: white;
  margin-bottom: 20px;
  line-height: 1.2;
}
.cta-highlight {
  background: linear-gradient(135deg, var(--primary), #ff6a00);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.final-cta-left p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
}
.cta-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.cta-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  color: white;
}
.cta-benefits i {
  font-size: 20px;
  color: var(--primary);
}
.final-cta-right {
  display: flex;
  justify-content: center;
}
.cta-action-box {
  width: 100%;
  background: white;
  padding: 50px 40px;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}
.cta-action-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), #ff6a00);
}
.cta-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), #ff6a00);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  animation: pulse 2s infinite;
}
.cta-icon i {
  font-size: 36px;
  color: white;
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(239, 80, 39, 0.7);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 20px rgba(239, 80, 39, 0);
  }
}
.cta-action-box h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}
.cta-phone {
  display: block;
  font-size: 32px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), #ff6a00);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}
.cta-phone:hover {
  transform: scale(1.05);
}
.cta-hours {
  font-size: 14px;
  color: #666;
  margin-bottom: 30px;
  font-weight: 600;
}
.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.final-cta-contact .cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.final-cta-contact .cta-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.2));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.final-cta-contact .cta-btn:hover::before {
  opacity: 1;
}
.final-cta-contact .cta-btn.primary {
  background: linear-gradient(135deg, var(--primary), #ff6a00);
  color: white;
  border: 2px solid transparent;
}
.final-cta-contact .cta-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(239, 80, 39, 0.4);
}
.final-cta-contact .cta-btn.secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.final-cta-contact .cta-btn.secondary:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(239, 80, 39, 0.3);
}
.final-cta-contact .cta-btn i {
  font-size: 18px;
}
/* ================================
   WhatsApp Floating Button
================================ */
.whatsapp-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 70px;
  height: 70px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5), 0 8px 40px rgba(37, 211, 102, 0.3);
  z-index: 9999;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  animation: whatsapp-pulse 2.5s ease-in-out infinite;
  border: 3px solid rgba(255, 255, 255, 0.3);
}
.whatsapp-btn::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.4) 0%, rgba(37, 211, 102, 0) 70%);
  z-index: -1;
  animation: whatsapp-ripple 2s ease-out infinite;
}
.whatsapp-btn i {
  font-size: 38px;
  color: #ffffff !important;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}
.whatsapp-btn:hover {
  transform: scale(1.15) translateY(-5px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6), 0 12px 50px rgba(37, 211, 102, 0.4);
  background: #20BA5A;
}
.whatsapp-btn:hover i {
  transform: scale(1.1) rotate(-5deg);
  color: #ffffff !important;
}
.whatsapp-btn::after {
  content: "Chat with us";
  position: absolute;
  right: 85px;
  background: #ffffff;
  color: #075E54;
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  opacity: 0;
  pointer-events: none;
  transform: translateX(15px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(37, 211, 102, 0.2);
}
.whatsapp-btn:hover::after {
  opacity: 1;
  transform: translateX(0);
}
@keyframes whatsapp-pulse {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5), 0 8px 40px rgba(37, 211, 102, 0.3);
  }
  50% {
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7), 0 12px 50px rgba(37, 211, 102, 0.5);
  }
}
@keyframes whatsapp-ripple {
  0% {
    transform: scale(0.8);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}
@media (max-width: 768px) {
  .whatsapp-btn {
    width: 65px;
    height: 65px;
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-btn i {
    font-size: 35px;
  }
  .whatsapp-btn::after {
    display: none;
  }
}
@media (max-width: 480px) {
  .whatsapp-btn {
    width: 60px;
    height: 60px;
    bottom: 15px;
    right: 15px;
  }
  .whatsapp-btn i {
    font-size: 32px;
  }
}
@media (max-width: 900px) {
  .final-cta-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .final-cta-left h2 {
    font-size: 36px;
  }
  .cta-benefits {
    grid-template-columns: 1fr;
  }
  .cta-action-box {
    padding: 40px 30px;
  }
  .cta-phone {
    font-size: 28px;
  }
}
@media (max-width: 600px) {
  .final-cta-contact {
    padding: 60px 0;
  }
  .final-cta-left h2 {
    font-size: 30px;
  }
  .final-cta-left p {
    font-size: 15px;
  }
  .cta-benefits li {
    font-size: 14px;
  }
  .cta-action-box {
    padding: 35px 25px;
  }
  .cta-icon {
    width: 70px;
    height: 70px;
  }
  .cta-icon i {
    font-size: 30px;
  }
  .cta-action-box h3 {
    font-size: 20px;
  }
  .cta-phone {
    font-size: 24px;
  }
  .final-cta-contact .cta-btn {
    padding: 14px 25px;
    font-size: 15px;
  }
}
.single-post-hero-section {
  padding: 130px 0 50px 0;
  background: linear-gradient(135deg, #1a2332 0%, #2d3a4f 100%);
  position: relative;
  overflow: hidden;
}
.single-post-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
}
.single-post-hero-section .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.post-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
  font-size: 13px;
  flex-wrap: wrap;
}
.post-breadcrumb a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
}
.post-breadcrumb a:hover {
  color: var(--primary);
}
.post-breadcrumb span {
  color: rgba(255, 255, 255, 0.35);
  font-size: 11px;
}
.post-breadcrumb span:last-child {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}
.post-breadcrumb i {
  font-size: 11px;
}
.post-category-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 102, 0, 0.15);
  border: 1px solid rgba(255, 102, 0, 0.3);
  padding: 8px 16px;
  border-radius: 50px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 25px;
}
.post-category-badge i {
  font-size: 14px;
}
.post-main-title {
  font-size: 44px;
  font-weight: 800;
  color: white;
  line-height: 1.25;
  margin-bottom: 20px;
  letter-spacing: -0.8px;
  max-width: 900px;
}
.post-excerpt {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 28px;
  max-width: 850px;
  font-weight: 400;
}
.post-meta-info {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.post-author-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #ff8533);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}
.author-details {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.author-name {
  font-size: 15px;
  font-weight: 700;
  color: white;
}
.author-title {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}
.post-date-meta,
.post-read-time,
.post-views {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
  padding: 0 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.post-views {
  border-right: none;
}
.post-date-meta i,
.post-read-time i,
.post-views i {
  font-size: 14px;
  color: var(--primary);
  opacity: 0.9;
}
.post-featured-image-section {
  padding: 50px 0 70px 0;
  background: #f8f9fa;
  position: relative;
}
.container-narrow {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
}
.featured-image-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}
.featured-image-wrapper:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.18);
}
.featured-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 550px;
}
.single-post-article {
  padding: 0 0 80px 0;
  background: #f8f9fa;
}
.article-layout {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 50px;
  align-items: start;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
}
.article-main-content {
  background: white;
  border-radius: 20px;
  padding: 70px 80px;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05);
  max-width: 100%;
}
.article-toc {
  background: linear-gradient(135deg, #fff5e6 0%, #fff9f0 100%);
  border: 2px solid #ffe6cc;
  padding: 30px;
  border-radius: 16px;
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
}
.article-toc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary), #ff8533);
}
.article-toc h3 {
  font-size: 19px;
  font-weight: 800;
  color: #1a2332;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 15px;
}
.article-toc h3 i {
  color: var(--primary);
  font-size: 22px;
}
.article-toc ul {
  list-style: none;
  padding: 0 0 0 15px;
  margin: 0;
}
.article-toc ul li {
  margin-bottom: 0;
}
.article-toc ul li:last-child {
  margin-bottom: 0;
}
.article-toc ul li a {
  color: #444;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  padding: 12px 15px;
  border-radius: 8px;
  margin-bottom: 6px;
  position: relative;
}
.article-toc ul li a::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  margin-right: 12px;
  opacity: 0.5;
  transition: all 0.3s ease;
}
.article-toc ul li:last-child a {
  margin-bottom: 0;
}
.article-toc ul li a:hover {
  color: var(--primary);
  background: white;
  padding-left: 20px;
  box-shadow: 0 4px 15px rgba(255, 102, 0, 0.1);
}
.article-toc ul li a:hover::before {
  opacity: 1;
  transform: scale(1.3);
}
.article-body h2 {
  font-size: 36px;
  font-weight: 800;
  color: #1a2332;
  margin-top: 70px;
  margin-bottom: 28px;
  line-height: 1.3;
  scroll-margin-top: 100px;
  letter-spacing: -0.6px;
}
.article-body h2:first-child {
  margin-top: 0;
}
.article-body h3 {
  font-size: 28px;
  font-weight: 700;
  color: #1a2332;
  margin-top: 50px;
  margin-bottom: 22px;
  line-height: 1.4;
  letter-spacing: -0.4px;
}
.article-body h4 {
  font-size: 22px;
  font-weight: 700;
  color: #1a2332;
  margin-top: 40px;
  margin-bottom: 18px;
  line-height: 1.4;
}
.article-body p {
  font-size: 18px;
  line-height: 1.85;
  color: #374151;
  margin-bottom: 26px;
  letter-spacing: 0.01em;
}
.article-body ul,
.article-body ol {
  margin: 35px 0;
  padding-left: 32px;
}
.article-body ul li,
.article-body ol li {
  font-size: 18px;
  line-height: 1.85;
  color: #374151;
  margin-bottom: 16px;
  padding-left: 10px;
}
.article-body ul li {
  list-style-type: none;
  position: relative;
}
.article-body ul li::before {
  content: '';
  position: absolute;
  left: -24px;
  top: 13px;
  width: 7px;
  height: 7px;
  background: var(--primary);
  border-radius: 50%;
}
.article-body strong {
  font-weight: 700;
  color: #1a2332;
}
.article-body blockquote {
  border-left: 5px solid var(--primary);
  padding: 25px 35px;
  background: #f8f9fa;
  margin: 35px 0;
  font-style: italic;
  color: #555;
  border-radius: 12px;
  font-size: 17px;
  line-height: 1.8;
}
.article-highlight-box {
  display: flex;
  gap: 20px;
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border: 2px solid #fbbf24;
  border-radius: 16px;
  padding: 28px 30px;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
}
.article-highlight-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: #fbbf24;
}
.article-highlight-box i {
  font-size: 32px;
  color: #f59e0b;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(251, 191, 36, 0.15);
  border-radius: 12px;
}
.article-highlight-box h4 {
  font-size: 19px;
  font-weight: 800;
  color: #1a2332;
  margin: 0 0 12px 0;
}
.article-highlight-box p {
  margin: 0;
  font-size: 17px;
  line-height: 1.8;
  color: #4b5563;
}
.article-warning-box {
  display: flex;
  gap: 20px;
  background: linear-gradient(135deg, #fff5f0 0%, #ffe8dd 100%);
  border: 2px solid var(--primary);
  border-radius: 16px;
  padding: 28px 30px;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
}
.article-warning-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--primary);
}
.article-warning-box i {
  font-size: 32px;
  color: var(--primary);
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 102, 0, 0.1);
  border-radius: 12px;
}
.article-warning-box h4 {
  font-size: 19px;
  font-weight: 800;
  color: #1a2332;
  margin: 0 0 12px 0;
}
.article-warning-box p {
  margin: 0;
  font-size: 17px;
  line-height: 1.8;
  color: #4b5563;
}
.article-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  margin: 50px 0;
}
.info-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  border: 2px solid #e5e7eb;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #ff8533);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.info-card:hover {
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(255, 102, 0, 0.15);
}
.info-card:hover::before {
  transform: scaleX(1);
}
.info-card i {
  font-size: 38px;
  color: var(--primary);
  margin-bottom: 20px;
  display: block;
}
.info-card h4 {
  font-size: 20px;
  font-weight: 800;
  color: #1a2332;
  margin: 0 0 14px 0;
  line-height: 1.3;
}
.info-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #6b7280;
  margin: 0;
}
.tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  margin: 50px 0;
}
.tip-card {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 32px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.tip-card:hover {
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(255, 102, 0, 0.18);
  transform: translateY(-6px);
}
.tip-number {
  position: absolute;
  top: -20px;
  left: 28px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), #ff8533);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  font-weight: 800;
  box-shadow: 0 10px 25px rgba(255, 102, 0, 0.4);
  border: 3px solid white;
}
.tip-card h4 {
  font-size: 19px;
  font-weight: 800;
  color: #1a2332;
  margin: 18px 0 14px 0;
  line-height: 1.3;
}
.tip-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #6b7280;
  margin: 0;
}
.article-cta-box {
  background: linear-gradient(135deg, var(--primary) 0%, #ff8533 100%);
  border-radius: 20px;
  padding: 50px 45px;
  margin: 60px 0;
  text-align: center;
  box-shadow: 0 20px 60px rgba(255, 102, 0, 0.25);
  position: relative;
  overflow: hidden;
}
.article-cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: pulse 3s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}
.cta-content {
  position: relative;
  z-index: 2;
}
.cta-content h3 {
  font-size: 32px;
  font-weight: 800;
  color: white;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}
.cta-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 35px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cta-btn-primary,
.cta-btn-secondary {
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.cta-btn-primary {
  background: white;
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.cta-btn-primary:hover {
  background: #f9fafb;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}
.cta-btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}
.cta-btn-secondary:hover {
  background: white;
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}
.article-tags {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 2px solid #e9ecef;
}
.article-tags h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1a2332;
  margin-bottom: 15px;
}
.tags-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.tag-item {
  display: inline-block;
  padding: 8px 18px;
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 50px;
  color: #555;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.tag-item:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-2px);
}
.article-share {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 2px solid #e9ecef;
}
.article-share h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1a2332;
  margin-bottom: 15px;
}
.share-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  color: white;
}
.share-btn i {
  font-size: 16px;
}
.share-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.share-btn.facebook {
  background: #1877f2;
}
.share-btn.twitter {
  background: #1da1f2;
}
.share-btn.linkedin {
  background: #0a66c2;
}
.share-btn.whatsapp {
  background: #25d366;
}
.author-bio-section {
  display: flex;
  gap: 25px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 16px;
  padding: 35px;
  margin-top: 50px;
  border: 2px solid #dee2e6;
}
.author-bio-avatar {
  flex-shrink: 0;
}
.author-bio-avatar i {
  font-size: 80px;
  color: var(--primary);
}
.author-bio-content h3 {
  font-size: 14px;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.author-bio-content h4 {
  font-size: 24px;
  font-weight: 800;
  color: #1a2332;
  margin: 0 0 5px 0;
}
.author-role {
  font-size: 15px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 15px !important;
}
.author-bio-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}
.post-navigation {
  display: flex;
  gap: 20px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 2px solid #e9ecef;
}
.post-nav-link {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 24px;
  background: #f8f9fa;
  border-radius: 14px;
  text-decoration: none;
  border: 2px solid #e9ecef;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.post-nav-link:hover {
  background: white;
  border-color: var(--primary);
  box-shadow: 0 8px 25px rgba(255, 102, 0, 0.12);
  transform: translateY(-3px);
}
.post-nav-link.next {
  text-align: right;
  align-items: flex-end;
}
.post-nav-link .nav-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.post-nav-link .nav-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a2332;
  line-height: 1.5;
  transition: color 0.3s ease;
}
.post-nav-link:hover .nav-title {
  color: var(--primary);
}
.article-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}
.sidebar-widget {
  background: white;
  border-radius: 20px;
  padding: 35px;
  margin-bottom: 25px;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.sidebar-widget:last-child {
  margin-bottom: 0;
}
.sidebar-widget:hover {
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}
.sidebar-widget h3 {
  font-size: 21px;
  font-weight: 800;
  color: #1a2332;
  margin-bottom: 25px;
  padding-bottom: 18px;
  border-bottom: 3px solid var(--primary);
  letter-spacing: -0.3px;
}
.contact-widget {
  background: linear-gradient(135deg, var(--primary) 0%, #ff8533 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-widget::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
}
.contact-widget h3 {
  color: white;
  border-bottom-color: rgba(255, 255, 255, 0.25);
  position: relative;
  z-index: 2;
}
.contact-widget p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 17px;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
  line-height: 1.6;
}
.sidebar-cta-btn {
  display: block;
  background: white;
  color: var(--primary);
  padding: 16px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 14px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
.sidebar-cta-btn:hover {
  background: #f9fafb;
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}
.sidebar-cta-btn:last-child {
  margin-bottom: 0;
}
.sidebar-cta-btn.secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
  box-shadow: none;
}
.sidebar-cta-btn.secondary:hover {
  background: white;
  color: var(--primary);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}
.sidebar-categories {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-categories li {
  margin-bottom: 14px;
}
.sidebar-categories li:last-child {
  margin-bottom: 0;
}
.sidebar-categories li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: #f8f9fa;
  border-radius: 12px;
  text-decoration: none;
  color: #374151;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
}
.sidebar-categories li a:hover {
  background: linear-gradient(135deg, var(--primary), #ff8533);
  color: white;
  border-color: var(--primary);
  transform: translateX(6px);
  box-shadow: 0 8px 20px rgba(255, 102, 0, 0.25);
}
.sidebar-categories li a span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  background: white;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  color: var(--primary);
  padding: 0 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.sidebar-categories li a:hover span {
  background: rgba(255, 255, 255, 0.25);
  color: white;
  box-shadow: none;
}
.popular-posts {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.popular-post-item {
  display: flex;
  gap: 16px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 16px;
  border-radius: 14px;
  border: 2px solid #f3f4f6;
  background: #fafafa;
}
.popular-post-item:hover {
  background: white;
  border-color: var(--primary);
  box-shadow: 0 8px 25px rgba(255, 102, 0, 0.12);
  transform: translateY(-3px);
}
.popular-post-item img {
  width: 85px;
  height: 85px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
  border: 2px solid white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.popular-post-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
}
.popular-post-content h5 {
  font-size: 15px;
  font-weight: 700;
  color: #1a2332;
  line-height: 1.5;
  margin: 0;
  transition: color 0.3s ease;
}
.popular-post-item:hover h5 {
  color: var(--primary);
}
.popular-post-date {
  font-size: 13px;
  color: #9ca3af;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}
.popular-post-date i {
  font-size: 12px;
  color: var(--primary);
}
.related-posts-section {
  padding: 70px 0;
  background: white;
}
.related-posts-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.related-posts-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}
.related-posts-section .section-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #1a2332;
}
.related-posts-section .section-title-highlight {
  color: var(--primary);
}
.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.related-posts-grid .blog-card {
  display: flex;
  flex-direction: column;
}
@media (max-width: 1200px) {
  .article-layout {
    max-width: 1400px;
    padding: 0 30px;
    gap: 40px;
  }
  .article-main-content {
    padding: 60px 60px;
  }
  .post-main-title {
    max-width: 100%;
  }
  .post-excerpt {
    max-width: 100%;
  }
}
@media (max-width: 900px) {
  .single-post-hero-section {
    padding: 120px 0 40px 0;
  }
  .single-post-hero-section .container {
    max-width: 100%;
  }
  .post-main-title {
    font-size: 34px;
    letter-spacing: -0.5px;
    margin-bottom: 18px;
    max-width: 100%;
  }
  .post-excerpt {
    font-size: 16px;
    margin-bottom: 24px;
    max-width: 100%;
  }
  .post-meta-info {
    gap: 6px;
  }
  .post-author-meta {
    padding-right: 15px;
  }
  .post-date-meta,
  .post-read-time,
  .post-views {
    padding: 0 10px;
    font-size: 12px;
  }
  .post-featured-image-section {
    padding: 40px 0 60px 0;
  }
  .article-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
  }
  .article-sidebar {
    position: static;
  }
  .article-main-content {
    padding: 50px 40px;
  }
  .article-body h2 {
    font-size: 28px;
    margin-top: 50px;
  }
  .article-body h3 {
    font-size: 23px;
  }
  .article-info-grid,
  .tips-grid {
    grid-template-columns: 1fr;
  }
  .related-posts-section .section-header h2 {
    font-size: 32px;
  }
  .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}
@media (max-width: 600px) {
  .single-post-hero-section {
    padding: 110px 0 35px 0;
  }
  .single-post-hero-section .container {
    max-width: 100%;
  }
  .post-breadcrumb {
    font-size: 12px;
    margin-bottom: 20px;
  }
  .post-category-badge {
    font-size: 12px;
    padding: 7px 14px;
    margin-bottom: 20px;
  }
  .post-main-title {
    font-size: 26px;
    letter-spacing: -0.4px;
    margin-bottom: 16px;
  }
  .post-excerpt {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 22px;
  }
  .post-meta-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .post-author-meta {
    border-right: none;
    padding-right: 0;
  }
  .author-avatar {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }
  .author-name {
    font-size: 14px;
  }
  .author-title {
    font-size: 11px;
  }
  .post-date-meta,
  .post-read-time,
  .post-views {
    border-right: none;
    padding: 0;
    font-size: 12px;
  }
  .post-featured-image-section {
    padding: 30px 0 50px 0;
  }
  .featured-image-wrapper {
    border-radius: 16px;
  }
  .single-post-article {
    padding: 50px 0;
  }
  .article-layout {
    padding: 0 20px;
  }
  .article-main-content {
    padding: 40px 30px;
    border-radius: 16px;
  }
  .article-toc {
    padding: 20px;
  }
  .article-toc h3 {
    font-size: 16px;
  }
  .article-toc ul li a {
    font-size: 14px;
  }
  .article-body h2 {
    font-size: 24px;
    margin-top: 35px;
  }
  .article-body h3 {
    font-size: 20px;
  }
  .article-body h4 {
    font-size: 18px;
  }
  .article-body p,
  .article-body ul li,
  .article-body ol li {
    font-size: 16px;
  }
  .article-highlight-box,
  .article-warning-box {
    flex-direction: column;
    padding: 20px;
  }
  .article-highlight-box i,
  .article-warning-box i {
    font-size: 24px;
  }
  .article-cta-box {
    padding: 30px 20px;
  }
  .cta-content h3 {
    font-size: 22px;
  }
  .cta-content p {
    font-size: 15px;
  }
  .cta-actions {
    flex-direction: column;
  }
  .cta-btn-primary,
  .cta-btn-secondary {
    width: 100%;
    justify-content: center;
  }
  .share-buttons {
    gap: 8px;
  }
  .share-btn {
    flex: 1;
    justify-content: center;
    padding: 10px 15px;
    font-size: 13px;
  }
  .author-bio-section {
    flex-direction: column;
    padding: 25px;
    text-align: center;
  }
  .author-bio-avatar i {
    font-size: 60px;
  }
  .author-bio-content h4 {
    font-size: 20px;
  }
  .author-bio-content p {
    font-size: 15px;
  }
  .post-navigation {
    flex-direction: column;
    gap: 12px;
  }
  .post-nav-link.next {
    text-align: left;
    align-items: flex-start;
  }
  .post-nav-link {
    padding: 16px 20px;
  }
  .post-nav-link .nav-title {
    font-size: 15px;
  }
  .sidebar-widget {
    padding: 25px 20px;
  }
  .related-posts-section {
    padding: 50px 0;
  }
  .related-posts-section .section-header h2 {
    font-size: 28px;
  }
  .related-posts-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.single-fullwidth-layout .single-post-hero-section .container {
  max-width: 100%;
  padding: 0 60px;
}
.single-fullwidth-layout .container-narrow {
  max-width: 100%;
  padding: 0 60px;
}
.single-fullwidth-layout .article-layout {
  max-width: 100%;
  padding: 0 60px;
  grid-template-columns: 1fr 380px;
  gap: 60px;
}
.single-fullwidth-layout .article-main-content {
  max-width: 100%;
}
.single-fullwidth-layout .related-posts-section .container {
  max-width: 100%;
  padding: 0 60px;
}
@media (max-width: 1400px) {
  .single-fullwidth-layout .single-post-hero-section .container,
  .single-fullwidth-layout .container-narrow,
  .single-fullwidth-layout .article-layout,
  .single-fullwidth-layout .related-posts-section .container {
    padding: 0 40px;
  }
  .single-fullwidth-layout .article-layout {
    gap: 50px;
    grid-template-columns: 1fr 350px;
  }
}
@media (max-width: 1200px) {
  .single-fullwidth-layout .single-post-hero-section .container,
  .single-fullwidth-layout .container-narrow,
  .single-fullwidth-layout .article-layout,
  .single-fullwidth-layout .related-posts-section .container {
    padding: 0 30px;
  }
  .single-fullwidth-layout .article-layout {
    gap: 40px;
  }
}
@media (max-width: 900px) {
  .single-fullwidth-layout .article-layout {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
  .single-fullwidth-layout .single-post-hero-section .container,
  .single-fullwidth-layout .container-narrow,
  .single-fullwidth-layout .related-posts-section .container {
    padding: 0 20px;
  }
}
@media (max-width: 600px) {
  .single-fullwidth-layout .single-post-hero-section .container,
  .single-fullwidth-layout .container-narrow,
  .single-fullwidth-layout .article-layout,
  .single-fullwidth-layout .related-posts-section .container {
    padding: 0 20px;
  }
}
/* ==========================================================================
   Comments Section
   ========================================================================== */
.comments-section {
  margin-top: 50px;
  padding-top: 40px;
  border-top: 2px solid #e9ecef;
}
.comments-area {
  max-width: 100%;
}
.comments-title {
  font-size: 24px;
  font-weight: 800;
  color: #1a2332;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.comments-title i {
  color: var(--primary);
  font-size: 22px;
}
.comment-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}
.comment-item {
  margin-bottom: 24px;
}
.comment-item .children {
  list-style: none;
  padding-left: 40px;
  margin-top: 24px;
  border-left: 3px solid #e9ecef;
}
.comment-body {
  display: flex;
  gap: 18px;
  background: #f8f9fa;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}
.comment-body:hover {
  border-color: rgba(239, 80, 39, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
.comment-author-avatar {
  flex-shrink: 0;
}
.comment-author-avatar img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.comment-content {
  flex: 1;
  min-width: 0;
}
.comment-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.comment-author-name {
  font-size: 16px;
  font-weight: 700;
  color: #1a2332;
}
.comment-author-name a {
  color: #1a2332;
  text-decoration: none;
}
.comment-author-name a:hover {
  color: var(--primary);
}
.comment-date {
  font-size: 13px;
  color: #9ca3af;
  display: flex;
  align-items: center;
  gap: 5px;
}
.comment-date i {
  font-size: 12px;
}
.comment-awaiting-moderation {
  font-size: 14px;
  color: #f59e0b;
  font-style: italic;
  margin-bottom: 10px;
}
.comment-text {
  font-size: 16px;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 12px;
}
.comment-text p {
  margin: 0 0 10px 0;
}
.comment-text p:last-child {
  margin-bottom: 0;
}
.comment-actions {
  display: flex;
  gap: 16px;
}
.comment-actions a {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
}
.comment-actions a:hover {
  color: #1a2332;
}
.no-comments {
  font-size: 15px;
  color: #9ca3af;
  font-style: italic;
  padding: 20px 0;
}
/* Comment Form */
.comment-reply-title {
  font-size: 22px;
  font-weight: 800;
  color: #1a2332;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.comment-reply-title i {
  color: var(--primary);
}
.comment-reply-title small {
  font-size: 14px;
  font-weight: 500;
}
.comment-reply-title small a {
  color: var(--primary);
  text-decoration: none;
}
.comment-form {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 35px;
  border: 1px solid #e9ecef;
}
.comment-form label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #1a2332;
  margin-bottom: 8px;
}
.comment-form label .required {
  color: var(--primary);
}
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 16px;
  font-family: inherit;
  color: #374151;
  background: white;
  transition: all 0.3s ease;
  outline: none;
  box-sizing: border-box;
}
.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus,
.comment-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(239, 80, 39, 0.1);
}
.comment-form input[type="text"]::placeholder,
.comment-form input[type="email"]::placeholder,
.comment-form input[type="url"]::placeholder,
.comment-form textarea::placeholder {
  color: #9ca3af;
}
.comment-form textarea {
  resize: vertical;
  min-height: 140px;
}
.comment-form-comment,
.comment-form-author,
.comment-form-email,
.comment-form-url {
  margin-bottom: 20px;
}
.comment-form-cookies {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.comment-form-cookies input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
  cursor: pointer;
  flex-shrink: 0;
}
.comment-form-cookies label {
  display: inline;
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
  margin-bottom: 0;
  cursor: pointer;
}
.form-submit {
  margin-top: 8px;
}
.form-submit .custom-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: linear-gradient(135deg, var(--primary), #ff8533);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(239, 80, 39, 0.3);
}
.form-submit .custom-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(239, 80, 39, 0.4);
}
.form-submit .custom-btn i {
  font-size: 15px;
}
.logged-in-as {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 20px;
}
.logged-in-as a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}
.logged-in-as a:hover {
  text-decoration: underline;
}
/* Comments Responsive */
@media (max-width: 600px) {
  .comment-body {
    flex-direction: column;
    gap: 12px;
    padding: 20px;
  }
  .comment-item .children {
    padding-left: 20px;
  }
  .comment-form {
    padding: 24px 20px;
  }
  .comments-title {
    font-size: 20px;
  }
  .comment-reply-title {
    font-size: 18px;
  }
  .comment-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}
/* ==========================================================================
   Default Page Template Styles
   ========================================================================== */
.page-hero-section {
  padding: 130px 0 50px;
  background: linear-gradient(135deg, #1a2332 0%, #2d3a4f 100%);
  position: relative;
  overflow: hidden;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.page-title {
  font-size: 42px;
  font-weight: 800;
  color: white;
  margin-bottom: 15px;
  line-height: 1.2;
}
.page-excerpt {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}
.page-featured-image {
  padding: 50px 0;
  background: #f8f9fa;
}
.page-featured-image .featured-image-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
.page-featured-image .featured-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 500px;
}
.page-content-section {
  padding: 60px 0 80px;
  background: #fff;
}
.page-content {
  max-width: 900px;
  margin: 0 auto;
}
.page-content h2 {
  font-size: 30px;
  font-weight: 700;
  color: #1a2332;
  margin-top: 40px;
  margin-bottom: 18px;
  line-height: 1.3;
}
.page-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1a2332;
  margin-top: 30px;
  margin-bottom: 14px;
}
.page-content p {
  font-size: 17px;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 20px;
}
.page-content ul,
.page-content ol {
  margin: 20px 0;
  padding-left: 28px;
}
.page-content ul li,
.page-content ol li {
  font-size: 17px;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 10px;
}
.page-content blockquote {
  border-left: 4px solid var(--primary);
  padding: 20px 30px;
  background: #f8f9fa;
  margin: 30px 0;
  border-radius: 10px;
  font-style: italic;
  color: #555;
  font-size: 17px;
  line-height: 1.7;
}
.page-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 20px 0;
}
.page-content a {
  color: var(--primary);
  text-decoration: underline;
}
.page-content a:hover {
  color: #1a2332;
}
.page-links {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 2px solid #e9ecef;
  font-weight: 600;
  color: #1a2332;
}
.page-faq-section {
  padding: 60px 0;
  background: #f8f9fa;
}
.page-comments-section {
  padding: 60px 0;
  background: #fff;
}
.page-cta-section {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--primary), #ff8533);
  text-align: center;
}
.page-cta-section h2 {
  font-size: 30px;
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
}
.page-cta-section p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 25px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.page-cta-section .cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}
.page-cta-section .custom-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  background: white;
  color: var(--primary);
}
.page-cta-section .custom-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.page-cta-section .custom-btn.outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.page-cta-section .custom-btn.outline:hover {
  background: white;
  color: var(--primary);
}
/* Default Page Responsive */
@media (max-width: 900px) {
  .page-title {
    font-size: 34px;
  }
  .page-content h2 {
    font-size: 26px;
  }
}
@media (max-width: 600px) {
  .page-hero-section {
    padding: 110px 0 40px;
  }
  .page-title {
    font-size: 26px;
  }
  .page-content h2 {
    font-size: 22px;
  }
  .page-content h3 {
    font-size: 20px;
  }
  .page-content p,
  .page-content ul li,
  .page-content ol li {
    font-size: 15px;
  }
  .page-cta-section h2 {
    font-size: 24px;
  }
  .page-cta-section .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}
/* ==========================================================================
   Archive Page Styles
   ========================================================================== */
.archive-hero-section {
  padding: 130px 0 50px;
  background: linear-gradient(135deg, #1a2332 0%, #2d3a4f 100%);
  position: relative;
  overflow: hidden;
}
.archive-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.archive-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.archive-icon i {
  font-size: 32px;
  color: var(--primary);
}
.archive-title {
  font-size: 40px;
  font-weight: 800;
  color: white;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}
.archive-description {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
}
.archive-count {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}
.archive-content-section {
  padding: 60px 0 80px;
  background: #f8f9fa;
}
.archive-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.archive-pagination,
.search-pagination {
  margin-top: 50px;
  text-align: center;
}
.archive-pagination .nav-links,
.search-pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.archive-pagination .nav-links a,
.archive-pagination .nav-links span,
.search-pagination .nav-links a,
.search-pagination .nav-links span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #e9ecef;
  background: white;
  color: #374151;
}
.archive-pagination .nav-links a:hover,
.search-pagination .nav-links a:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(239, 80, 39, 0.15);
}
.archive-pagination .nav-links .current,
.search-pagination .nav-links .current {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}
.archive-cta-section,
.search-cta-section {
  padding: 70px 0;
  background: linear-gradient(135deg, var(--primary), #ff8533);
  text-align: center;
  color: white;
}
.archive-cta-section h2,
.search-cta-section h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 15px;
}
.archive-cta-section p,
.search-cta-section p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.no-posts,
.no-results {
  text-align: center;
  padding: 60px 20px;
}
.no-posts-icon,
.no-results-icon {
  width: 100px;
  height: 100px;
  background: #f3f4f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}
.no-posts-icon i,
.no-results-icon i {
  font-size: 40px;
  color: #9ca3af;
}
.no-posts h2,
.no-results h2 {
  font-size: 24px;
  font-weight: 700;
  color: #1a2332;
  margin-bottom: 10px;
}
.no-posts p,
.no-results p {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 25px;
}
/* ==========================================================================
   Search Page Styles
   ========================================================================== */
.search-hero-section {
  padding: 130px 0 50px;
  background: linear-gradient(135deg, #1a2332 0%, #2d3a4f 100%);
  position: relative;
  overflow: hidden;
}
.search-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.search-title {
  font-size: 36px;
  font-weight: 800;
  color: white;
  margin-bottom: 10px;
}
.search-term {
  color: var(--primary);
}
.search-count {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  margin-bottom: 25px;
}
.search-form-wrapper {
  max-width: 550px;
  margin: 0 auto;
}
.search-form {
  display: flex;
  gap: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.search-field {
  flex: 1;
  padding: 16px 20px;
  border: none;
  font-size: 16px;
  font-family: inherit;
  outline: none;
  color: #374151;
}
.search-submit {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  background: var(--primary);
  color: white;
  border: none;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.3s ease;
}
.search-submit:hover {
  background: #d4441a;
}
.search-results-section {
  padding: 60px 0 80px;
  background: #f8f9fa;
}
.search-results-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.search-result-card {
  display: flex;
  gap: 24px;
  background: white;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}
.search-result-card:hover {
  border-color: rgba(239, 80, 39, 0.2);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}
.result-thumbnail {
  flex-shrink: 0;
  width: 180px;
}
.result-thumbnail img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: 12px;
}
.result-content {
  flex: 1;
  min-width: 0;
}
.result-meta {
  display: flex;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.result-type {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(239, 80, 39, 0.1);
  color: var(--primary);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}
.result-date {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: #9ca3af;
}
.result-date i {
  font-size: 12px;
}
.result-title {
  font-size: 20px;
  font-weight: 700;
  color: #1a2332;
  margin-bottom: 8px;
  line-height: 1.4;
}
.result-title a {
  color: inherit;
  text-decoration: none;
}
.result-title a:hover {
  color: var(--primary);
}
.result-excerpt {
  font-size: 15px;
  line-height: 1.7;
  color: #6b7280;
  margin-bottom: 12px;
}
.result-excerpt mark {
  background: rgba(239, 80, 39, 0.15);
  color: var(--primary);
  padding: 1px 4px;
  border-radius: 3px;
}
.result-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}
.result-link:hover {
  gap: 10px;
}
.search-suggestions {
  margin-top: 30px;
}
.search-suggestions h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1a2332;
  margin-bottom: 15px;
}
.suggestion-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.suggestion-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  color: #374151;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.suggestion-link:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}
.suggestion-link i {
  color: var(--primary);
}
/* Archive & Search Responsive */
@media (max-width: 900px) {
  .archive-posts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .archive-title {
    font-size: 32px;
  }
  .search-title {
    font-size: 28px;
  }
  .result-thumbnail {
    width: 140px;
  }
}
@media (max-width: 600px) {
  .archive-hero-section,
  .search-hero-section {
    padding: 110px 0 40px;
  }
  .archive-posts-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .archive-title {
    font-size: 26px;
  }
  .search-title {
    font-size: 22px;
  }
  .search-result-card {
    flex-direction: column;
    gap: 16px;
  }
  .result-thumbnail {
    width: 100%;
  }
  .result-thumbnail img {
    height: 180px;
  }
  .archive-icon {
    width: 60px;
    height: 60px;
  }
  .archive-icon i {
    font-size: 24px;
  }
  .suggestion-links {
    flex-direction: column;
    align-items: center;
  }
  .archive-cta-section h2,
  .search-cta-section h2 {
    font-size: 24px;
  }
}
.service-hero-section {
  position: relative;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 130px 0 50px 0;
  overflow: hidden;
}
.service-hero-section .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.service-hero-section .hero-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0.1;
}
.service-hero-section .shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}
.service-hero-section .shape-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
  animation: float 20s infinite ease-in-out;
}
.service-hero-section .shape-2 {
  width: 300px;
  height: 300px;
  bottom: -50px;
  left: 10%;
  animation: float 15s infinite ease-in-out reverse;
}
.service-hero-section .shape-3 {
  width: 200px;
  height: 200px;
  top: 50%;
  left: -50px;
  animation: float 18s infinite ease-in-out;
}
.service-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: left;
}
.service-breadcrumb {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-bottom: 20px;
  font-weight: 400;
}
.service-breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}
.service-breadcrumb a:hover {
  color: #fff;
}
.service-category-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  letter-spacing: 0.5px;
}
.service-category-badge i {
  font-size: 16px;
  color: #ff6b35;
}
.service-hero-content h1 {
  font-size: 52px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 25px;
  letter-spacing: -0.5px;
}
.service-hero-highlight {
  color: #ff6b35;
  display: inline-block;
}
.service-hero-excerpt {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 35px;
  max-width: 750px;
  font-weight: 400;
}
.service-hero-meta {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.service-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}
.service-meta-item i {
  color: #ff6b35;
  font-size: 18px;
}
.service-hero-cta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.service-btn-primary,
.service-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.service-btn-primary {
  background: #ff6b35;
  color: #fff;
  border-color: #ff6b35;
}
.service-btn-primary:hover {
  background: #e55a28;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}
.service-btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}
.service-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}
.service-featured-image {
  margin-bottom: 40px;
}
.featured-image-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
  position: relative;
}
.featured-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 600px;
}
.service-details-section {
  padding: 80px 0;
  background: #fff;
}
.service-layout {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 50px;
  align-items: start;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
}
.service-main-content {
  background: white;
  border-radius: 20px;
  padding: 60px 70px;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.service-content-block {
  margin-bottom: 50px;
}
.service-content-block:last-child {
  margin-bottom: 0;
}
.service-content-block h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 20px;
  line-height: 1.3;
}
.service-content-block p {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}
.service-included-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 30px;
}
.included-item {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 15px;
  border: 2px solid #e9ecef;
  transition: all 0.3s ease;
}
.included-item:hover {
  border-color: #ff6b35;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.1);
}
.included-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff6b35, #ff8559);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.included-icon i {
  font-size: 26px;
  color: #fff;
}
.included-item h3 {
  font-size: 19px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 10px;
}
.included-item p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}
.service-process-steps {
  margin-top: 30px;
}
.process-step-item {
  display: flex;
  gap: 25px;
  margin-bottom: 35px;
  padding-bottom: 35px;
  border-bottom: 2px solid #e9ecef;
}
.process-step-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.step-number {
  flex-shrink: 0;
  background: linear-gradient(135deg, #ff6b35, #ff8559);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}
.step-content h3 {
  font-size: 22px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 12px;
}
.step-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}
.service-highlight-box {
  background: linear-gradient(135deg, #fff4e6 0%, #ffe5cc 100%);
  border-left: 5px solid #ff6b35;
  padding: 30px;
  border-radius: 12px;
  display: flex;
  gap: 20px;
  margin: 40px 0;
}
.highlight-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: #ff6b35;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.highlight-icon i {
  font-size: 24px;
  color: #fff;
}
.highlight-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 10px;
}
.highlight-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}
.service-benefits-list {
  margin-top: 30px;
}
.benefit-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
  transition: all 0.3s ease;
}
.benefit-item:hover {
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transform: translateX(5px);
}
.benefit-item i {
  flex-shrink: 0;
  font-size: 24px;
  color: #ff6b35;
  margin-top: 2px;
}
.benefit-item h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 5px;
}
.benefit-item p {
  font-size: 15px;
  color: #666;
  margin: 0;
  line-height: 1.6;
}
.service-areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 25px;
}
.area-card {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 12px;
  border: 2px solid #e9ecef;
  transition: all 0.3s ease;
}
.area-card:hover {
  border-color: #ff6b35;
  background: #fff;
  box-shadow: 0 5px 20px rgba(255, 107, 53, 0.1);
}
.area-card i {
  font-size: 28px;
  color: #ff6b35;
  margin-bottom: 15px;
}
.area-card h4 {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 10px;
}
.area-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}
.service-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}
.sidebar-widget {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 25px;
  border: 2px solid #e9ecef;
  transition: all 0.3s ease;
}
.sidebar-widget:hover {
  border-color: #ff6b35;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}
.sidebar-widget h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 20px;
}
.quote-widget {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #fff;
  border-color: #1a1a2e;
}
.quote-widget:hover {
  border-color: #ff6b35;
}
.quote-widget .widget-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.quote-widget .widget-icon i {
  font-size: 28px;
  color: #ff6b35;
}
.quote-widget h3 {
  color: #fff;
  margin-bottom: 12px;
}
.quote-widget p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  line-height: 1.6;
}
.widget-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #ff6b35;
  color: #fff;
  padding: 14px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  border: 2px solid #ff6b35;
}
.widget-btn:hover {
  background: #e55a28;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}
.widget-contact {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.widget-contact i {
  font-size: 20px;
  color: #ff6b35;
  margin-top: 3px;
}
.widget-contact span {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 3px;
}
.widget-contact a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
}
.widget-contact a:hover {
  color: #ff6b35;
}
.widget-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.widget-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #e9ecef;
  font-size: 15px;
  color: #555;
}
.widget-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.widget-list li i {
  color: #ff6b35;
  font-size: 16px;
}
.pricing-widget {
  background: linear-gradient(135deg, #fff4e6 0%, #ffe5cc 100%);
  border-color: #ff6b35;
}
.price-display {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
  margin-bottom: 15px;
  padding: 20px 0;
}
.price-currency {
  font-size: 20px;
  font-weight: 600;
  color: #666;
}
.price-amount {
  font-size: 52px;
  font-weight: 800;
  color: #ff6b35;
  line-height: 1;
}
.price-period {
  font-size: 16px;
  color: #666;
}
.price-note {
  text-align: center;
  font-size: 13px;
  color: #666;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.price-includes {
  list-style: none;
  padding: 0;
  margin: 0;
}
.price-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: #555;
}
.price-includes li i {
  color: #ff6b35;
  font-size: 14px;
}
.related-services-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.related-service-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 10px;
  text-decoration: none;
  color: #1a1a2e;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.related-service-item:hover {
  background: #fff;
  border-color: #ff6b35;
  transform: translateX(5px);
  box-shadow: 0 3px 15px rgba(255, 107, 53, 0.15);
}
.related-service-item i {
  font-size: 20px;
  color: #ff6b35;
}
.support-widget {
  background: linear-gradient(135deg, #e8f4f8 0%, #d4ebf2 100%);
  text-align: center;
  border-color: #0f3460;
}
.support-icon {
  width: 70px;
  height: 70px;
  background: #0f3460;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.support-icon i {
  font-size: 32px;
  color: #fff;
}
.support-widget h3 {
  margin-bottom: 12px;
}
.support-widget p {
  font-size: 15px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}
.support-btn {
  display: inline-block;
  background: #0f3460;
  color: #fff;
  padding: 12px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}
.support-btn:hover {
  background: #16213e;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 52, 96, 0.3);
}
.service-pricing-section {
  padding: 80px 0;
  background: #f8f9fa;
}
.related-services-section {
  padding: 80px 0;
  background: #fff;
}
.related-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}
@media (max-width: 1400px) {
  .service-layout {
    gap: 40px;
    padding: 0 30px;
  }
  .service-main-content {
    padding: 50px 60px;
  }
}
@media (max-width: 1200px) {
  .service-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .service-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .related-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .service-hero-section {
    padding: 150px 0 80px;
    min-height: 500px;
  }
  .service-hero-section .container {
    max-width: 100%;
  }
  .service-hero-content h1 {
    font-size: 38px;
  }
  .service-hero-excerpt {
    font-size: 16px;
  }
  .service-hero-meta {
    gap: 20px;
  }
  .service-main-content {
    padding: 40px 30px;
  }
  .service-content-block h2 {
    font-size: 28px;
  }
  .service-included-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .service-areas-grid {
    grid-template-columns: 1fr;
  }
  .service-sidebar {
    grid-template-columns: 1fr;
  }
  .related-services-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .service-hero-section {
    padding: 130px 0 60px;
  }
  .service-hero-section .container {
    max-width: 100%;
  }
  .service-hero-content h1 {
    font-size: 32px;
  }
  .service-hero-meta {
    flex-direction: column;
    gap: 15px;
  }
  .service-hero-cta {
    flex-direction: column;
  }
  .service-btn-primary,
  .service-btn-secondary {
    width: 100%;
    justify-content: center;
  }
  .service-layout {
    padding: 0 20px;
  }
  .service-main-content {
    padding: 30px 20px;
  }
  .service-content-block h2 {
    font-size: 24px;
  }
  .service-content-block p {
    font-size: 16px;
  }
  .process-step-item {
    flex-direction: column;
    gap: 15px;
  }
  .service-highlight-box {
    flex-direction: column;
    padding: 25px 20px;
  }
  .sidebar-widget {
    padding: 25px 20px;
  }
  .price-amount {
    font-size: 42px;
  }
}
.quote-hero-section {
  position: relative;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  padding: 150px 0 80px 0;
  overflow: hidden;
}
.quote-hero-section .hero-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0.1;
}
.quote-hero-section .shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 20s infinite ease-in-out;
}
.quote-hero-section .shape-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
}
.quote-hero-section .shape-2 {
  width: 300px;
  height: 300px;
  bottom: -50px;
  left: 10%;
}
.quote-hero-section .shape-3 {
  width: 200px;
  height: 200px;
  top: 50%;
  left: -50px;
}
.quote-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.quote-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 25px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}
.quote-breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}
.quote-breadcrumb a:hover {
  color: #fff;
}
.quote-hero-content h1 {
  font-size: 52px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 25px;
  letter-spacing: -0.5px;
}
.highlight-text {
  color: #ff6b35;
}
.quote-hero-desc {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 35px;
}
.quote-hero-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}
.hero-feature-item i {
  font-size: 20px;
  color: #ff6b35;
}
.quote-form-section {
  padding: 100px 0;
  background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}
.quote-form-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: start;
}
.quote-form-wrapper {
  background: #fff;
  border-radius: 24px;
  padding: 55px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
  transition: box-shadow 0.3s ease;
}
.quote-form-wrapper:hover {
  box-shadow: 0 15px 60px rgba(255, 107, 53, 0.12);
}
.form-header {
  text-align: center;
  margin-bottom: 50px;
  padding-bottom: 35px;
  border-bottom: 2px solid #f0f0f0;
}
.form-badge {
  display: inline-block;
  background: rgba(255, 107, 53, 0.1);
  color: #ff6b35;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
  border: 1px solid rgba(255, 107, 53, 0.2);
}
.form-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
  line-height: 1.3;
}
.form-header .highlight-word {
  color: #ff6b35;
}
.form-header p {
  font-size: 16px;
  color: #667085;
  line-height: 1.6;
}
.form-step {
  display: none;
}
.form-step.active {
  display: block;
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.step-header {
  margin-bottom: 35px;
  padding-bottom: 25px;
  border-bottom: 1px solid #e9ecef;
}
.step-number {
  display: inline-block;
  background: rgba(255, 107, 53, 0.1);
  color: #ff6b35;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.3px;
  border: 1px solid rgba(255, 107, 53, 0.2);
}
.step-header h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0;
  letter-spacing: -0.3px;
}
.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 20px;
}
.form-group {
  margin-bottom: 28px;
  position: relative;
}
.form-group label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 12px;
  letter-spacing: 0.2px;
}
.required {
  color: #ff6b35;
  font-size: 16px;
  margin-left: 2px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #e3e6eb;
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  color: #1a1a2e;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: #fafbfc;
  font-weight: 500;
}
.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
  color: #98a2b3;
  font-weight: 400;
}
.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: #cbd2dd;
  background: #fff;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff6b35;
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.12);
  background: #fff;
  transform: translateY(-1px);
}
.form-group textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}
.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 45px;
}
.form-group select:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ff6b35' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
}
.radio-group {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.radio-card {
  position: relative;
  cursor: pointer;
}
.radio-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.radio-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 28px 18px;
  background: #fafbfc;
  border: 2px solid #e3e6eb;
  border-radius: 14px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.radio-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff6b35, #ff8559);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.radio-content i {
  font-size: 32px;
  color: #7d8a9d;
  transition: all 0.3s ease;
}
.radio-content span {
  font-size: 14px;
  font-weight: 600;
  color: #475467;
  transition: color 0.3s ease;
}
.radio-card input[type="radio"]:checked + .radio-content {
  background: linear-gradient(135deg, #fff4ec 0%, #fffaf5 100%);
  border-color: #ff6b35;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.15);
}
.radio-card input[type="radio"]:checked + .radio-content::before {
  transform: scaleX(1);
}
.radio-card input[type="radio"]:checked + .radio-content i {
  color: #ff6b35;
  transform: scale(1.1);
}
.radio-card input[type="radio"]:checked + .radio-content span {
  color: #1a1a2e;
}
.radio-card:hover .radio-content {
  border-color: #ff9370;
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.12);
  background: #fff;
}
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.checkbox-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 16px;
  background: #fafbfc;
  border: 2px solid #e3e6eb;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 15px;
  color: #475467;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}
.checkbox-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(135deg, #ff6b35, #ff8559);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}
.checkbox-item input[type="checkbox"] {
  width: 22px;
  height: 22px;
  cursor: pointer;
  accent-color: #ff6b35;
  flex-shrink: 0;
}
.checkbox-item:hover {
  border-color: #ff9370;
  background: #fff;
  transform: translateX(3px);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.08);
}
.checkbox-item:has(input[type="checkbox"]:checked) {
  background: linear-gradient(135deg, #fff4ec 0%, #fffaf5 100%);
  border-color: #ff6b35;
  color: #1a1a2e;
}
.checkbox-item:has(input[type="checkbox"]:checked)::before {
  transform: scaleY(1);
}
.checkbox-item i {
  color: #ff6b35;
  font-size: 20px;
  flex-shrink: 0;
}
.checkbox-item span {
  display: flex;
  align-items: center;
  gap: 12px;
}
.terms-checkbox {
  background: linear-gradient(135deg, #fff4ec 0%, #fffaf5 100%);
  border-color: #ff9370;
  padding: 22px;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(255, 107, 53, 0.08);
}
.terms-checkbox::before {
  display: none;
}
.terms-checkbox span {
  color: #344054;
  font-size: 14px;
  line-height: 1.6;
}
.terms-checkbox a {
  color: #ff6b35;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
  border-bottom: 1px solid transparent;
}
.terms-checkbox a:hover {
  border-bottom-color: #ff6b35;
}
.form-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-top: 45px;
  padding-top: 0;
  border-top: none;
}
.btn-prev,
.btn-next,
.btn-submit {
  padding: 18px 38px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.3px;
}
.btn-prev {
  background: #f3f4f6;
  color: #374151;
  border: 2px solid #e5e7eb;
}
.btn-prev:hover {
  background: #e5e7eb;
  border-color: #d1d5db;
  transform: translateX(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.btn-prev i {
  transition: transform 0.3s ease;
}
.btn-prev:hover i {
  transform: translateX(-3px);
}
.btn-next,
.btn-submit {
  background: linear-gradient(135deg, #ff6b35 0%, #ff8559 100%);
  color: #fff;
  margin-left: auto;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.25);
}
.btn-next::before,
.btn-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}
.btn-next:hover::before,
.btn-submit:hover::before {
  left: 100%;
}
.btn-next:hover,
.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 107, 53, 0.35);
}
.btn-next i,
.btn-submit i {
  transition: transform 0.3s ease;
}
.btn-next:hover i {
  transform: translateX(3px);
}
.btn-submit:hover i {
  transform: translateX(3px) scale(1.1);
}
.form-progress {
  margin-top: 50px;
  padding: 35px 40px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 16px;
  border: 1px solid #e9ecef;
}
.progress-bar {
  height: 6px;
  background: #e9ecef;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 30px;
  position: relative;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #ff6b35 0%, #ff8559 50%, #ffa370 100%);
  border-radius: 20px;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.progress-fill::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: progressShine 2s infinite;
}
@keyframes progressShine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.progress-steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.progress-step {
  width: 52px;
  height: 52px;
  background: #fff;
  border: 3px solid #e9ecef;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 17px;
  color: #9ca3af;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}
.progress-step.active {
  background: linear-gradient(135deg, #ff6b35 0%, #ff8559 100%);
  border-color: #ff6b35;
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
}
.progress-step.active::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6b35, #ff8559);
  opacity: 0.15;
  filter: blur(12px);
  z-index: -1;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% {
    opacity: 0.15;
    transform: scale(1);
  }
  50% {
    opacity: 0.25;
    transform: scale(1.1);
  }
}
.quote-info-sidebar {
  position: sticky;
  top: 100px;
}
.info-card {
  background: #fff;
  border-radius: 20px;
  padding: 35px;
  margin-bottom: 30px;
  border: 1px solid #e9ecef;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}
.info-card:hover {
  border-color: rgba(255, 107, 53, 0.3);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.12);
  transform: translateY(-5px);
}
.info-card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ff6b35, #ff8559);
  border-radius: 18px;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 auto 25px;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.25);
  transition: all 0.3s ease;
  position: relative;
}
.info-card:hover .info-card-icon {
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.35);
}
.info-card-icon i {
  font-size: 32px;
  color: #fff !important;
  line-height: 70px;
  text-align: center;
  width: 70px;
  height: 70px;
  margin-bottom: 0 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.info-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 18px;
  text-align: center;
}
.info-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}
.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.info-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 15px;
  color: #555;
  font-weight: 500;
  transition: all 0.3s ease;
  line-height: 1.5;
}
.info-list li:hover {
  padding-left: 5px;
  color: #1a1a2e;
}
.info-list li:last-child {
  border-bottom: none;
}
.info-list li i {
  color: #ff6b35;
  font-size: 16px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  width: 36px;
  height: 36px;
  min-width: 36px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 8px;
  margin-bottom: 0 !important;
}
.info-list li:hover i {
  transform: scale(1.15);
}
.form-column-faq-section {
  margin-top: 60px;
  padding: 50px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
}
.faq-section-header {
  text-align: center;
  margin-bottom: 40px;
}
.faq-badge {
  display: inline-block;
  background: rgba(255, 107, 53, 0.1);
  color: #ff6b35;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
  border: 1px solid rgba(255, 107, 53, 0.2);
}
.faq-section-header h3 {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 12px;
  line-height: 1.3;
}
.faq-section-header .highlight-word {
  color: #ff6b35;
}
.faq-section-header p {
  font-size: 16px;
  color: #667085;
  margin: 0;
  line-height: 1.5;
}
.form-faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
/* Quote page FAQ wrapper - two column grid layout to match other pages */
.quote-faq-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.quote-faq-wrapper .faq-item {
  width: 100%;
}
@media (max-width: 768px) {
  .quote-faq-wrapper {
    grid-template-columns: 1fr;
  }
}
.form-faq-item {
  background: #fff;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.form-faq-item:hover {
  border-color: rgba(255, 107, 53, 0.3);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.08);
}
.form-faq-item.active {
  border-color: #ff6b35;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.12);
}
.form-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px;
  transition: all 0.3s ease;
}
.form-faq-question:hover {
  background: rgba(255, 107, 53, 0.02);
}
.form-faq-question h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a2e;
  margin: 0;
  flex: 1;
  line-height: 1.5;
}
.form-faq-item.active .form-faq-question h4 {
  color: #ff6b35;
}
.form-faq-toggle {
  width: 32px;
  height: 32px;
  background: #f8f9fa;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  border: 2px solid #e9ecef;
}
.form-faq-toggle i {
  color: #667085;
  font-size: 14px;
  transition: all 0.3s ease;
}
.form-faq-item.active .form-faq-toggle {
  background: linear-gradient(135deg, #ff6b35 0%, #ff8559 100%);
  border-color: #ff6b35;
}
.form-faq-item.active .form-faq-toggle i {
  color: #fff;
}
.form-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  padding: 0 24px;
}
.form-faq-item.active .form-faq-answer {
  max-height: 400px;
  padding: 0 24px 20px 24px;
}
.form-faq-answer p {
  font-size: 14px;
  color: #667085;
  line-height: 1.7;
  margin: 0;
}
.contact-card {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: #fff;
}
.contact-card .info-card-icon {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}
.contact-card h3 {
  color: #fff;
}
.contact-card p {
  color: rgba(255, 255, 255, 0.8);
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
}
.contact-detail-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}
.contact-detail-item i {
  font-size: 22px;
  color: #ff6b35;
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  min-width: 45px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: rgba(255, 107, 53, 0.15);
  border-radius: 12px;
  margin-bottom: 0 !important;
}
.contact-detail-item div span {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 5px;
}
.contact-detail-item div a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
}
.contact-detail-item div a:hover {
  color: #ff6b35;
}
.trust-card {
  background: linear-gradient(135deg, #e8f4f8 0%, #d4ebf2 100%);
  border-color: #0f3460;
}
.trust-badges {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 18px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
}
.trust-badge i {
  font-size: 22px;
  color: #0f3460;
  width: 45px;
  height: 45px;
  min-width: 45px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: rgba(15, 52, 96, 0.1);
  border-radius: 10px;
  margin-bottom: 0 !important;
}
.trust-badge span {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a2e;
}
.quote-faq-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}
.quote-faq-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}
.quote-faq-section .section-subtitle-badge {
  display: inline-block;
  background: rgba(255, 107, 53, 0.1);
  color: #ff6b35;
  padding: 6px 16px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 15px;
  border: 1px solid rgba(255, 107, 53, 0.2);
}
.quote-faq-section .section-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.3;
  margin: 0;
}
.quote-faq-section .faq-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.quote-faq-section .faq-item {
  background: #fff;
  border: 2px solid #e9ecef;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.quote-faq-section .faq-item:hover {
  border-color: rgba(255, 107, 53, 0.3);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.08);
  transform: translateY(-2px);
}
.quote-faq-section .faq-item.active {
  border-color: #ff6b35;
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.12);
}
.quote-faq-section .faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 32px;
  cursor: pointer;
  gap: 24px;
  transition: all 0.3s ease;
}
.quote-faq-section .faq-question:hover {
  background: rgba(255, 107, 53, 0.02);
}
.quote-faq-section .faq-question h3 {
  font-size: 17px;
  font-weight: 600;
  color: #1a1a2e;
  margin: 0;
  flex: 1;
  line-height: 1.5;
  letter-spacing: -0.2px;
}
.quote-faq-section .faq-item.active .faq-question h3 {
  color: #ff6b35;
}
.quote-faq-section .faq-toggle {
  width: 40px;
  height: 40px;
  background: #f8f9fa;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  border: 2px solid #e9ecef;
}
.quote-faq-section .faq-toggle i {
  color: #667085;
  font-size: 18px;
  transition: all 0.3s ease;
}
.quote-faq-section .faq-item.active .faq-toggle {
  background: linear-gradient(135deg, #ff6b35 0%, #ff8559 100%);
  border-color: #ff6b35;
  transform: rotate(90deg);
}
.quote-faq-section .faq-item.active .faq-toggle i {
  color: #fff;
}
.quote-faq-section .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  padding: 0 32px;
}
.quote-faq-section .faq-item.active .faq-answer {
  max-height: 600px;
  padding: 0 32px 28px 32px;
}
.quote-faq-section .faq-answer p {
  font-size: 15px;
  color: #667085;
  line-height: 1.8;
  margin: 0;
  font-weight: 400;
}
@media (max-width: 1200px) {
  .quote-form-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .quote-info-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
@media (max-width: 900px) {
  .quote-hero-content h1 {
    font-size: 36px;
  }
  .quote-hero-features {
    gap: 25px;
  }
  .quote-form-wrapper {
    padding: 35px 25px;
  }
  .form-header h2 {
    font-size: 28px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .radio-group {
    grid-template-columns: repeat(2, 1fr);
  }
  .checkbox-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .quote-info-sidebar {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .quote-hero-section {
    padding: 110px 0 50px 0;
  }
  .quote-hero-content h1 {
    font-size: 30px;
  }
  .quote-hero-desc {
    font-size: 16px;
  }
  .quote-hero-features {
    flex-direction: column;
    gap: 15px;
  }
  .quote-form-wrapper {
    padding: 25px 20px;
  }
  .form-header h2 {
    font-size: 24px;
  }
  .step-header h3 {
    font-size: 20px;
  }
  .radio-group {
    grid-template-columns: 1fr;
  }
  .checkbox-grid {
    grid-template-columns: 1fr;
  }
  .form-navigation {
    flex-direction: column;
  }
  .btn-prev,
  .btn-next,
  .btn-submit {
    width: 100%;
    justify-content: center;
  }
  .btn-next,
  .btn-submit {
    margin-left: 0;
  }
}
/* ==========================================================================
   Legal Pages Styles (Terms & Conditions, Privacy Policy)
   ========================================================================== */
.legal-hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 130px 0 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.legal-hero .container {
  position: relative;
  z-index: 2;
}
.legal-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 25px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  flex-wrap: wrap;
}
.legal-breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}
.legal-breadcrumb a:hover {
  color: #fff;
}
.legal-breadcrumb a i {
  font-size: 12px;
}
.legal-breadcrumb > span {
  display: inline-flex;
  align-items: center;
}
.legal-breadcrumb > span i {
  font-size: 10px;
  opacity: 0.7;
}
.legal-hero h1 {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 15px;
  line-height: 1.2;
}
.legal-update {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
}
.legal-content-section {
  padding: 80px 0;
  background: #fff;
}
.legal-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}
.legal-intro {
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  padding: 30px;
  border-radius: 12px;
  border-left: 5px solid #f97316;
  margin-bottom: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.legal-intro p {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
  margin: 0;
}
.legal-toc {
  background: #fff;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 50px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.legal-toc h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.legal-toc h3 i {
  color: #f97316;
  font-size: 18px;
}
.legal-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: 30px;
}
.legal-toc li {
  margin-bottom: 12px;
  break-inside: avoid;
}
.legal-toc a {
  color: #f97316;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-block;
}
.legal-toc a:hover {
  color: #ea580c;
  text-decoration: underline;
  transform: translateX(5px);
}
@media (max-width: 600px) {
  .legal-toc ul {
    columns: 1;
  }
}
.legal-section {
  margin-bottom: 50px;
  padding-bottom: 40px;
  border-bottom: 2px solid #e9ecef;
  scroll-margin-top: 100px;
}
.legal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.legal-section:last-of-type {
  border-bottom: none;
}
.legal-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 20px;
  padding-top: 20px;
  position: relative;
}
.legal-section h3 {
  font-size: 22px;
  font-weight: 600;
  color: #1a1a2e;
  margin: 25px 0 15px 0;
}
.legal-section p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}
.legal-section ul {
  margin: 20px 0 20px 30px;
  list-style: disc;
  padding-left: 20px;
}
.legal-section li {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 12px;
  list-style-type: disc;
}
.legal-section li::marker {
  color: #f97316;
}
.legal-section strong {
  color: #1a1a2e;
  font-weight: 600;
}
.contact-info-box {
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 25px 30px;
  margin-top: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.contact-info-box p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}
.contact-info-box p:last-child {
  margin-bottom: 0;
}
.contact-info-box p strong {
  color: #1a1a2e;
  font-size: 18px;
  display: block;
  margin-bottom: 5px;
}
.contact-info-box a {
  color: #f97316;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}
.contact-info-box a:hover {
  color: #ea580c;
  text-decoration: underline;
}
.legal-agreement {
  background: linear-gradient(135deg, #fff4e6 0%, #ffe5cc 100%);
  border: 2px solid #f97316;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  margin-top: 50px;
}
.legal-agreement p {
  font-size: 17px;
  color: #1a1a2e;
  margin: 0;
}
@media (max-width: 900px) {
  .legal-hero h1 {
    font-size: 36px;
  }
  .legal-section h2 {
    font-size: 28px;
  }
  .legal-section h3 {
    font-size: 20px;
  }
}
@media (max-width: 600px) {
  .legal-hero {
    padding: 110px 0 50px 0;
  }
  .legal-hero h1 {
    font-size: 30px;
  }
  .legal-intro,
  .legal-toc,
  .contact-info-box,
  .legal-agreement {
    padding: 20px;
  }
  .legal-section h2 {
    font-size: 24px;
  }
}
.error-404-section {
  min-height: 100vh;
  padding: 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.error-404-section::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: -100px;
  left: -100px;
}
.error-404-section::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  bottom: -80px;
  right: -80px;
}
.error-404-card {
  background: #fff;
  border-radius: 20px;
  padding: 60px 50px;
  max-width: 500px;
  width: 90%;
  margin: 20px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}
.error-404-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  background: linear-gradient(135deg, #ff7e5f, #feb47b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(255, 126, 95, 0.3);
  position: relative;
  animation: pulse 2s ease-in-out infinite;
}
.error-404-icon::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255, 126, 95, 0.3);
  animation: ripple 2s ease-out infinite;
}
.error-404-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255, 126, 95, 0.2);
  animation: ripple 2s ease-out infinite 1s;
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
.error-404-icon i {
  font-size: 40px;
  color: #fff;
  position: relative;
  z-index: 1;
}
.error-404-title {
  font-size: 80px;
  font-weight: 800;
  color: #ff7e5f;
  margin-bottom: 15px;
  line-height: 1;
}
.error-404-subtitle {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}
.error-404-text {
  font-size: 15px;
  color: #666;
  margin-bottom: 35px;
  line-height: 1.7;
}
.error-404-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 35px;
  flex-wrap: wrap;
}
.error-btn-primary, .error-btn-secondary {
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}
.error-btn-primary {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  border: none;
}
.error-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}
.error-btn-secondary {
  background: #fff;
  color: #667eea;
  border: 2px solid #667eea;
}
.error-btn-secondary:hover {
  background: #f8f9ff;
  transform: translateY(-2px);
}
.error-reasons {
  background: #fff9e6;
  border: 1px solid #ffe4a3;
  border-radius: 12px;
  padding: 20px;
  text-align: left;
  margin-top: 25px;
}
.reasons-icon {
  display: inline-block;
  margin-right: 8px;
  color: #f59e0b;
  font-size: 16px;
}
.error-reasons strong {
  color: #92400e;
  font-size: 14px;
  display: block;
  margin-bottom: 12px;
}
.error-reasons ul {
  margin: 0;
  padding-left: 20px;
  list-style: none;
}
.error-reasons ul li {
  font-size: 13px;
  color: #78350f;
  margin-bottom: 6px;
  position: relative;
  padding-left: 8px;
}
.error-reasons ul li::before {
  content: '•';
  position: absolute;
  left: -8px;
  color: #f59e0b;
}
@media (max-width: 768px) {
  .error-404-card {
    padding: 40px 30px;
  }
  .error-404-title {
    font-size: 60px;
  }
  .error-404-subtitle {
    font-size: 20px;
  }
  .error-404-text {
    font-size: 14px;
  }
  .error-404-actions {
    flex-direction: column;
  }
  .error-btn-primary, .error-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}
.areas-intro-section {
  padding: 100px 0;
  background: #f8f9fa;
  position: relative;
  overflow: hidden;
}
.areas-intro-section::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}
.areas-intro-section::after {
  content: '';
  position: absolute;
  bottom: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 133, 89, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}
.areas-intro-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.areas-intro-content h2 {
  font-size: 42px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 25px;
  letter-spacing: -0.5px;
}
.areas-intro-content p {
  font-size: 18px;
  line-height: 1.9;
  color: #6c757d;
  margin-bottom: 60px;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}
.areas-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.stat-item {
  text-align: center;
  padding: 45px 35px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid #e9ecef;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff6b35, #ff8559);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.stat-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.15);
  border-color: rgba(255, 107, 53, 0.2);
}
.stat-item:hover::before {
  transform: scaleX(1);
}
.stat-item i {
  font-size: 55px;
  color: #ff6b35;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
  width: 100%;
}
.stat-item:hover i {
  transform: scale(1.1);
  color: #ff8559;
}
.stat-item h3 {
  font-size: 52px;
  font-weight: 900;
  color: #1a1a2e;
  margin: 0 0 15px 0;
  line-height: 1;
  position: relative;
  z-index: 1;
  letter-spacing: -1px;
  width: 100%;
  text-align: center;
}
.stat-item p {
  font-size: 16px;
  color: #6c757d;
  margin: 0;
  font-weight: 600;
  position: relative;
  z-index: 1;
  width: 100%;
  text-align: center;
}
.service-areas-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-top: 50px;
}
.area-card-main {
  grid-column: span 1;
  background: #fff;
  border-radius: 24px;
  padding: 45px 40px;
  border: 1px solid #e9ecef;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.area-card-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #ff6b35, #ff8559, #ffa370);
  border-radius: 24px 24px 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.area-card-main::after {
  content: '';
  position: absolute;
  top: -100%;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  transition: all 0.5s ease;
}
.area-card-main:hover::before {
  transform: scaleX(1);
}
.area-card-main:hover::after {
  top: -50px;
  right: -50px;
}
.area-card-main:hover {
  border-color: rgba(255, 107, 53, 0.3);
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(255, 107, 53, 0.18);
}
.area-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8559 50%, #ffa370 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
}
.area-icon::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 20px;
  background: linear-gradient(135deg, #ff6b35, #ff8559);
  opacity: 0;
  filter: blur(15px);
  transition: opacity 0.5s ease;
  z-index: -1;
}
.area-card-main:hover .area-icon {
  transform: scale(1.1) rotate(-3deg);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.45);
}
.area-card-main:hover .area-icon::before {
  opacity: 0.6;
}
.area-icon i {
  font-size: 38px;
  color: #fff;
}
.area-card-main h3 {
  font-size: 30px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
  letter-spacing: -0.5px;
}
.area-card-main p {
  font-size: 16px;
  color: #6c757d;
  line-height: 1.8;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}
.area-locations {
  list-style: none;
  padding: 0;
  margin: 0 0 35px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  position: relative;
  z-index: 2;
  flex-grow: 1;
}
.area-locations li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #495057;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
  font-weight: 500;
}
.area-locations li:last-child,
.area-locations li:nth-last-child(2):nth-child(odd) {
  border-bottom: none;
}
.area-locations li:hover {
  color: #ff6b35;
  padding-left: 5px;
}
.area-locations li i {
  color: #ff6b35;
  font-size: 14px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.area-locations li:hover i {
  transform: scale(1.2);
}
.area-card-secondary {
  background: #fff;
  border-radius: 20px;
  padding: 40px 35px;
  border: 1px solid #e9ecef;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}
.area-card-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff6b35, #ff8559);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.area-card-secondary:hover::before {
  transform: scaleX(1);
}
.area-card-secondary:hover {
  border-color: rgba(255, 107, 53, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(255, 107, 53, 0.15);
}
.area-card-secondary .area-icon {
  width: 70px;
  height: 70px;
  margin: 0 0 25px 0;
  background: linear-gradient(135deg, #ff6b35, #ff8559);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.25);
  transition: all 0.4s ease;
}
.area-card-secondary:hover .area-icon {
  transform: scale(1.08) rotate(-5deg);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.35);
}
.area-card-secondary .area-icon i {
  font-size: 32px;
  color: #fff;
}
.area-card-secondary h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 15px;
  line-height: 1.3;
}
.area-card-secondary p {
  font-size: 15px;
  color: #666;
  margin-bottom: 25px;
  line-height: 1.6;
}
.area-locations-compact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.area-locations-compact li {
  background: #f8f9fa;
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 14px;
  color: #555;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
  cursor: pointer;
}
.area-locations-compact li:hover {
  background: linear-gradient(135deg, #ff6b35, #ff8559);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
  border-color: transparent;
}
.inter-emirate-section {
  padding: 80px 0;
  background: #f8f9fa;
}
.inter-emirate-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}
.inter-emirate-section .section-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 15px;
}
.inter-emirate-section .section-header p {
  font-size: 17px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}
.inter-routes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}
.route-card {
  text-align: center;
  padding: 50px 30px;
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 15px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.route-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: #ff6b35;
}
.route-card i {
  font-size: 55px;
  color: #ff6b35;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  width: 100%;
}
.route-card:hover i {
  transform: scale(1.15);
  color: #ff8559;
}
.route-card h4 {
  font-size: 19px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 12px;
  line-height: 1.4;
  text-align: center;
  width: 100%;
}
.route-card p {
  font-size: 14px;
  color: #777;
  margin: 0;
  line-height: 1.6;
  text-align: center;
  width: 100%;
}
.areas-cta-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  text-align: center;
  overflow: hidden;
}
.areas-cta-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.areas-cta-content h2 {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
}
.areas-cta-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.cta-btn-primary, .cta-btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 22px 50px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 100%;
}
.cta-btn-primary {
  background: linear-gradient(135deg, #ff6b35, #ff8559);
  color: #fff;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.35);
  border: none;
}
.cta-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
  background: linear-gradient(135deg, #ff7e4d, #ff9368);
}
.cta-btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  transform: translateY(-3px);
}
@media (max-width: 1200px) {
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .areas-stats {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .areas-grid {
    grid-template-columns: 1fr;
  }
  .area-locations {
    grid-template-columns: 1fr;
  }
  .inter-routes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .areas-cta-content h2 {
    font-size: 32px;
  }
  .cta-buttons {
    flex-direction: column;
  }
  .cta-btn-primary, .cta-btn-secondary {
    width: 100%;
    justify-content: center;
  }
  .inter-routes-grid {
    grid-template-columns: 1fr;
  }
}
.faq-main-section {
  padding: 80px 0;
  background: #fff;
}
.faq-categories {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.faq-cat-btn {
  padding: 12px 28px;
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 600;
  color: #555;
  cursor: pointer;
  transition: all 0.3s ease;
}
.faq-cat-btn:hover {
  background: #fff;
  border-color: #ff6b35;
  color: #ff6b35;
}
.faq-cat-btn.active {
  background: #ff6b35;
  border-color: #ff6b35;
  color: #fff;
}
.faq-content-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}
.faq-category-section {
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 2px solid #e9ecef;
}
.faq-category-section:last-child {
  border-bottom: none;
}
.faq-category-section h2 {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 28px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 30px;
}
.faq-category-section h2 i {
  color: #ff6b35;
  font-size: 32px;
}
.faq-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}
.faq-cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.faq-cta-content h2 {
  font-size: 38px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 15px;
}
.faq-cta-content p {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
}
.faq-contact-options {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.faq-contact-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  background: #fff;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  text-decoration: none;
  color: #1a1a2e;
  font-weight: 600;
  transition: all 0.3s ease;
}
.faq-contact-btn:hover {
  border-color: #ff6b35;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.faq-contact-btn i {
  font-size: 24px;
  color: #ff6b35;
}
@media (max-width: 900px) {
  .faq-categories {
    gap: 10px;
  }
  .faq-cat-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
  .faq-category-section h2 {
    font-size: 24px;
  }
}
@media (max-width: 600px) {
  .faq-contact-options {
    flex-direction: column;
  }
  .faq-contact-btn {
    width: 100%;
    justify-content: center;
  }
  .faq-cta-content h2 {
    font-size: 30px;
  }
}
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a1628 0%, #1a2940 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}
.loader-content {
  text-align: center;
  position: relative;
}
.loader-logo {
  margin-bottom: 30px;
  animation: logoFloat 2s ease-in-out infinite;
}
.loader-logo img {
  width: 180px;
  height: auto;
  filter: brightness(0) invert(1);
}
@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}
.loader-spinner {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
}
.loader-spinner::before,
.loader-spinner::after {
  content: '';
  position: absolute;
  border-radius: 50%;
}
.loader-spinner::before {
  width: 80px;
  height: 80px;
  border: 4px solid rgba(255, 107, 53, 0.2);
}
.loader-spinner::after {
  width: 80px;
  height: 80px;
  border: 4px solid transparent;
  border-top-color: #ff6b35;
  border-right-color: #ff6b35;
  animation: spin 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loader-truck {
  font-size: 28px;
  color: #ff6b35;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: truckMove 1s ease-in-out infinite;
}
@keyframes truckMove {
  0%, 100% {
    transform: translate(-50%, -50%) translateX(-3px);
  }
  50% {
    transform: translate(-50%, -50%) translateX(3px);
  }
}
.loader-text {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  letter-spacing: 1px;
  margin-top: 15px;
}
.loader-dots {
  display: inline-block;
  width: 40px;
  text-align: left;
}
.loader-dots::after {
  content: '';
  animation: dots 1.5s steps(4, end) infinite;
}
@keyframes dots {
  0%, 20% {
    content: '';
  }
  40% {
    content: '.';
  }
  60% {
    content: '..';
  }
  80%, 100% {
    content: '...';
  }
}
.loader-progress {
  width: 200px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  margin: 20px auto 0;
  overflow: hidden;
  position: relative;
}
.loader-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #ff6b35, #ff8559, #ffa370);
  border-radius: 10px;
  width: 0%;
  animation: progressLoad 2s ease-in-out forwards;
  box-shadow: 0 0 15px rgba(255, 107, 53, 0.5);
}
@keyframes progressLoad {
  0% {
    width: 0%;
  }
  50% {
    width: 70%;
  }
  100% {
    width: 100%;
  }
}
.back-to-top {
  position: fixed;
  bottom: 110px;
  right: 25px;
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #ff6b35, #ff8559);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(255, 107, 53, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10000;
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.6);
  background: linear-gradient(135deg, #ff7e4d, #ff9368);
}
.back-to-top:active {
  transform: translateY(-2px);
}
.back-to-top i {
  animation: arrowBounce 1.5s ease-in-out infinite;
}
@keyframes arrowBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}
@media (max-width: 768px) {
  .back-to-top {
    bottom: 95px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}
.area-cta i {
  display: none !important;
}

/* ===================================
   BREADCRUMBS
   =================================== */

/* Default Breadcrumb Style (Inner Pages) */
.innerpage-breadcrumb {
  display: inline-flex;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 50px;
  backdrop-filter: blur(5px);
  animation: fadeInUp 1.6s ease;
}

.innerpage-breadcrumb a {
  color: var(--text-light, rgba(255, 255, 255, 0.9));
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s;
  margin: 0;
}

.innerpage-breadcrumb a:hover {
  color: var(--primary, #EF5027);
}

.innerpage-breadcrumb span {
  color: var(--primary, #EF5027);
  font-weight: 500;
  font-size: 15px;
}

/* Service Page Breadcrumb Style */
.service-breadcrumb {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-bottom: 20px;
  font-weight: 400;
}

.service-breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.service-breadcrumb a:hover {
  color: #fff;
}

/* Legal Page Breadcrumb Style */
.legal-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 25px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.legal-breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-breadcrumb a:hover {
  color: #fff;
}

/* Breadcrumb Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .innerpage-breadcrumb {
    font-size: 13px;
    padding: 8px 16px;
    gap: 8px;
  }
  
  .innerpage-breadcrumb a,
  .innerpage-breadcrumb span {
    font-size: 13px;
  }
  
  .service-breadcrumb,
  .legal-breadcrumb {
    font-size: 12px;
  }
}
