:root {
  --color-primary: #DAAE56;
  --color-primary-light: #f0be59;
  --color-primary-gradient-end: #c58f24;
  --color-primary-50: #faf5ff;
  --color-primary-700: #ff9d00;
  --color-dark: #0E121A;
  --color-gray-900: #111827;
  --color-gray-700: #374151;
  --color-gray-600: #4b5563;
  --color-gray-300: #d1d5db;
  --color-gray-50: #f9fafb;
  --color-white: #ffffff;
  --color-about-bg: #fdf2e9;
  --color-accent-yellow: #f6b750;
  --color-accent-yellow-light: #fde7c2;
  --color-card-backdrop: rgba(32, 89, 124, 0.08);
  --color-coffee: #DAAE56;
  --color-coffee-hover: #ffb41d;
  --color-coffee-text: #ffffff;
}

@import url('https://fonts.googleapis.com/css2?family=Epilogue:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&display=swap');

.custom-btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background: var(--color-primary);
  font-family: "Montserrat", sans-serif;
  box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  cursor: pointer;
  border: none;
  text-decoration: none;
  width: 100%;
  max-width: 100%;
}

@media (min-width: 640px) {
  .custom-btn {
    width: auto;
  }
}

.custom-btn:after {
  content: " ";
  width: 0%;
  height: 100%;
  background: #fff;
  position: absolute;
  transition: all 0.4s ease-in-out;
  right: 0;
}

.custom-btn:hover::after {
  right: auto;
  left: 0;
  width: 100%;
}

.custom-btn span {
  text-align: center;
  text-decoration: none;
  width: 100%;
  padding: 15px 15px;
  color: #fff;
  font-size: 1.1em;
  font-weight: 700;
  letter-spacing: 0.3em;
  z-index: 20;
  transition: all 0.3s ease-in-out;
  position: relative;
}

@media (max-width: 640px) {
  .custom-btn span {
    padding: 12px 20px;
    font-size: 0.9em;
    letter-spacing: 0.2em;
  }
}

.custom-btn:hover span {
  color: var(--color-primary);
  animation: scaleUp 0.3s ease-in-out;
}

.custom-btn.btn-secondary-white {
  background: transparent;
  border: 2px solid #fff;
  box-shadow: none;
}

.custom-btn.btn-secondary-white span {
  color: #fff;
}

.custom-btn.btn-secondary-white:after {
  background: #fff;
}

.custom-btn.btn-secondary-white:hover span {
  color: var(--color-primary);
}

.custom-btn.btn-secondary-about {
  background: transparent;
  border: 2px solid var(--color-gray-700);
  box-shadow: none;
}

.custom-btn.btn-secondary-about span {
  color: var(--color-gray-700);
}

.custom-btn.btn-secondary-about:after {
  background: var(--color-gray-700);
}

.custom-btn.btn-secondary-about:hover span {
  color: var(--color-white);
}

@keyframes scaleUp {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}

/* Body and Typography */
body {
  font-family: 'Lato', sans-serif;
}

h1, h2, h3, h4, h5, h6,
.heading-primary,
.heading-about,
.heading-secondary {
  font-family: 'Inter', sans-serif;
}

/* Text Selection */
::selection {
  background-color: var(--color-primary);
  color: var(--color-white);
}

::-moz-selection {
  background-color: var(--color-primary);
  color: var(--color-white);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: var(--color-gray-50);
}

::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 6px;
  border: 2px solid var(--color-gray-50);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary-700);
}

/* Firefox Scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--color-primary) var(--color-gray-50);
}

/* Header Styles */
header {
  transition: transform 0.3s ease-in-out;
}

/* Navigation Links */
.nav-link {
  position: relative;
  padding: 8px 12px;
  padding-bottom: 6px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 6px;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  border-radius: 2px 2px 0 0;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::before {
  width: calc(100% - 24px);
}

.nav-link:hover {
  color: var(--color-primary);
  background-color: rgba(218, 174, 86, 0.08);
  transform: translateY(-1px);
}

.nav-link.active {
  color: var(--color-primary);
  font-weight: 600;
  background-color: rgba(218, 174, 86, 0.1);
}

.nav-link.active::before {
  width: calc(100% - 24px);
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
}

/* Dropdown Links */
.dropdown-link {
  color: var(--color-gray-700);
  position: relative;
  transition: all 0.25s ease;
  border-radius: 6px;
  margin: 2px 8px;
}

.dropdown-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, var(--color-primary), var(--color-primary-light));
  border-radius: 0 2px 2px 0;
  transition: height 0.3s ease;
}

.dropdown-link:hover {
  background-color: rgba(218, 174, 86, 0.1);
  color: var(--color-primary);
  padding-left: 20px;
  transform: translateX(4px);
}

.dropdown-link:hover::before {
  height: 60%;
}

/* Dropdown Menu Container */
.group:hover ul {
  animation: slideDownFade 0.3s ease-out;
}

@keyframes slideDownFade {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* Services Dropdown Arrow Animation */
.group .fa-chevron-down {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.group:hover .fa-chevron-down {
  transform: rotate(180deg);
}

/* Enhanced Navigation Spacing */
nav ul {
  gap: 4px;
}

nav ul li {
  position: relative;
}

header.hide-navbar {
  transform: translateY(-100%);
}

/* Mobile Menu Toggle Button */
#mobile-menu-toggle {
  position: relative;
  z-index: 60 !important;
  pointer-events: auto !important;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer !important;
  touch-action: manipulation;
}

#mobile-menu-toggle:focus {
  outline: 2px solid var(--color-primary-light);
  outline-offset: 2px;
}

/* Mobile Menu Overlay */
#mobile-menu-overlay.hidden {
  display: none !important;
}

#mobile-menu-overlay:not(.hidden) {
  display: block !important;
  animation: fadeIn 0.3s ease-in-out;
}

#mobile-menu-overlay .absolute.top-4 {
  animation: slideDown 0.3s ease-in-out;
}

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

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

/* Prevent body scroll when menu is open */
body.menu-open {
  overflow: hidden;
}

/* Hero Section Slider */
.hero-slider-section {
  margin-top: 0;
  padding-top: 0;
  position: relative;
  z-index: 1;
}

/* Header overlay on hero */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
}

.hero-slide {
  will-change: opacity;
}

.hero-slide.active {
  opacity: 1 !important;
  z-index: 1;
}

.hero-slide:not(.active) {
  opacity: 0;
  z-index: 0;
}

.hero-slider-dot {
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.hero-slider-dot:hover {
  transform: scale(1.2);
  background-color: rgba(255, 255, 255, 0.8) !important;
}

.hero-slider-dot.active {
  background-color: rgba(255, 255, 255, 1) !important;
  width: 2rem;
  border-color: rgba(255, 255, 255, 0.8);
}

.hero-slider-prev,
.hero-slider-next {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.hero-slider-prev:hover,
.hero-slider-next:hover {
  transform: translateY(-50%) scale(1.15);
  background-color: rgba(255, 255, 255, 0.25) !important;
}

.hero-slider-prev:active,
.hero-slider-next:active {
  transform: translateY(-50%) scale(1.05);
}

/* Responsive adjustments for navigation buttons */
@media (max-width: 768px) {
  .hero-slider-prev,
  .hero-slider-next {
    width: 48px;
    height: 48px;
    padding: 0.75rem;
  }
  
  .hero-slider-prev {
    left: 1rem;
  }
  
  .hero-slider-next {
    right: 1rem;
  }
}

/* Hero Section (fallback) */
.hero-section {
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary-gradient-end) 100%);
  margin-top: -5.5rem;
  padding-top: 5.5rem;
}

/* About Section */
.section-about {
  background-color: var(--color-white);
}

.about-container {
  max-width: 130rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 0 9.6rem;
}

.about-img-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  position: relative;
  overflow: visible;
}

.about-img-main-wrapper {
  width: 100%;
  margin-bottom: 1.5rem;
}

.about-img-collage {
  width: 100%;
  max-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  position: relative;
  margin-top: 1rem;
}

.about-collage-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
}

.about-collage-left {
  transform: translateY(-1.5rem);
  z-index: 2;
}

.about-collage-right {
  transform: translateY(1.5rem);
  z-index: 1;
}

.about-collage-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
}

@media (min-width: 768px) {
  .about-collage-img {
    height: 220px;
  }
}

@media (min-width: 1024px) {
  .about-collage-img {
    height: 240px;
  }
}

.about-collage-img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .about-img-collage {
    gap: 0.75rem;
  }
  
  .about-collage-left {
    transform: translateY(0);
  }
  
  .about-collage-right {
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 4.8rem;
  }
  
  .about-img-box {
    grid-row: 1;
  }
}

.heading-about {
  color: var(--color-gray-900);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.05;
  margin-bottom: 2.4rem;
}

.about-description {
  line-height: 1.7;
  color: var(--color-gray-600);
  margin-bottom: 1.6rem;
}

.about-text-box {
  padding-right: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

@media (max-width: 1024px) {
  .about-text-box {
    padding-right: 0;
  }
}

/* Creative Cards Section */
/* Services Section */
.section-services {
  font-family: "Lato", sans-serif;
  background-color: #ffffff;
  color: #000000;
  padding-top: 115px;
  padding-bottom: 120px;
}

.section-services .header-section {
  margin-bottom: 50px;
}

.section-services .header-section .title {
  position: relative;
  padding-bottom: 14px;
  margin-bottom: 25px;
  font-weight: 700;
  font-size: 32px;
  font-family: "Inter", sans-serif;
  color: #000000;
}

.section-services .header-section .title:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: #000000;
  border-radius: 3px;
}

.section-services .header-section .title:after {
  /* content: ""; */
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(30px);
  width: 10px;
  height: 3px;
  background-color: #333333;
  border-radius: 3px;
}

.section-services .header-section .description {
  font-size: 16px;
  color: #666666;
  line-height: 1.6;
}

.section-services .single-service {
  position: relative;
  margin-top: 30px;
  margin-bottom: 30px;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 40px 30px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
}

.section-services .single-service .service-hover-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  overflow: hidden;
}

.section-services .single-service .service-hover-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 2;
}

.section-services .single-service .service-hover-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.1);
  transition: transform 0.5s ease;
}

.section-services .single-service:hover .service-hover-image {
  opacity: 1;
}

.section-services .single-service:hover .service-hover-image img {
  transform: scale(1);
}

.section-services .single-service:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  background-color: #000000;
  border-color: #000000;
}

.section-services .single-service .content {
  position: relative;
  z-index: 30;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section-services .single-service .circle-before {
  position: absolute;
  top: 0;
  right: 0px;
  transform: translate(40%, -40%);
  width: 150px;
  height: 150px;
  background-color: #f0f0f0;
  border: 2px solid #000000;
  border-radius: 50%;
  opacity: 0.5;
  z-index: 25;
  transition: all 0.6s;
}

.section-services .single-service:hover .circle-before {
  width: 100%;
  height: 100%;
  transform: none;
  border: 0;
  border-radius: 0;
  opacity: 0;
  background-color: #000000;
}

.section-services .single-service .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  width: 70px;
  height: 70px;
  background-color: #000000;
  border-radius: 5px;
  transition: all 0.3s;
  overflow: hidden;
}

.section-services .single-service .icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

.section-services .single-service:hover .icon {
  background-color: #ffffff;
  transform: scale(1.05);
  border: 2px solid #ffffff;
}

.section-services .single-service:hover .icon img {
  filter: brightness(0) invert(0);
  transform: scale(1.1);
}

.section-services .single-service .title {
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 23px;
  font-family: "Inter", sans-serif;
  color: #000000;
  transition: color 0.3s;
  line-height: 1.3;
}

.section-services .single-service:hover .title {
  color: #ffffff;
}

.section-services .single-service .description {
  margin-bottom: 24px;
  font-size: 14px;
  color: #666666;
  line-height: 1.6;
  transition: color 0.3s;
  flex: 1;
}

.section-services .single-service:hover .description {
  color: #ffffff;
}

.section-services .single-service .learn-more {
  display: inline-block;
  padding: 12px 28px;
  background-color: #000000;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid #000000;
  align-self: flex-start;
  margin-top: auto;
}

.section-services .single-service .learn-more:hover {
  background-color: #333333;
  border-color: #333333;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.section-services .single-service:hover .learn-more {
  background-color: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.section-services .single-service:hover .learn-more:hover {
  background-color: #cccccc;
  color: #000000;
  border-color: #ffffff;
}

/* Bootstrap Grid Utilities for Services Section */
.section-services .container {
  max-width: 1200px;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.section-services .row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
  justify-content: center;
  gap: 0;
}

.section-services .row.justify-content-center {
  justify-content: center;
}

.section-services .row.text-center {
  text-align: center;
}

.section-services [class*="col-"] {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  display: flex;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .section-services .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .section-services .col-md-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
}

@media (min-width: 992px) {
  .section-services .col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .section-services .col-lg-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
}

/* Center and equalize card sizes for services row */
.section-services .row:not(.justify-content-center) {
  justify-content: center;
  align-items: stretch;
  gap: 20px;
}

.section-services .row:not(.justify-content-center) [class*="col-"] {
  display: flex;
  width: 100%;
  max-width: 350px;
  flex: 0 0 auto;
  padding-right: 0;
  padding-left: 0;
}

@media (min-width: 768px) {
  .section-services .row:not(.justify-content-center) .col-md-6 {
    max-width: 350px;
    flex: 0 0 auto;
    width: auto;
  }
}

@media (min-width: 992px) {
  .section-services .row:not(.justify-content-center) .col-lg-4 {
    max-width: 350px;
    flex: 0 0 auto;
    width: auto;
  }
}

/* Buy Me a Coffee Button */
.coffee-button {
  position: fixed;
  z-index: 9;
  top: 20px;
  right: 20px;
  background-color: var(--color-coffee);
  color: var(--color-coffee-text);
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-family: "Dancing Script", cursive;
  font-weight: 600;
  font-size: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.3s;
}

.coffee-button:hover {
  background-color: var(--color-coffee-hover);
}

.coffee-icon {
  font-size: 24px;
  line-height: 1;
}


/* Delivered Meals / Stats Section */
.delivered-meals {
  /* display: flex; */
  align-items: center;
  gap: 2.4rem;
  /* margin-top: 4.8rem; */
  padding-top: 1.2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  flex-wrap: nowrap;
}

.delivered-imgs {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.delivered-img {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  margin-right: -1.2rem;
  border: 3px solid var(--color-about-bg);
  object-fit: cover;
}

.delivered-img:last-child {
  margin-right: 0;
}

.delivered-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  color: var(--color-gray-900);
  font-weight: 600;
  margin-left: 0.5rem;
}

.delivered-text-line-1 {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--color-gray-900);
  line-height: 1.2;
}

.delivered-text-line-2 {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-gray-700);
  line-height: 1.2;
}

.delivered-text-line-3 {
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--color-gray-900);
  line-height: 1.2;
}

.about-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .delivered-meals {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
  }
  
  .delivered-text-line-1 {
    font-size: 1.7rem;
  }
  
  .delivered-text-line-2 {
    font-size: 1.4rem;
  }
  
  .delivered-text-line-3 {
    font-size: 1.5rem;
  }
  
  .delivered-text {
    margin-left: 0;
  }
}

/* Utility Classes */
.font-inter {
  font-family: "Inter", sans-serif;
}

.text-primary {
  color: var(--color-primary);
}

.bg-primary-50 {
  background-color: rgba(32, 89, 124, 0.1);
}

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

/* Why Choose Section */
.section-why-choose {
  background-color: var(--color-white);
}

.why-choose-container {
  max-width: 1200px;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .why-choose-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
  }
  
  .why-choose-grid::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: var(--color-gray-300);
    transform: translateX(-50%);
  }
}

.why-choose-left {
  padding-right: 0;
}

@media (min-width: 1024px) {
  .why-choose-left {
    padding-right: 2rem;
  }
}

.why-choose-context {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.why-choose-title {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .why-choose-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .why-choose-title {
    font-size: 3.5rem;
  }
}

.why-choose-description {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--color-gray-600);
  margin-bottom: 2rem;
}

.why-choose-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .why-choose-cta {
    flex-direction: row;
  }
}

.why-choose-link {
  display: inline-flex;
  align-items: center;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.why-choose-link:hover {
  color: var(--color-primary-700);
}

.why-choose-link i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.why-choose-link:hover i {
  transform: translateX(4px);
}

.why-choose-right {
  padding-left: 0;
}

@media (min-width: 1024px) {
  .why-choose-right {
    padding-left: 2rem;
  }
}

.why-choose-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.why-choose-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.why-choose-icon-wrapper {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
}

.why-choose-icon {
  width: 60px;
  height: 60px;
  border: 2px solid var(--color-accent-yellow);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(246, 183, 80, 0.1);
  position: relative;
  transition: all 0.3s ease;
}

.why-choose-icon i {
  font-size: 24px;
  color: var(--color-primary);
  z-index: 1;
  position: relative;
}

.why-choose-feature:hover .why-choose-icon {
  background-color: var(--color-accent-yellow);
  transform: scale(1.05);
}

.why-choose-feature:hover .why-choose-icon i {
  color: var(--color-white);
}

.why-choose-content {
  flex: 1;
}

.why-choose-feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.why-choose-feature-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-gray-600);
}

.why-choose-feature-desc span {
  color: var(--color-primary);
  font-weight: 600;
}

/* FAQ Section */
.section-faq {
  background-color: var(--color-white);
}

.faq-container {
  max-width: 1200px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .faq-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.faq-left {
  padding-right: 0;
}

@media (min-width: 1024px) {
  .faq-left {
    padding-right: 2rem;
    position: sticky;
    top: 2rem;
    align-self: start;
  }
}

.faq-title {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--color-gray-900);
}

@media (min-width: 768px) {
  .faq-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .faq-title {
    font-size: 3.5rem;
  }
}

.faq-description {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--color-gray-600);
}

.faq-right {
  padding-left: 0;
}

@media (min-width: 1024px) {
  .faq-right {
    padding-left: 2rem;
  }
}

.faq-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  width: 100%;
}

.faq-question {
  cursor: pointer;
  border: none;
  outline: none;
  background-color: #f3f4f6;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background-color: #e5e7eb;
}

.faq-question[aria-expanded="true"] {
  background-color: #f3f4f6;
}

.faq-question-text {
  flex: 1;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-gray-900);
  line-height: 1.5;
  text-align: left;
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--color-gray-900);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
  background-color: var(--color-gray-900);
}

.faq-question[aria-expanded="true"] .faq-icon i.fa-plus {
  display: none;
}

.faq-question[aria-expanded="true"] .faq-icon i.fa-minus {
  display: block;
}

.faq-question[aria-expanded="false"] .faq-icon i.fa-plus {
  display: block;
}

.faq-question[aria-expanded="false"] .faq-icon i.fa-minus {
  display: none;
}

.faq-icon i {
  font-size: 0.875rem;
  transition: opacity 0.3s ease;
}

.faq-answer {
  max-height: 0 !important;
  overflow: hidden !important;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.3s ease, margin 0.4s ease !important;
  opacity: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  display: block !important;
  visibility: hidden !important;
}

.faq-answer.active {
  max-height: 1000px !important;
  padding: 0 1.25rem 1.25rem 1.25rem !important;
  margin-top: 0 !important;
  opacity: 1 !important;
  display: block !important;
  visibility: visible !important;
}

.faq-answer p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-gray-600);
  margin: 0;
}

/* Stats Section */
.section-stats {
  position: relative;
  overflow: hidden;
}

.section-stats::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.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.section-stats .container {
  position: relative;
  z-index: 1;
}

.stat-item {
  padding: 20px;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

/* CTA Section */
.section-cta {
  padding: 60px 20px 40px 20px;
  background-color: var(--color-gray-50);
  position: relative;
  overflow: visible;
}

@media (min-width: 768px) {
  .section-cta {
    padding: 80px 20px 60px 20px;
  }
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 16px;
  padding: 40px 40px 20px 40px;
  position: relative;
  overflow: visible;
}

/* Home Page CTA Styles */
.section-cta-home .cta-container-home {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-700) 100%);
  box-shadow: 0 20px 60px rgba(32, 89, 124, 0.2);
}

.cta-container::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="cta-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-pattern)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}

@media (max-width: 767px) {
  .cta-container {
    padding: 30px 24px 15px 24px;
  }
}

.cta-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .cta-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: flex-start;
  }
}

.cta-content {
  text-align: left;
}

@media (max-width: 1023px) {
  .cta-content {
    text-align: center;
  }
}

.cta-title {
  color: var(--color-white);
  margin-bottom: 1rem;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cta-description {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
    gap: 1rem;
  }
}

@media (max-width: 1023px) {
  .cta-buttons {
    align-items: center;
    justify-content: center;
  }
}

/* New CTA Buttons */
.cta-btn-new-primary,
.cta-btn-new-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
  min-width: 160px;
  position: relative;
  overflow: hidden;
}

.cta-btn-new-primary {
  background-color: var(--color-white);
  color: var(--color-primary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  border: none;
}

/* Home Page CTA Button Styles */
.cta-btn-home-primary {
  background-color: var(--color-white);
  color: var(--color-primary);
  border: none;
}

.cta-btn-home-primary:hover {
  background-color: #f8f9fa;
  color: var(--color-primary-700);
}

.cta-btn-home-secondary {
  background-color: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}

.cta-btn-home-secondary:hover {
  border-color: var(--color-white);
}

.cta-btn-home-secondary:hover::before {
  background-color: var(--color-white);
}

.cta-btn-home-secondary:hover span,
.cta-btn-home-secondary:hover i {
  color: var(--color-primary);
}

.cta-btn-new-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(32, 89, 124, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.cta-btn-new-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  background-color: #f8f9fa;
}

.cta-btn-new-primary:hover::before {
  width: 300px;
  height: 300px;
}

.cta-btn-new-primary span,
.cta-btn-new-primary i {
  position: relative;
  z-index: 1;
}

.cta-btn-new-primary i {
  transition: transform 0.3s ease;
}

.cta-btn-new-primary:hover i {
  transform: translateX(4px);
}

.cta-btn-new-secondary {
  background-color: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-btn-new-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
  transition: left 0.3s ease;
  z-index: 0;
}

.cta-btn-new-secondary span,
.cta-btn-new-secondary i {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.cta-btn-new-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  border-color: var(--color-white);
}

.cta-btn-new-secondary:hover::before {
  left: 0;
}

.cta-btn-new-secondary:hover span,
.cta-btn-new-secondary:hover i {
  color: var(--color-primary);
}

.cta-btn-new-secondary i {
  transition: transform 0.3s ease;
}

.cta-btn-new-secondary:hover i {
  transform: translateX(4px);
}

/* About Page CTA Specific Styles */
.section-cta-about .cta-container-about {
  background: linear-gradient(135deg, #040404 0%, #373737 100%);
  box-shadow: 0 20px 60px rgba(218, 174, 86, 0.3);
}

.section-cta-about .cta-container-about::before {
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="cta-about-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-about-pattern)"/></svg>');
  opacity: 0.3;
}

.cta-btn-about-primary {
  background-color: var(--color-white);
  color: #DAAE56;
  border: 2px solid #DAAE56;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.cta-btn-about-primary::before {
  background: rgba(218, 174, 86, 0.1);
}

.cta-btn-about-primary:hover {
  background-color: #fff;
  border-color: #c58f24;
  color: #c58f24;
  box-shadow: 0 6px 20px rgba(218, 174, 86, 0.3);
}

.cta-btn-about-secondary {
  background-color: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-btn-about-secondary::before {
  background-color: var(--color-white);
}

.cta-btn-about-secondary:hover {
  background-color: #c58f24;
  border-color: #c58f24;
  color: var(--color-white);
  box-shadow: 0 6px 20px rgba(218, 174, 86, 0.3);
}

.cta-btn-about-secondary:hover span,
.cta-btn-about-secondary:hover i {
  color: var(--color-white);
}

/* About Page CTA Button with Black Text on Hover */
.cta-btn-about-color-dark {
  background-color: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-btn-about-color-dark::before {
  background-color: var(--color-white);
}

.cta-btn-about-color-dark span,
.cta-btn-about-color-dark i {
  color: var(--color-white);
  transition: color 0.3s ease;
}

.cta-btn-about-color-dark:hover {
  background-color: var(--color-white);
  border-color: var(--color-white);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.cta-btn-about-color-dark:hover span,
.cta-btn-about-color-dark:hover i {
  color: var(--color-gray-900);
}

.cta-image {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
}

.cta-image-wrapper {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.cta-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  transform: translateY(0);
}

/* Home Page CTA Image Styles */
.cta-image-home {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
}

.cta-image-wrapper-home {
  position: relative;
  width: 52%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-top: -120px;
  margin-bottom: -40px;
}

.cta-img-home {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: contain;
  display: block;
  transform: translateY(0);
}

/* About Page CTA Image Styles */
.cta-image-about {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
}

.cta-image-wrapper-about {
  position: relative;
  width: 85%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-top: -120px;
  margin-bottom: -40px;
}

.cta-img-about {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: contain;
  display: block;
  transform: translateY(0);
}

.cta-btn-primary,
.cta-btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
  min-width: 180px;
  text-align: center;
}

.cta-btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  border: 2px solid var(--color-primary);
}

.cta-btn-primary:hover {
  background-color: var(--color-primary-700);
  border-color: var(--color-primary-700);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(32, 89, 124, 0.3);
}

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

.cta-btn-secondary:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(32, 89, 124, 0.2);
}

/* Legacy button styles for compatibility */
.btn-secondary-cta {
  background: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

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

.btn-secondary-cta:after {
  background: var(--color-primary);
}

/* Footer Styles */
.footer-new {
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 25%, #e5e7eb 50%, #f3f4f6 75%, #f9fafb 100%);
  color: var(--color-gray-900);
  margin-top: 0;
  position: relative;
}

.footer-top-border {
  height: 2px;
  background-color: var(--color-primary);
  width: 100%;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 16px 20px;
  width: 100%;
}

@media (min-width: 480px) {
  .footer-container {
    padding: 35px 20px 25px;
  }
}

@media (min-width: 768px) {
  .footer-container {
    padding: 60px 20px 40px;
  }
}

/* Top Section */
.footer-top {
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .footer-top {
    margin-bottom: 40px;
  }
}

.footer-top-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: start;
}

@media (min-width: 768px) {
  .footer-top-content {
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
  }
}

/* Branding */
.footer-branding {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  font-size: 2.5rem;
  font-weight: 700;
  font-style: italic;
  color: var(--color-gray-900);
  margin-bottom: 12px;
  font-family: "Inter", sans-serif;
  line-height: 1.2;
  transition: opacity 0.3s ease;
  cursor: default;
}

.footer-logo a {
  display: inline-block;
  text-decoration: none;
}

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

@media (max-width: 767px) {
  .footer-logo img {
    max-width: 220px;
  }
}

@media (max-width: 480px) {
  .footer-logo img {
    max-width: 200px;
  }
}

.footer-logo:hover {
  opacity: 0.8;
}

.footer-slogan {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--color-gray-700);
  line-height: 1.6;
  max-width: 100%;
}

@media (min-width: 480px) {
  .footer-slogan {
    font-size: 1rem;
  }
}

/* Navigation */
.footer-navigation {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: start;
}

@media (min-width: 480px) {
  .footer-navigation {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (min-width: 768px) {
  .footer-navigation {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

.footer-nav-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-nav-heading {
  font-size: 0.95rem;
  font-weight: 700;
  font-style: italic;
  color: var(--color-gray-900);
  margin-bottom: 16px;
  font-family: "Inter", sans-serif;
  line-height: 1.2;
}

@media (min-width: 480px) {
  .footer-nav-heading {
    font-size: 1rem;
    margin-bottom: 20px;
  }
}

.footer-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

@media (min-width: 480px) {
  .footer-nav-links {
    gap: 14px;
  }
}

.footer-nav-links li {
  margin: 0;
  width: 100%;
}

.footer-nav-links a {
  color: var(--color-gray-600);
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  font-family: "Lato", sans-serif;
  display: inline-block;
  position: relative;
  padding-bottom: 2px;
  line-height: 1.6;
  word-wrap: break-word;
  word-break: break-word;
}

@media (min-width: 480px) {
  .footer-nav-links a {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}

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

.footer-nav-links a:hover {
  color: var(--color-primary);
  transform: translateX(4px);
}

.footer-nav-links a:hover::after {
  width: 100%;
}

/* Contact Column Specific Styles */
.footer-contact-column .footer-nav-links a {
  white-space: normal;
}

.footer-address {
  line-height: 1.6;
}

.footer-address a {
  display: inline-block;
  line-height: 1.6;
}

/* Separator */
.footer-separator {
  height: 1px;
  background-color: var(--color-gray-300);
  width: 100%;
  margin: 25px 0 20px;
}

@media (min-width: 480px) {
  .footer-separator {
    margin: 30px 0 25px;
  }
}

@media (min-width: 768px) {
  .footer-separator {
    margin: 50px 0 40px;
  }
}

/* Bottom Section */
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
  padding: 0 5px;
}

@media (min-width: 480px) {
  .footer-bottom {
    gap: 20px;
    padding: 0 10px;
  }
}

@media (min-width: 768px) {
  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: center;
    text-align: left;
    padding: 0;
  }
}

.footer-bottom-left {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  order: 1;
}

@media (min-width: 768px) {
  .footer-bottom-left {
    order: 1;
    justify-content: flex-start;
    width: auto;
  }
}

.footer-bottom-right {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  order: 3;
}

@media (min-width: 768px) {
  .footer-bottom-right {
    order: 3;
    justify-content: flex-end;
    width: auto;
  }
}

/* Social Icons */
.footer-social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  order: 2;
  width: 100%;
}

@media (min-width: 768px) {
  .footer-social-icons {
    order: 2;
    justify-content: center;
    width: auto;
    gap: 12px;
  }
}

.footer-social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--color-gray-300);
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gray-700);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

@media (min-width: 480px) {
  .footer-social-icon {
    width: 40px;
    height: 40px;
  }
}

@media (min-width: 768px) {
  .footer-social-icon {
    width: 44px;
    height: 44px;
  }
}

.footer-social-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: var(--color-primary);
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease;
  z-index: 0;
}

.footer-social-icon i {
  font-size: 15px;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease, color 0.3s ease;
}

@media (min-width: 480px) {
  .footer-social-icon i {
    font-size: 16px;
  }
}

.footer-social-icon:hover {
  border-color: var(--color-primary);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 4px 12px rgba(32, 89, 124, 0.25);
}

.footer-social-icon:hover::before {
  width: 100%;
  height: 100%;
}

.footer-social-icon:hover i {
  color: var(--color-white);
  transform: scale(1.1);
}

/* Copyright */
.footer-copyright {
  font-size: 0.8rem;
  color: var(--color-gray-700);
  margin: 0;
  font-family: "Lato", sans-serif;
  text-align: center;
  line-height: 1.5;
  padding: 0 10px;
}

@media (min-width: 480px) {
  .footer-copyright {
    font-size: 0.875rem;
    padding: 0;
  }
}

@media (min-width: 768px) {
  .footer-copyright {
    text-align: left;
  }
}

/* Developed By */
.footer-developed {
  font-size: 0.8rem;
  color: var(--color-gray-700);
  margin: 0;
  font-family: "Lato", sans-serif;
  text-decoration: none;
  text-align: center;
  line-height: 1.5;
  transition: color 0.3s ease;
  padding: 0 10px;
}

.footer-developed:hover {
  color: var(--color-gray-900);
}

@media (min-width: 480px) {
  .footer-developed {
    font-size: 0.875rem;
    padding: 0;
  }
}

@media (min-width: 768px) {
  .footer-developed {
    text-align: right;
  }
}

.footer-dev-name {
  font-weight: 600;
  color: var(--color-primary);
  transition: color 0.3s ease;
}

.footer-bottom-right:hover .footer-dev-name {
  color: var(--color-primary-700);
}

/* Contact Page Styles */
.contact-header-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 7rem !important;
  padding-bottom: 3rem !important;
  min-height: auto !important;
}

@media (min-width: 480px) {
  .contact-header-section {
    padding-top: 8rem !important;
    padding-bottom: 4rem !important;
    min-height: 50vh !important;
  }
}

@media (min-width: 768px) {
  .contact-header-section {
    padding-top: 10rem !important;
    padding-bottom: 5rem !important;
    min-height: 60vh !important;
  }
}

.contact-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.contact-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.contact-hero-stripe {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  z-index: 3;
  background: linear-gradient(to bottom, transparent 0%, var(--color-primary) 20%, var(--color-primary) 80%, transparent 100%);
  opacity: 0.7;
}

@media (min-width: 768px) {
  .contact-hero-stripe {
    width: 6px;
  }
}

.contact-main-heading {
  position: relative;
  display: block;
  padding-top: 2rem;
  padding-bottom: 12px;
  color: var(--color-white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  font-size: 1.625rem;
  line-height: 1.35;
  word-wrap: break-word;
  word-break: normal;
  max-width: 100%;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
  white-space: normal;
  letter-spacing: -0.02em;
}

@media (min-width: 480px) {
  .contact-main-heading {
    padding-top: 1.5rem;
  }
}

@media (min-width: 768px) {
  .contact-main-heading {
    padding-top: 0;
  }
}

@media (min-width: 360px) {
  .contact-main-heading {
    font-size: 1.875rem;
    line-height: 1.3;
  }
}

@media (min-width: 480px) {
  .contact-main-heading {
    font-size: 2.25rem;
    padding-bottom: 14px;
    line-height: 1.25;
    padding-left: 0;
    padding-right: 0;
    letter-spacing: -0.01em;
  }
}

@media (min-width: 640px) {
  .contact-main-heading {
    font-size: 2.5rem;
  }
}

@media (min-width: 768px) {
  .contact-main-heading {
    font-size: 3rem;
    padding-bottom: 16px;
    display: inline-block;
    line-height: 1.2;
    letter-spacing: normal;
  }
}

@media (min-width: 1024px) {
  .contact-main-heading {
    font-size: 3.75rem;
  }
}

.contact-main-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #4fd1c7 0%, #38b2ac 100%);
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(79, 209, 199, 0.4);
}

.contact-hero-content {
  padding-top: 1rem;
}

@media (min-width: 480px) {
  .contact-hero-content {
    padding-top: 0.5rem;
  }
}

@media (min-width: 768px) {
  .contact-hero-content {
    padding-top: 0;
  }
}

.contact-header-description {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
  font-size: 0.875rem;
  padding: 0 1rem;
  line-height: 1.6;
  margin-top: 1rem;
}

@media (min-width: 480px) {
  .contact-header-description {
    font-size: 1rem;
    padding: 0;
    margin-top: 1.25rem;
  }
}

@media (min-width: 768px) {
  .contact-header-description {
    font-size: 1.125rem;
    margin-top: 1rem;
  }
}

.section-contact {
  background-color: var(--color-white);
  padding-top: 2rem;
  padding-bottom: 2rem;
}

@media (min-width: 768px) {
  .section-contact {
    padding-top: 3rem;
    padding-bottom: 4rem;
  }
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .contact-main-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

/* Contact Form Panel (Left Column) */
.contact-form-panel {
  background-color: #f3f4f6;
  border-radius: 8px;
  position: relative;
  padding: 1.5rem !important;
}

@media (min-width: 480px) {
  .contact-form-panel {
    padding: 2rem !important;
  }
}

@media (min-width: 768px) {
  .contact-form-panel {
    padding: 2.5rem !important;
  }
}

.contact-form-heading {
  color: var(--color-gray-900);
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}

@media (min-width: 480px) {
  .contact-form-heading {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 768px) {
  .contact-form-heading {
    font-size: 2rem;
  }
}

.contact-form-input,
.contact-form-textarea,
.contact-form-select {
  background-color: var(--color-white);
  border: 1px solid #d1d5db;
  color: var(--color-gray-900);
  font-size: 14px;
  transition: all 0.3s ease;
  font-family: 'Lato', sans-serif;
}

@media (min-width: 480px) {
  .contact-form-input,
  .contact-form-textarea,
  .contact-form-select {
    font-size: 15px;
  }
}

.contact-form-input:focus,
.contact-form-textarea:focus,
.contact-form-select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(218, 174, 86, 0.1);
  outline: none;
}

.contact-form-input:hover,
.contact-form-textarea:hover,
.contact-form-select:hover {
  border-color: #9ca3af;
}

.contact-form-input::placeholder,
.contact-form-textarea::placeholder {
  color: #9ca3af;
}

.contact-form-select {
  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='%23374151' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.contact-form-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='%23DAAE56' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
}

.contact-submit-btn {
  background-color: var(--color-primary);
  color: var(--color-white);
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  font-size: 0.9rem;
  padding: 0.75rem 1.5rem;
}

@media (min-width: 480px) {
  .contact-submit-btn {
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

.contact-submit-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.contact-submit-btn:hover::before {
  width: 300px;
  height: 300px;
}

.contact-submit-btn:hover {
  background-color: var(--color-primary-700);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(218, 174, 86, 0.4);
}

.contact-submit-btn:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(218, 174, 86, 0.3);
}

/* Contact Details (Right Column) */
.contact-details-wrapper {
  padding: 0;
}

.contact-details-heading {
  color: var(--color-gray-900);
  margin-bottom: 0.875rem;
  font-size: 1.5rem;
}

@media (min-width: 480px) {
  .contact-details-heading {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
}

@media (min-width: 768px) {
  .contact-details-heading {
    font-size: 2rem;
  }
}

.contact-details-description {
  color: var(--color-gray-600);
  line-height: 1.7;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 480px) {
  .contact-details-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 480px) {
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

.contact-detail-card {
  background-color: var(--color-white);
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 0.875rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  min-height: auto;
}

@media (min-width: 480px) {
  .contact-detail-card {
    padding: 1rem;
  }
}

.contact-detail-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(218, 174, 86, 0.1), transparent);
  transition: left 0.5s;
}

.contact-detail-card:hover::before {
  left: 100%;
}

.contact-detail-card:hover {
  box-shadow: 0 6px 20px rgba(218, 174, 86, 0.2);
  transform: translateY(-4px);
  border-color: var(--color-primary);
}

.contact-detail-icon {
  background-color: var(--color-primary);
  width: 36px;
  height: 36px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.625rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  flex-shrink: 0;
}

@media (min-width: 480px) {
  .contact-detail-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 0.75rem;
  }
}

.contact-detail-icon i {
  font-size: 0.875rem;
}

@media (min-width: 480px) {
  .contact-detail-icon i {
    font-size: 1.125rem;
  }
}

.contact-detail-card:hover .contact-detail-icon {
  background-color: var(--color-primary-700);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 4px 12px rgba(218, 174, 86, 0.3);
}

.contact-detail-label {
  color: var(--color-gray-700);
  font-weight: 600;
  margin-bottom: 0.25rem;
  font-size: 0.8125rem;
  line-height: 1.3;
}

@media (min-width: 480px) {
  .contact-detail-label {
    font-size: 0.875rem;
  }
}

.contact-detail-value {
  color: var(--color-gray-600);
  font-size: 0.75rem;
  line-height: 1.5;
  word-wrap: break-word;
  word-break: break-word;
  display: block;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-detail-value:hover {
  color: var(--color-primary);
}

@media (min-width: 480px) {
  .contact-detail-value {
    font-size: 0.875rem;
  }
}

/* Social Media Section */
.contact-social-section {
  margin-top: 1.5rem;
}

@media (min-width: 480px) {
  .contact-social-section {
    margin-top: 2rem;
  }
}

.contact-social-heading {
  color: var(--color-gray-900);
  margin-bottom: 0.875rem;
  font-size: 1rem;
}

@media (min-width: 480px) {
  .contact-social-heading {
    font-size: 1.125rem;
    margin-bottom: 1rem;
  }
}

.contact-social-icons {
  display: flex;
  gap: 0.75rem;
}

.contact-social-icon {
  width: 36px;
  height: 36px;
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

@media (min-width: 480px) {
  .contact-social-icon {
    width: 40px;
    height: 40px;
  }
}

.contact-social-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.4s, height 0.4s;
}

.contact-social-icon:hover::before {
  width: 100px;
  height: 100px;
}

.contact-social-icon:hover {
  background-color: var(--color-primary-700);
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 6px 16px rgba(218, 174, 86, 0.4);
}

.contact-social-icon:active {
  transform: translateY(-2px) scale(1.05);
}

/* Honeypot Fields - Hidden from users but visible to bots */
.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.honeypot-label {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.honeypot-input {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
}

/* Ocean Freight Page Hero Section */
.ocean-freight-hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ocean-freight-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.ocean-freight-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.ocean-freight-hero-stripe {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  z-index: 3;
  background: linear-gradient(to bottom, transparent 0%, var(--color-primary) 20%, var(--color-primary) 80%, transparent 100%);
  opacity: 0.7;
}

@media (min-width: 768px) {
  .ocean-freight-hero-stripe {
    width: 6px;
  }
}

.ocean-freight-hero-heading {
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
  color: var(--color-white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.ocean-freight-hero-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #4fd1c7 0%, #38b2ac 100%);
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(79, 209, 199, 0.4);
}

.ocean-freight-hero-description {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

/* Ocean Freight Main Section */
.section-ocean-freight {
  background-color: var(--color-white);
}

.ocean-freight-intro {
  margin-bottom: 4rem;
}

.ocean-freight-context {
  color: var(--color-primary);
}

.ocean-freight-title {
  color: var(--color-gray-900);
  line-height: 1.2;
}

.ocean-freight-description {
  color: var(--color-gray-600);
  line-height: 1.8;
}

/* Ocean Freight Service Sections with Images */
.ocean-freight-service-section {
  margin-bottom: 5rem;
}

.freight-service-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .freight-service-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.freight-service-image {
  position: relative;
}

.freight-img-container {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.freight-img-container:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

.freight-service-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.freight-img-container:hover .freight-service-img {
  transform: scale(1.05);
}

.freight-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(218, 174, 86, 0.2) 0%, transparent 100%);
  pointer-events: none;
}

.freight-service-content {
  padding: 1rem 0;
}

.freight-service-icon-wrapper {
  margin-bottom: 1.5rem;
}

.freight-service-icon {
  width: 80px;
  height: 80px;
  background-color: var(--color-primary);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(218, 174, 86, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.freight-service-icon:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 40px rgba(218, 174, 86, 0.4);
}

.freight-service-icon .filter-white {
  filter: brightness(0) invert(1);
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.freight-service-title {
  color: var(--color-gray-900);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.freight-service-description {
  color: var(--color-gray-600);
  line-height: 1.8;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.freight-service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.freight-service-features li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.freight-check-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background-color: rgba(218, 174, 86, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  margin-top: 2px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.freight-service-features li:hover .freight-check-icon {
  background-color: var(--color-primary);
  transform: scale(1.1);
}

.freight-service-features li:hover .freight-check-icon i {
  color: var(--color-white);
}

.freight-service-features li span {
  color: var(--color-gray-700);
  line-height: 1.6;
  font-size: 1rem;
}

/* Ocean Freight Features Section */
.ocean-freight-features-section {
  margin-bottom: 4rem;
}

.features-section-title {
  color: var(--color-gray-900);
  line-height: 1.2;
}

.features-section-description {
  color: var(--color-gray-600);
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Modern Feature Cards without Images */
.feature-card-modern {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  background: linear-gradient(to bottom right, var(--color-white), #f9fafb);
}

.feature-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(218, 174, 86, 0.08), transparent);
  transition: left 0.6s ease;
  z-index: 1;
}

.feature-card-modern:hover::before {
  left: 100%;
}

.feature-card-modern:hover {
  transform: translateY(-10px);
  border-color: var(--color-primary);
  box-shadow: 0 25px 60px rgba(218, 174, 86, 0.2);
  background: linear-gradient(to bottom right, var(--color-white), #ffffff);
}

.feature-bg-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 128px;
  height: 128px;
  opacity: 0.05;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.feature-card-modern:hover .feature-bg-pattern {
  opacity: 0.1;
}

.feature-icon-wrapper {
  position: relative;
  z-index: 10;
  margin-bottom: 1.5rem;
}

.feature-icon-large {
  width: 80px;
  height: 80px;
  min-width: 80px;
  min-height: 80px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-700) 100%);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(218, 174, 86, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.feature-icon-large::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-700) 100%);
  opacity: 0.2;
  z-index: -1;
  filter: blur(8px);
}

.feature-card-modern:hover .feature-icon-large {
  box-shadow: 0 15px 40px rgba(218, 174, 86, 0.5);
  transform: scale(1.1) rotate(6deg);
}

.feature-icon-large i {
  color: #ffffff !important;
  font-size: 32px !important;
  font-weight: 900 !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  display: inline-block !important;
  line-height: 1 !important;
  z-index: 1;
  position: relative;
  width: auto;
  height: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.feature-title {
  color: var(--color-gray-900);
  line-height: 1.3;
  position: relative;
  z-index: 10;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.feature-text {
  color: var(--color-gray-600);
  line-height: 1.7;
  position: relative;
  z-index: 10;
  font-size: 1rem;
}

.feature-divider {
  position: relative;
  z-index: 10;
  margin-top: 1.5rem;
}

.feature-divider div {
  width: 48px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-700) 100%);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.feature-card-modern:hover .feature-divider div {
  width: 80px;
}

/* Enhanced Feature Cards with Images (for backward compatibility) */
.feature-card-enhanced {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
}

.feature-card-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(218, 174, 86, 0.1), transparent);
  transition: left 0.5s;
  z-index: 1;
}

.feature-card-enhanced:hover::before {
  left: 100%;
}

.feature-card-enhanced:hover {
  transform: translateY(-8px);
  border-color: var(--color-primary);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.feature-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  margin-bottom: 1.5rem;
  height: 192px;
}

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

.feature-card-enhanced:hover .feature-image {
  transform: scale(1.1);
}

.feature-icon {
  transition: transform 0.3s ease, background-color 0.3s ease;
  position: relative;
  z-index: 2;
}

.feature-card-enhanced:hover .feature-icon {
  transform: scale(1.1);
  background-color: var(--color-primary);
}

.feature-card-enhanced:hover .feature-icon i {
  color: var(--color-white);
}

/* Legacy feature-card styles for backward compatibility */
.feature-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(218, 174, 86, 0.1), transparent);
  transition: left 0.5s;
}

.feature-card:hover::before {
  left: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-primary);
}

.ocean-freight-cta {
  background: linear-gradient(135deg, rgba(218, 174, 86, 0.1) 0%, rgba(218, 174, 86, 0.05) 100%);
  border: 1px solid rgba(218, 174, 86, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ocean-freight-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(218, 174, 86, 0.2);
}

.features-section-label {
  color: var(--color-primary);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

/* Services Page Hero Section */
.services-hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.services-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.services-hero-stripe {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  z-index: 3;
  background: linear-gradient(to bottom, transparent 0%, var(--color-primary) 20%, var(--color-primary) 80%, transparent 100%);
  opacity: 0.7;
}

@media (min-width: 768px) {
  .services-hero-stripe {
    width: 6px;
  }
}

.services-hero-heading {
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
  color: var(--color-white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.services-hero-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #4fd1c7 0%, #38b2ac 100%);
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(79, 209, 199, 0.4);
}

.services-hero-description {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

/* About Page Hero Section */
.about-hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.about-hero-stripe {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  z-index: 3;
  background: linear-gradient(to bottom, transparent 0%, var(--color-primary) 20%, var(--color-primary) 80%, transparent 100%);
  opacity: 0.7;
}

@media (min-width: 768px) {
  .about-hero-stripe {
    width: 6px;
  }
}

.about-hero-heading {
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
  color: var(--color-white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.about-hero-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #4fd1c7 0%, #38b2ac 100%);
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(79, 209, 199, 0.4);
}

.about-hero-description {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

/* About Main Section */
.section-about-main {
  background-color: var(--color-white);
}

/* About Main Section Layout */
.about-layout-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  min-height: 600px;
}

@media (min-width: 1024px) {
  .about-layout-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}

.about-img-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 500px;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .about-img-container {
    min-height: 600px;
  }
}

.about-main-img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (min-width: 1024px) {
  .about-main-img {
    min-height: 600px;
  }
}

.about-content-box {
  background-color: var(--color-white);
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 500px;
}

@media (min-width: 1024px) {
  .about-content-box {
    padding: 5rem 4rem;
    min-height: 600px;
  }
}

.about-content-subtitle {
  color: var(--color-primary);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.about-content-title {
  color: var(--color-gray-900);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.about-content-title span {
  display: block;
}

.about-content-description {
  color: var(--color-gray-600);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.about-content-btn {
  background-color: var(--color-primary);
  color: var(--color-white);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  display: inline-block;
  align-self: flex-start;
  padding: 14px 32px;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}

.about-content-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: left 0.3s ease;
  z-index: 0;
}

.about-content-btn span,
.about-content-btn {
  position: relative;
  z-index: 1;
}

.about-content-btn:hover {
  background-color: var(--color-primary-700);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.about-content-btn:hover::before {
  left: 0;
}

.about-content-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.about-context {
  color: var(--color-primary);
}

/* Mission & Vision Section */
.section-mission-vision {
  background-color: #faf8f5;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .mission-vision-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.mission-vision-left {
  padding-right: 0;
}

@media (min-width: 1024px) {
  .mission-vision-left {
    padding-right: 2rem;
  }
}

.mission-vision-label {
  color: var(--color-primary);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.mission-vision-headline {
  color: var(--color-gray-900);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.mission-vision-right {
  padding-left: 0;
}

@media (min-width: 1024px) {
  .mission-vision-right {
    padding-left: 2rem;
  }
}

.mission-vision-description {
  color: var(--color-gray-700);
  line-height: 1.8;
  font-size: 16px;
}

@media (min-width: 768px) {
  .mission-vision-description {
    font-size: 18px;
  }
}

/* Mission & Vision Statistics */
.mission-vision-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .mission-vision-stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
  }
}

.mission-stat-item {
  text-align: center;
}

.mission-stat-label {
  color: var(--color-gray-600);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  font-size: 12px;
}

@media (min-width: 768px) {
  .mission-stat-label {
    font-size: 14px;
  }
}

.mission-stat-value {
  color: var(--color-gray-900);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  transition: transform 0.3s ease;
  display: inline-block;
}

.mission-stat-item:hover .mission-stat-value {
  transform: scale(1.05);
  color: var(--color-primary);
}

/* Values Section */
.section-values {
  background-color: var(--color-white);
}

.values-context {
  color: var(--color-primary);
}

.values-heading {
  color: var(--color-gray-900);
  line-height: 1.2;
}

.values-description {
  color: var(--color-gray-600);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.value-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(218, 174, 86, 0.1), transparent);
  transition: left 0.5s;
}

.value-card:hover::before {
  left: 100%;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--color-primary);
}

.value-icon {
  transition: transform 0.3s ease, background-color 0.3s ease;
}

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

.value-card:hover .value-icon i {
  color: var(--color-white);
}

.value-title {
  color: var(--color-gray-900);
  line-height: 1.3;
}

.value-text {
  color: var(--color-gray-600);
  line-height: 1.6;
}

/* Modern Value Cards */
.value-card-modern {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.value-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--color-primary);
}

.value-bg-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 128px;
  height: 128px;
  opacity: 0.05;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.value-card-modern:hover .value-bg-pattern {
  opacity: 0.1;
}

.value-icon-wrapper {
  position: relative;
  z-index: 10;
  margin-bottom: 1.5rem;
}

.value-icon-large {
  width: 80px;
  height: 80px;
  min-width: 80px;
  min-height: 80px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-700) 100%);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(218, 174, 86, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.value-icon-large::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-700) 100%);
  opacity: 0.2;
  z-index: -1;
  filter: blur(8px);
}

.value-card-modern:hover .value-icon-large {
  box-shadow: 0 15px 40px rgba(218, 174, 86, 0.5);
  transform: scale(1.1) rotate(6deg);
}

.value-icon-large i {
  color: #ffffff !important;
  font-size: 32px !important;
  font-weight: 900 !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  display: inline-block !important;
  line-height: 1 !important;
  z-index: 1;
  position: relative;
  width: auto;
  height: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.value-card-modern .value-title {
  color: var(--color-gray-900);
  line-height: 1.3;
  margin-bottom: 1rem;
}

.value-card-modern .value-text {
  color: var(--color-gray-600);
  line-height: 1.6;
}

.value-divider {
  position: relative;
  z-index: 10;
  margin-top: 1.5rem;
}

.value-divider div {
  width: 48px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-700) 100%);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.value-card-modern:hover .value-divider div {
  width: 80px;
}

/* About Stats Section */
.section-about-stats {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-700) 100%);
}

/* Contact Map Section */
.section-contact-map {
  background-color: #f9fafb;
}

.contact-map-heading {
  color: var(--color-gray-900);
  position: relative;
  display: inline-block;
  width: 100%;
  padding-bottom: 12px;
}

.contact-map-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-700) 100%);
  border-radius: 2px;
}

.contact-map-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.contact-map-wrapper:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.contact-map-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.contact-map-info {
  padding: 1rem 0;
}

.contact-map-info p {
  font-size: 16px;
  line-height: 1.6;
}

.contact-map-info a {
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-map-info a:hover {
  transform: translateX(4px);
}

@media (max-width: 767px) {
  .contact-map-wrapper {
    height: 300px !important;
    border-radius: 8px;
  }
  
  .contact-map-heading {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .section-contact-map {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .contact-map-wrapper {
    height: 350px !important;
  }
  
  .contact-map-heading {
    font-size: 1.75rem;
  }
}

@media (min-width: 768px) {
  .contact-map-wrapper {
    height: 400px !important;
  }
  
  .contact-map-heading {
    font-size: 2rem;
  }
}

.contact-form {
  width: 100%;
}

.form-group {
  margin-bottom: 1rem;
}

@media (max-width: 479px) {
  .form-group {
    margin-bottom: 0.875rem;
  }
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--color-gray-900);
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  color: var(--color-gray-900);
  background-color: var(--color-white);
  border: 1px solid #d1d5db;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(218, 174, 86, 0.1);
  outline: none;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: #9ca3af;
}

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

@media (min-width: 480px) {
  .form-group textarea {
    min-height: 120px;
  }
}

.contact-message {
  animation: slideDown 0.4s ease-out;
}

.contact-message.success {
  background-color: #f0fdf4;
  border-color: #22c55e;
}

.contact-message.error {
  background-color: #fef2f2;
  border-color: #ef4444;
}

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


/* Form Validation Styles */
.form-group input:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown),
.form-group input.error,
.form-group textarea.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-group input:valid:not(:placeholder-shown):not(.error),
.form-group textarea:valid:not(:placeholder-shown):not(.error) {
  border-color: #22c55e;
}

.form-group input.error:focus,
.form-group textarea.error:focus {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
}

/* Custom Select Arrow */
.form-group select {
  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='%23374151' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .contact-hero {
    padding-top: 6rem;
    padding-bottom: 3rem;
  }

  .contact-form-wrapper {
    padding: 1.5rem;
  }

  .contact-info-card {
    margin-bottom: 1rem;
  }
}

/* Loading state for form submission */
.contact-form.submitting button {
  opacity: 0.7;
  cursor: not-allowed;
  pointer-events: none;
}

.contact-form.submitting button::after {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 8px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Scroll to Top Button */
.scroll-to-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-700) 100%);
  color: var(--color-white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 15px rgba(218, 174, 86, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  overflow: hidden;
}

.scroll-to-top-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
  z-index: -1;
}

.scroll-to-top-btn:hover::before {
  width: 100%;
  height: 100%;
}

.scroll-to-top-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(218, 174, 86, 0.5);
  background: linear-gradient(135deg, var(--color-primary-700) 0%, var(--color-primary) 100%);
}

.scroll-to-top-btn:active {
  transform: translateY(-2px);
}

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

.scroll-to-top-btn i {
  transition: transform 0.3s ease;
}

.scroll-to-top-btn:hover i {
  transform: translateY(-3px);
}

/* Responsive adjustments for scroll to top button */
@media (max-width: 768px) {
  .scroll-to-top-btn {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
    font-size: 18px;
  }
}

/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: var(--color-white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  z-index: 1000;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
  z-index: -1;
}

.whatsapp-btn:hover::before {
  width: 100%;
  height: 100%;
}

.whatsapp-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
  background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

.whatsapp-btn:active {
  transform: translateY(-2px) scale(1.02);
}

.whatsapp-btn i {
  transition: transform 0.3s ease;
  z-index: 1;
  position: relative;
}

.whatsapp-btn:hover i {
  transform: scale(1.1);
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
  }
  100% {
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  }
}

/* Responsive adjustments for WhatsApp button */
@media (max-width: 768px) {
  .whatsapp-btn {
    width: 55px;
    height: 55px;
    bottom: 20px;
    left: 20px;
    font-size: 28px;
  }
}

/* Google reCAPTCHA Styling */
.g-recaptcha {
  display: flex;
  justify-content: flex-start;
  margin: 1rem 0;
  transform: scale(0.9);
  transform-origin: 0 0;
}

@media (max-width: 768px) {
  .g-recaptcha {
    transform: scale(0.85);
  }
}

/* reCAPTCHA error message styling */
.recaptcha-error {
  color: #dc2626;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: block;
}

/* Career Page Styles */
.career-header-section {
  position: relative;
}

.career-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.career-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.career-hero-stripe {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  z-index: 3;
}

.career-main-heading {
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.career-header-description {
  color: rgba(255, 255, 255, 0.9);
}

/* Career Form Styles - Reuse contact form styles */
.career-form-panel {
  background-color: #f3f4f6;
  border-radius: 0.5rem;
  padding: 2rem;
}

@media (min-width: 768px) {
  .career-form-panel {
    padding: 2.5rem;
  }
}

.career-form-heading {
  color: var(--color-gray-900);
  margin-bottom: 1.5rem;
}

.career-form-input,
.career-form-textarea,
.career-form-select,
.career-form-file {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  background-color: white;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.career-form-input:focus,
.career-form-textarea:focus,
.career-form-select:focus,
.career-form-file:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(218, 174, 86, 0.2);
}

.career-form-input:hover,
.career-form-textarea:hover,
.career-form-select:hover,
.career-form-file:hover {
  border-color: var(--color-primary);
}

/* File input button styling */
.career-form-file::file-selector-button {
  padding: 0.5rem 1rem;
  margin-right: 1rem;
  border: none;
  border-radius: 0.5rem;
  background-color: var(--color-primary);
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.career-form-file::file-selector-button:hover {
  background-color: var(--color-primary-700);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(218, 174, 86, 0.3);
}

.career-form-file::file-selector-button:active {
  transform: translateY(0);
}

/* For WebKit browsers (Chrome, Safari, Edge) */
.career-form-file::-webkit-file-upload-button {
  padding: 0.5rem 1rem;
  margin-right: 1rem;
  border: none;
  border-radius: 0.5rem;
  background-color: var(--color-primary);
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.career-form-file::-webkit-file-upload-button:hover {
  background-color: var(--color-primary-700);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(218, 174, 86, 0.3);
}

.career-form-input::placeholder,
.career-form-textarea::placeholder {
  color: #9ca3af;
}

.career-form-select {
  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='%23374151' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.career-form-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='%23DAAE56' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
}

.career-submit-btn {
  background-color: var(--color-primary);
  color: var(--color-white);
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.career-submit-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.career-submit-btn:hover::before {
  width: 300px;
  height: 300px;
}

.career-submit-btn:hover {
  background-color: var(--color-primary-700);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(218, 174, 86, 0.4);
}

.career-submit-btn:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(218, 174, 86, 0.3);
}

/* Career Info Styles */
.career-info-wrapper {
  padding: 0;
}

.career-info-heading {
  color: var(--color-gray-900);
  margin-bottom: 1rem;
}

.career-info-description {
  color: var(--color-gray-600);
  margin-bottom: 2rem;
  line-height: 1.75;
}

.career-benefit-card {
  background-color: white;
  padding: 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.career-benefit-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.career-benefit-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background-color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.career-benefit-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-gray-700);
  margin-bottom: 0.25rem;
}

.career-benefit-value {
  font-size: 0.875rem;
  color: var(--color-gray-600);
}

.career-contact-section {
  margin-top: 2rem;
}

.career-contact-heading {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-gray-900);
  margin-bottom: 1rem;
}

.career-contact-text {
  color: var(--color-gray-600);
  margin-bottom: 1rem;
}

.career-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.career-contact-info p {
  color: var(--color-gray-700);
  display: flex;
  align-items: center;
}

.career-contact-info a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.career-contact-info a:hover {
  text-decoration: underline;
}

/* Services Navigation Section */
.services-nav-section {
  background-color: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
}

.services-nav-wrapper {
  width: 100%;
}

.service-nav-link {
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-block;
  min-height: 100px;
}

@media (min-width: 768px) {
  .service-nav-link {
    min-height: 120px;
  }
}

.service-nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(218, 174, 86, 0.1), transparent);
  transition: left 0.5s ease;
}

.service-nav-link:hover::before {
  left: 100%;
}

.service-nav-link:hover {
  transform: translateY(-2px);
}

.service-nav-link i {
  transition: transform 0.3s ease, color 0.3s ease;
  display: block;
}

.service-nav-link:hover i {
  transform: scale(1.15);
  color: var(--color-primary-700);
}

.service-nav-link img {
  transition: transform 0.3s ease, filter 0.3s ease;
  display: block;
}

.service-nav-link:hover img {
  transform: scale(1.15);
  filter: brightness(1.1);
}

.service-nav-link span {
  white-space: nowrap;
}

/* Mobile specific adjustments */
@media (max-width: 767px) {
  .service-nav-link {
    min-width: 0;
    flex: 0 0 calc(50% - 0.375rem);
    min-height: 100px;
  }
  
  .service-nav-link i {
    font-size: 2rem !important;
  }
  
  .service-nav-link img {
    width: 3rem !important;
    height: 3rem !important;
  }
  
  .service-nav-link span {
    font-size: 0.875rem !important;
    line-height: 1.2;
  }
}

@media (min-width: 768px) {
  .service-nav-link {
    min-height: 120px;
  }
}

/* Mobile specific adjustments */
@media (max-width: 767px) {
  .service-nav-link {
    min-width: 0;
    flex: 0 0 calc(50% - 0.375rem);
  }
  
  .service-nav-link i {
    font-size: 2rem !important;
  }
  
  .service-nav-link span {
    font-size: 0.875rem !important;
    line-height: 1.2;
  }
}
  