/* ===================================
   CSS Variables - Mubeen Calligraphy
   =================================== */
/* Updated to modern light theme with clean color palette */
:root {
  --primary-red: #ec1c24;
  --secondary-yellow: #ffca05;
  --white: #ffffff;
  --black: #1a1a1a;
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --bg-tertiary: #f3f4f6;
  --text-primary: #1a1a1a;
  --text-secondary: #6b7280;
  --text-tertiary: #9ca3af;
  --border-color: #e5e7eb;
  --border-color-hover: #d1d5db;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.1);
  --gradient-overlay: linear-gradient(135deg, rgba(248, 249, 250, 0.09) 0%, rgba(255, 255, 255, 0.151) 100%);
}

/* ===================================
   Global Styles
   =================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Clean white background for modern light theme */
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

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

/* ===================================
   Typography
   =================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

h1 {
  font-size: 3.5rem;
}
h2 {
  font-size: 2.5rem;
}
h3 {
  font-size: 1.75rem;
}
h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===================================
   Buttons
   =================================== */
.btn {
  display: inline-block;
  padding: 15px 40px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary-red);
  color: var(--white);
}

.btn-primary:hover {
  background-color: #c41017;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(236, 28, 36, 0.3);
}

/* Modern secondary button style */
.btn-secondary {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  border: 2px solid var(--border-color);
}

.btn-secondary:hover {
  background-color: var(--text-primary);
  color: var(--white);
  border-color: var(--text-primary);
  box-shadow: var(--shadow-md);
}

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

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

.btn-full {
  width: 100%;
}

/* ===================================
   Header
   =================================== */
/* Clean white header with subtle shadow */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  padding: 20px 0;
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border-color);
}

.header.scrolled {
  padding: 15px 0;
  background-color: rgba(255, 255, 255, 1);
  box-shadow: var(--shadow-md);
}

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

.logo a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: 1px;
}

.logo a:hover {
  color: var(--primary-red);
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
}

.nav-list a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

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

.nav-list a:hover::after,
.nav-list a.active::after {
  width: 100%;
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--primary-red);
}

/* Dropdown */
.dropdown {
  position: relative;
}

/* Clean dropdown menu with modern border */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--white);
  list-style: none;
  padding: 10px 0;
  min-width: 250px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
}

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

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu a {
  display: block;
  padding: 12px 25px;
  color: var(--text-primary);
}

.dropdown-menu a::after {
  display: none;
}

.dropdown-menu a:hover {
  background-color: var(--bg-secondary);
  color: var(--primary-red);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: var(--text-primary);
  transition: all 0.3s ease;
  border-radius: 2px;
}

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

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

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

/* ===================================
   Hero Section
   =================================== */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {padding-top: 50px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/2\ \(2\).png") center / cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-overlay);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  color: var(--bg-primary);
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: var(--text-secondary);
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Animations */
.animate-fade-in {
  animation: fadeInUp 1s ease forwards;
}

.animate-fade-in-delay {
  animation: fadeInUp 1s ease 0.3s forwards;
  opacity: 0;
}

.animate-fade-in-delay-2 {
  animation: fadeInUp 1s ease 0.6s forwards;
  opacity: 0;
}

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

/* ===================================
   Sections
   =================================== */
.section {
  padding: 100px 0;
}

/* Modern light gray background for alternate sections */
.section-dark {
  background-color: var(--bg-secondary);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===================================
   Services Grid
   =================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

/* Modern service card with subtle borders and shadows */
.service-card {
  background-color: var(--white);
  padding: 40px;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

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

.service-icon {
  color: var(--primary-red);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.service-card p {
  color: var(--text-secondary);
  line-height: 1.8;
}

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

.about-content {
  padding: 20px;
}

.about-content p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-image img {
  border-radius: 12px;
  box-shadow: var(--shadow-xl);
}

/* ===================================
   Features & Values
   =================================== */
.features-grid,
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

/* Modern cards with subtle styling */
.feature-card,
.value-card {
  text-align: center;
  padding: 40px 30px;
  background-color: var(--white);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.feature-card:hover,
.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-red);
}

.feature-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-red);
  margin-bottom: 15px;
}

.feature-card h3,
.value-card h3 {
  color: var(--text-primary);
  margin-bottom: 15px;
}

.feature-card p,
.value-card p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
  background-color: var(--primary-red);
  padding: 100px 0;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--white);
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--white);
}

/* ===================================
   Footer
   =================================== */
/* Dark footer for contrast in light theme */
.footer {
  background-color: var(--black);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--white);
}

.footer-col p {
  color: #b0b0b0;
  margin-bottom: 20px;
  line-height: 1.7;
}

.footer-col h4 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.footer-links,
.footer-contact {
  list-style: none;
}

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

.footer-links a {
  color: #b0b0b0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-red);
}

.footer-contact li {
  color: #b0b0b0;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: #b0b0b0;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: var(--primary-red);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #333333;
  color: #b0b0b0;
}

/* ===================================
   Page Hero
   =================================== */
/* Modern gradient background for page hero */
.page-hero {
  padding: 180px 0 100px;
  text-align: center;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
  margin-bottom: 0;
}

.page-hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.page-hero p {
  font-size: 1.2rem;
  color: var(--text-secondary);
}

/* ===================================
   Mission & Vision
   =================================== */
.mission-vision-grid { 
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

/* Clean mission card with modern accent border */
.mission-card {
  padding: 50px;
  background-color: var(--white);
  border-radius: 12px;
  border-left: 4px solid var(--primary-red);
  box-shadow: var(--shadow-md);
}

.icon-wrapper {
  color: var(--primary-red);
  margin-bottom: 20px;
}

.mission-card h2 {
  margin-bottom: 20px;
  color: var(--text-primary);
}

.mission-card p {
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ===================================
   Trust Section
   =================================== */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Modern trust item styling */
.trust-item {
  display: flex;
  gap: 20px;
  padding: 30px;
  background-color: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.trust-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border-color-hover);
}

.trust-icon {
  font-size: 2rem;
  color: var(--secondary-yellow);
  flex-shrink: 0;
}

.trust-item h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.trust-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===================================
   Services Detail
   =================================== */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.service-detail.reverse {
  direction: rtl;
}

.service-detail.reverse > * {
  direction: ltr;
}

.service-detail-image img {
  border-radius: 12px;
  box-shadow: var(--shadow-xl);
}

.service-detail-content h2 {
  margin-bottom: 20px;
  color: var(--text-primary);
}

.service-detail-content p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.8;
}

.service-features {
  list-style: none;
  margin: 30px 0;
}

.service-features li {
  padding: 12px 0 12px 30px;
  color: var(--text-secondary);
  position: relative;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary-yellow);
  font-weight: 700;
  font-size: 1.2rem;
}

/* ===================================
   Warehouse Specific Styles
   =================================== */
.warehouse-intro {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.warehouse-intro p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.8;
}

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

.stat-card {
  text-align: center;
  padding: 40px 20px;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-red);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.equipment-section {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.equipment-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.equipment-card.reverse {
  direction: rtl;
}

.equipment-card.reverse > * {
  direction: ltr;
}

.equipment-image img {
  border-radius: 12px;
  box-shadow: var(--shadow-xl);
}

.equipment-content h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.equipment-content p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 25px;
}

.equipment-features {
  list-style: none;
}

.equipment-features li {
  padding: 10px 0 10px 30px;
  color: var(--text-secondary);
  position: relative;
}

.equipment-features li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--primary-red);
  font-size: 1.2rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

/* Modern process step cards */
.process-step {
  background-color: var(--white);
  padding: 40px 30px;
  border-radius: 12px;
  position: relative;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.process-step:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border-color-hover);
}

.process-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-red);
  opacity: 0.2;
  position: absolute;
  top: 20px;
  right: 20px;
}

.process-step h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.process-step p {
  color: var(--text-secondary);
  line-height: 1.8;
}

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

/* Modern advantage cards */
.advantage-card {
  text-align: center;
  padding: 40px 30px;
  background-color: var(--white);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

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

.advantage-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.advantage-card h3 {
  color: var(--text-primary);
  margin-bottom: 15px;
}

.advantage-card p {
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ===================================
   Gallery Styles
   =================================== */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

/* Modern filter buttons */
.filter-btn {
  padding: 12px 30px;
  background-color: var(--white);
  color: var(--text-primary);
  border: 2px solid var(--border-color);
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--primary-red);
  border-color: var(--primary-red);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  aspect-ratio: 3 / 2;
  border: 1px solid var(--border-color);
}

.gallery-item.hidden {
  display: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  padding: 30px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--white);
}

.gallery-overlay p {
  color: #e0e0e0;
  font-size: 0.9rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox.active {
  display: flex;
}

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

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-caption {
  text-align: center;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.8);
}

.lightbox-caption h3 {
  color: var(--white);
  margin-bottom: 5px;
}

.lightbox-caption p {
  color: #cccccc;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: none;
  font-size: 2rem;
  cursor: pointer;
  padding: 15px 20px;
  transition: background-color 0.3s ease;
  border-radius: 8px;
}

.lightbox-close {
  top: 20px;
  right: 20px;
  font-size: 3rem;
  padding: 10px 20px;
}

.lightbox-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background-color: var(--primary-red);
}

/* ===================================
   Contact Page Styles
   ================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}

/* Clean contact form wrapper */
.contact-form-wrapper {
  background-color: var(--white);
  padding: 50px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.contact-form-wrapper h2 {
  margin-bottom: 15px;
  color: var(--text-primary);
}

.contact-form-wrapper > p {
  color: var(--text-secondary);
  margin-bottom: 30px;
  line-height: 1.7;
}

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

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 8px;
  color: var(--text-primary);
  font-weight: 500;
}

/* Modern form inputs with subtle styling */
.form-group input,
.form-group textarea,
.form-group select {
  padding: 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background-color: var(--white);
  color: var(--text-primary);
}

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

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

.form-error {
  color: var(--primary-red);
  font-size: 0.875rem;
  margin-top: 5px;
  display: none;
}

.form-group.error input,
.form-group.error textarea,
.form-group.error select {
  border-color: var(--primary-red);
}

.form-group.error .form-error {
  display: block;
}

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Modern contact info card */
.contact-info-card {
  background-color: var(--white);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.contact-info-card h3 {
  margin-bottom: 25px;
  color: var(--text-primary);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-icon {
  color: var(--primary-red);
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-text h4 {
  font-size: 1rem;
  margin-bottom: 5px;
  color: var(--text-primary);
}

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

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

.contact-info-text a:hover {
  color: var(--primary-red);
}

.map-container {
  background-color: var(--bg-secondary);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--border-color);
}

.map-container h4 {
  margin-bottom: 15px;
  color: var(--text-primary);
}

.map-container p {
  color: var(--text-secondary);
  margin: 0;
}

/* ===================================
   Success/Error Messages
   =================================== */
.message {
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  display: none;
}

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

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

.message.show {
  display: block;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
  .about-grid,
  .service-detail,
  .equipment-card {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-detail.reverse,
  .equipment-card.reverse {
    direction: ltr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .mission-vision-grid {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  /* Navigation */
  .nav {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    background-color: var(--white);
    padding: 20px;
    transition: left 0.3s ease;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--border-color);
  }

  .nav.active {
    left: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
  }

  .nav-list li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-list a {
    display: block;
    padding: 15px 10px;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background-color: var(--bg-secondary);
    margin-top: 10px;
    border-radius: 8px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .dropdown.active .dropdown-menu {
    max-height: 500px;
  }

  .hamburger {
    display: flex;
  }

  /* Typography */
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .page-hero h1 {
    font-size: 2.5rem;
  }

  /* Sections */
  .section {
    padding: 60px 0;
  }

  .page-hero {
    padding: 140px 0 60px;
  }

  /* Grids */
  .services-grid,
  .features-grid,
  .values-grid,
  .trust-grid,
  .process-grid,
  .advantages-grid {
    grid-template-columns: 1fr;
  }

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

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* Forms */
  .form-row {
    grid-template-columns: 1fr;
  }

  /* Buttons */
  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  /* Lightbox */
  .lightbox-prev,
  .lightbox-next {
    font-size: 1.5rem;
    padding: 10px 15px;
  }

  .lightbox-close {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .contact-form-wrapper,
  .contact-info-card {
    padding: 30px 20px;
  }

  .service-card,
  .feature-card,
  .value-card {
    padding: 30px 20px;
  }
}
