/* =============================================
   Font Face Declarations
   ============================================= */
/* Open Sans - Light 300 */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/open-sans/OpenSans-Light.ttf") format("truetype");
}

/* Open Sans - Regular 400 */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/open-sans/OpenSans-Regular.ttf") format("truetype");
}

/* Open Sans - SemiBold 600 */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/open-sans/OpenSans-SemiBold.ttf") format("truetype");
}

/* Open Sans - Bold 700 */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/open-sans/OpenSans-Bold.ttf") format("truetype");
}

/* Poppins - Regular 400 */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/poppins/Poppins-Regular.ttf") format("truetype");
}

/* Poppins - SemiBold 600 */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/poppins/Poppins-SemiBold.ttf") format("truetype");
}

/* Poppins - Bold 700 */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/poppins/Poppins-Bold.ttf") format("truetype");
}

/* =============================================
   CSS Variables
   ============================================= */
:root {
  --primary-color: #e05f03;
  --primary-dark: #c75503;
  --primary-light: #ff8c42;
  --secondary-color: #32599d;
  --text-dark: #222;
  --text-gray: #666;
  --text-light: #999;
  --bg-white: #ffffff;
  --bg-light: #f8f9fa;
  --bg-footer: #7a0c0c;
  --border-color: #e5e5e5;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;

  --font-primary: "Open Sans", sans-serif;
  --font-headings: "Poppins", sans-serif;

  --container-width: 1200px;
  --spacing: 2rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--bg-white);
  overflow-x: hidden;
}

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

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

a:hover {
  color: var(--primary-dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-headings);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

h1 {
  font-size: clamp(2rem, 5vw, 2.5rem);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.2rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 1.75rem);
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

ul {
  list-style: none;
}

/* =============================================
   Accessibility
   ============================================= */
/* Skip to main content link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary-color);
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  z-index: 10000;
  font-weight: 600;
}

.skip-link:focus {
  top: 0;
}

/* Enhanced focus indicators */
*:focus {
  outline: 3px solid var(--primary-color);
  outline-offset: 2px;
}

*:focus:not(:focus-visible) {
  outline: none;
}

*:focus-visible {
  outline: 3px solid var(--primary-color);
  outline-offset: 2px;
}

/* Reduced motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Screen reader only content */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* =============================================
   Container
   ============================================= */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* =============================================
   Header & Navigation
   ============================================= */
.header {
  background: var(--bg-white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.logo img {
  height: 80px;
  width: auto;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 0.5rem;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text-dark);
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.nav-menu {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.nav-menu li a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--text-dark);
  background-color: #f0f0f0;
  border-radius: 5px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
}

.nav-menu li a:hover,
.nav-menu li a.active {
  background-color: var(--primary-color);
  color: var(--bg-white);
}

/* =============================================
   Hero Slider
   ============================================= */
.hero-slider {
  position: relative;
  height: 500px;
  overflow: hidden;
  background-color: #000;
}

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

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-caption {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background-color: rgba(213, 106, 64, 0.85);
  color: var(--bg-white);
  padding: 1rem 2rem;
  border-radius: 5px;
}

.slide-caption h2 {
  color: var(--bg-white);
  margin: 0;
  font-size: 1.25rem;
  font-weight: 400;
  text-transform: lowercase;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.85);
  color: var(--text-dark);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10;
}

.slider-btn:hover {
  background-color: rgba(255, 255, 255, 1);
}

.slider-btn.prev {
  left: 1rem;
}

.slider-btn.next {
  right: 1rem;
}

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

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

.slider-dot.active,
.slider-dot:hover {
  background-color: rgba(255, 255, 255, 1);
}

/* =============================================
   Main Content
   ============================================= */
.main-content {
  padding: 3rem 0;
}

/* Welcome Section - Enhanced */
.welcome-section {
  text-align: center;
  padding: 4rem 0;
  margin-bottom: 3rem;
}

.welcome-content {
  max-width: 800px;
  margin: 0 auto;
}

.welcome-badge {
  display: inline-block;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  color: var(--bg-white);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.welcome-content h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.welcome-subtitle {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 2rem;
}

.divider-center {
  width: 80px;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  margin: 2rem auto;
  border-radius: 10px;
}

.welcome-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 2.5rem;
}

.welcome-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Stats Section */
.stats-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding: 3rem 0;
  margin-bottom: 4rem;
  background: var(--bg-light);
  border-radius: 15px;
  padding: 3rem 2rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
}

.stat-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-gray);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.welcome-section {
  margin-bottom: 1.5rem;
}

.section-header {
  margin-bottom: 1.5rem;
}

.link-arrow {
  display: inline-block;
  color: var(--primary-color);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  transition: var(--transition);
}

.link-arrow:hover {
  transform: translateX(5px);
}

.welcome-text {
  font-size: 1.05rem;
  line-height: 1.8;
}

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

/* Section Titles */
.section-title-wrapper {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title-wrapper h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 0.5rem;
}

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

.services-section {
  margin: 4rem 0;
}

.section-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Why Choose Us Section */
.why-choose-section {
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
  padding: 4rem 0;
  margin: 4rem 0;
  border-radius: 15px;
}

.why-choose-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-choose-text h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.why-choose-text > p {
  font-size: 1.1rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.features-list {
  list-style: none;
  margin-bottom: 2.5rem;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.features-list li svg {
  flex-shrink: 0;
  color: var(--primary-color);
  width: 24px;
  height: 24px;
}

.why-choose-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-placeholder {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--primary-color)
  );
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-hover);
}

.image-placeholder svg {
  width: 100px;
  height: 100px;
  color: rgba(255, 255, 255, 0.3);
}

/* Link with Icon */
.link-with-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  transition: var(--transition);
  padding: 1rem 2rem;
  background: var(--bg-light);
  border-radius: 10px;
}

.link-with-icon:hover {
  transform: translateX(5px);
  background: var(--primary-color);
  color: var(--bg-white);
}

.link-with-icon:hover svg {
  transform: translateX(5px);
}

.link-with-icon svg {
  transition: var(--transition);
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--bg-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

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

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--bg-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

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

.btn-outline:hover {
  background-color: var(--secondary-color);
  color: var(--bg-white);
  transform: translateY(-2px);
}

/* =============================================
   Services Grid
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.service-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-white);
  border-radius: 10px;
  transition: var(--transition);
}

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

.service-icon {
  margin: 0 auto 1.5rem;
  color: var(--secondary-color);
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-gray);
}

.cta-link {
  text-align: left;
  margin-top: 2rem;
}

/* Services Page Specific */
.services-page .service-card {
  background: var(--bg-light);
}

/* Home Page Compact Services Grid */
.services-grid-home {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 3rem 0;
}

.service-card-compact {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-white);
  border-radius: 10px;
  border: 2px solid transparent;
  transition: var(--transition);
}

.service-card-compact:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-color);
}

.service-icon-compact {
  margin: 0 auto 1rem;
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: var(--bg-light);
  border-radius: 50%;
  transition: var(--transition);
}

.service-card-compact:hover .service-icon-compact {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--bg-white);
}

.service-card-compact h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.service-card-compact p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-gray);
  margin: 0;
}

.services-bottom {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: var(--bg-light);
  border-radius: 10px;
}

.services-description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.services-description strong {
  color: var(--primary-color);
}

.services-bottom .btn {
  margin-top: 0.5rem;
}

/* =============================================
   Page Content
   ============================================= */
.page-content {
  padding: 2rem 0 3rem;
}

.breadcrumbs {
  font-size: 0.9rem;
  margin-bottom: 2rem;
  color: var(--text-gray);
}

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

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

.divider {
  height: 1px;
  background-color: var(--border-color);
  margin: 1.5rem 0;
}

.divider.small {
  margin: 1rem 0;
}

.intro-text {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}

/* Page Header */
.page-header {
  text-align: center;
  padding: 3rem 0 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.page-header h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 1rem 0;
}

.page-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-gray);
  margin: 1.5rem 0;
}

/* Services Grid - Detailed Page */
.services-grid-detailed {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.service-card-detailed {
  background: var(--bg-white);
  padding: 2.5rem 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  transition: var(--transition);
}

.service-card-detailed:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-color);
}

.service-icon-detailed {
  margin: 0 auto 1.5rem;
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: var(--bg-light);
  border-radius: 50%;
  transition: var(--transition);
}

.service-card-detailed:hover .service-icon-detailed {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--bg-white);
  transform: scale(1.1);
}

.service-card-detailed h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  text-align: center;
}

.service-card-detailed p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-gray);
  text-align: center;
}

/* Services CTA Section */
.services-cta-section {
  text-align: center;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
  padding: 4rem 2rem;
  border-radius: 15px;
  margin: 4rem 0 2rem;
}

.services-cta-section h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.services-cta-section p {
  font-size: 1.1rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================
   Content with Sidebar Layout
   ============================================= */
.content-with-sidebar {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.main-column {
  min-width: 0;
}

.sidebar {
  min-width: 0;
}

.sidebar-box {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.sidebar-box h3 {
  font-size: 1.25rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

.sidebar-intro {
  font-size: 0.95rem;
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* About Page Sections */
.about-intro-section {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
}

.about-intro-section h2 {
  color: var(--secondary-color);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.about-intro-section p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 1.5rem;
}

.about-intro-section p:last-child {
  margin-bottom: 0;
}

.why-choose-box {
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
  padding: 2.5rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
}

.why-choose-box h2 {
  color: var(--secondary-color);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about-cta {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  color: var(--bg-white);
  padding: 3rem 2.5rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: var(--shadow-hover);
}

.about-cta h3 {
  color: var(--bg-white);
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.about-cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--bg-white);
}

.about-cta .btn {
  background-color: var(--bg-white);
  color: var(--primary-color);
  border-color: var(--bg-white);
}

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

/* Checkmark List */
.checkmark-list {
  list-style: none;
  padding: 0;
}

.checkmark-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
}

.checkmark-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.2rem;
}

/* Enhanced Checkmark List */
.checkmark-list-enhanced {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
}

.checkmark-list-enhanced li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  background: var(--bg-white);
  border-radius: 8px;
  transition: var(--transition);
}

.checkmark-list-enhanced li:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow);
}

.checkmark-list-enhanced li svg {
  flex-shrink: 0;
  color: var(--primary-color);
  width: 24px;
  height: 24px;
  margin-top: 2px;
}

.checkmark-list-enhanced li span {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-gray);
}

/* Suppliers Grid */
.suppliers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.supplier-link {
  display: block;
  background: var(--bg-white);
  padding: 1rem;
  border-radius: 5px;
  transition: var(--transition);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.supplier-link:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow);
}

.supplier-link img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* =============================================
   Portfolio Grid
   ============================================= */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.portfolio-item {
  background: var(--bg-white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
}

.portfolio-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

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

.portfolio-item:hover img {
  opacity: 0.9;
}

.portfolio-caption {
  padding: 1.25rem;
}

.portfolio-caption h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.portfolio-caption p {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin: 0;
}

/* =============================================
   Lightbox
   ============================================= */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  position: relative;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  margin: 0 auto;
}

.lightbox-caption {
  color: var(--bg-white);
  text-align: center;
  margin-top: 1rem;
  font-size: 1.1rem;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 3rem;
  color: var(--bg-white);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10001;
  line-height: 1;
}

.lightbox-close:hover {
  color: var(--primary-color);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--bg-white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10001;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background-color: rgba(255, 255, 255, 0.4);
}

.lightbox-prev {
  left: 2rem;
}

.lightbox-next {
  right: 2rem;
}

/* =============================================
   Contact Page
   ============================================= */
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.contact-card {
  background: var(--bg-white);
  padding: 2.5rem 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
}

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

.contact-card-icon {
  margin: 0 auto 1.5rem;
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: var(--bg-light);
  border-radius: 50%;
}

.contact-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.contact-card .contact-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.contact-card .contact-value a {
  color: var(--primary-color);
  text-decoration: none;
}

.contact-card .contact-value a:hover {
  text-decoration: underline;
}

.contact-card .contact-description {
  font-size: 0.95rem;
  color: var(--text-gray);
  margin: 0;
}

.contact-info-section {
  background: var(--bg-light);
  padding: 3rem;
  border-radius: 10px;
  margin-top: 3rem;
}

.contact-info-section h2 {
  color: var(--secondary-color);
}

.contact-info-section p {
  font-size: 1.05rem;
  line-height: 1.8;
}

/* =============================================
   Contact Form (Legacy - Kept for reference)
   ============================================= */
.contact-form {
  margin-top: 2rem;
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: var(--transition);
}

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

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

.error-message {
  display: block;
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.form-message {
  padding: 1rem;
  border-radius: 5px;
  margin-bottom: 1.5rem;
  display: none;
}

.form-message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  display: block;
}

.form-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  display: block;
}

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 5px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon {
  flex-shrink: 0;
  color: var(--secondary-color);
}

.contact-item strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--text-dark);
}

.contact-item a {
  color: var(--primary-color);
}

/* =============================================
   Footer
   ============================================= */
.footer {
  background-color: var(--bg-footer);
  color: #d3d3d3;
  padding: 2rem 0;
  margin-top: 4rem;
}

.footer .copyright {
  text-align: center;
  font-size: 0.9rem;
  margin: 0;
}

/* =============================================
   Responsive Design
   ============================================= */
@media (max-width: 1024px) {
  :root {
    --spacing: 1.5rem;
  }

  .content-with-sidebar {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .why-choose-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .why-choose-image {
    order: -1;
  }

  .services-grid-home {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .services-grid-detailed {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    background-color: var(--bg-white);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 0;
    transition: right 0.3s ease;
    align-items: stretch;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu li {
    margin-bottom: 0.5rem;
  }

  .nav-menu li a {
    width: 100%;
  }

  .hero-slider {
    height: 350px;
  }

  .slide-caption {
    bottom: 1rem;
    left: 1rem;
    padding: 0.75rem 1.25rem;
  }

  .slide-caption h2 {
    font-size: 1rem;
  }

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

  .services-grid-home {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .stats-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .welcome-cta {
    flex-direction: column;
    gap: 1rem;
  }

  .welcome-cta .btn {
    width: 100%;
    text-align: center;
  }

  .why-choose-section {
    padding: 3rem 0;
    margin: 3rem 0;
  }

  .features-list li {
    font-size: 1rem;
  }

  .services-grid-detailed {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .cta-buttons .btn {
    width: 100%;
  }

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

  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
  }

  .lightbox-prev {
    left: 0.5rem;
  }

  .lightbox-next {
    right: 0.5rem;
  }

  .lightbox-close {
    top: 1rem;
    right: 1rem;
    font-size: 2.5rem;
  }

  .suppliers-grid {
    grid-template-columns: 1fr;
  }

  .about-intro-section,
  .why-choose-box,
  .about-cta {
    padding: 2rem 1.5rem;
  }

  .checkmark-list-enhanced li {
    padding: 1rem;
  }

  .contact-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-info-section {
    padding: 2rem 1.5rem;
  }
}

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

  .hero-slider {
    height: 250px;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
  }

  .slider-btn svg {
    width: 20px;
    height: 20px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .stats-section {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .welcome-badge {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
  }

  .welcome-subtitle {
    font-size: 1rem;
  }
}
