/* ===== CSS Variables ===== */
:root {
  --primary: #ba3f40;
  --primary-dark: #9a3335;
  --secondary: #0d2347;
  --secondary-light: #1a3a6e;
  --primary-dark: #9a3335;
  --primary-darker: #7a2628;
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --text-muted: #888888;
  --white: #ffffff;
  --light-bg: #f8f8f7;
  --border-color: #e5e5e5;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --transition: all 0.3s ease;
  --radius: 8px;
  --radius-lg: 12px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

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

.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--primary);
  color: var(--white);
  padding: 8px 16px;
  z-index: 9999;
}

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

/* ===== Container ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius);
  transition: var(--transition);
  text-align: center;
  cursor: pointer;
}

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

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

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

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

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

.btn-outline:hover {
  background-color: transparent;
  color: var(--white);
}

/* ===== Section Headers ===== */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.section-header-light h2 {
  color: var(--white);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-light);
}

.section-header-light .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  z-index: 1000;
  box-shadow: var(--shadow);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 45px;
  width: auto;
}

.logo-text {
  font-size: 1.3rem;
  font-weight: 700;
}

.logo-vision {
  color: var(--text-dark);
}

.logo-fashion {
  color: #8a2a2b; /* Darker red for better contrast - WCAG AA compliant */
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link.cta-btn {
  background-color: var(--primary-dark);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius);
}

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

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background-color: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-end; /* push content to the right edge */
  margin-top: 70px;
  overflow: hidden;
  padding-right: 0; 
  padding-left: 0;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
  z-index: -1;
}

.hero-content {
  max-width: 600px;
  color: var(--white);
  padding: 60px 0;
  text-align: right;
  margin-right: 60px;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 30px;
  opacity: 0.95;
}

/* ===== About Section ===== */
.about {
  padding: 100px 0;
  background-color: var(--white);
}

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

.about-text h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.7;
}

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

/* ===== Products Section ===== */
.products {
  padding: 70px 0;;
  background-color: var(--light-bg);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 products per row */
  gap: 24px;
}

.product-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.product-image {
  height: 160px;
  overflow: hidden;
}

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

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-content {
  padding: 12px;
}

.product-content h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.product-content p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.5;
}

.product-link {
  color: var(--primary);
  font-weight: 500;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.product-link:hover {
  color: var(--primary-dark);
}

.products-cta {
  text-align: center;
  margin-top: 35px;
}



@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== CTA Banner ===== */
.cta-banner {
  background-color: var(--primary);
  padding: 80px 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Services Section ===== */
.services {
  padding: 70px 0;
  background-color: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 per row on desktop */
  gap: 24px; /* spacing between cards */
}

.service-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.service-image {
  height: 150px;
  overflow: hidden;
}

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

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-content {
  padding: 18px;
}

.service-content h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.service-content p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.5;
}

.services-cta {
  text-align: center;
  margin-top: 34px;
}

/* Responsive grid */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr); 
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr; 
  }
}



/* ===== Why Choose Us ===== */
.why-choose-us {
  padding: 70px 0;
  background-color: var(--light-bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px; /* reduced from 24px */
}

.feature-card {
  background-color: var(--white);
  padding: 22px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

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

.feature-icon {
  width: 52px;
  height: 52px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: var(--white);
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.5;
}

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

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== Mission & Vision ===== */
.mission-vision {
  padding: 70px 0;
  background-color: var(--secondary);
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px; /* reduced from 30px */
}

.mv-card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.mv-badge {
  display: inline-block;
  background-color: var(--white);
  color: var(--secondary);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.60rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.mv-card h3 {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.mv-card p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .mission-vision-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Contact Section ===== */
.contact {
  padding: 100px 0;
  background-color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info {
  background-color: var(--light-bg);
  padding: 40px;
  border-radius: var(--radius-lg);
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.contact-item h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text-dark);
}

.contact-item p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.5;
}

.contact-item a {
  color: var(--text-light);
  display: block;
  min-height: 44px;
  padding: 8px 12px;
  margin: -8px -12px;
  line-height: 1.4;
}

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

.contact-social {
  display: flex;
  gap: 16px; /* Increased gap for better touch target spacing */
  margin-top: 30px;
}

.social-link {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
}

.social-link img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  border-radius: 50%;
}

.contact-map {
  min-height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* ===== Reviews Section ===== */
.reviews {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.review-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.review-stars {
  margin-bottom: 16px;
}

.review-stars span {
  color: #ffc107;
  font-size: 1.2rem;
}

.review-text {
  color: var(--white);
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
}

.review-author h3 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.review-author span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

/* ===== FAQ Section ===== */
.faq {
  padding: 100px 0;
  background-color: var(--light-bg);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 16px;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--primary);
  color: var(--white);
  padding: 18px 24px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  transition: var(--transition);
}

.faq-question:hover {
  background-color: var(--primary-dark);
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  transition: var(--transition);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 20px 24px;
  background-color: var(--white);
  color: var(--text-light);
  line-height: 1.7;
  border-radius: 0 0 var(--radius) var(--radius);
  border: 1px solid var(--border-color);
  border-top: none;
}

/* ===== Footer ===== */
.footer {
  background-color: var(--secondary);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo-img {
  height: 40px;
  width: auto;
  filter: brightness(1.1);
}

.footer-brand .logo-text {
  color: var(--white);
}

.footer-brand .logo-vision {
  color: var(--white);
}

.footer-brand .logo-fashion {
  color: #ff9a9b; /* Light coral for better contrast on dark background - WCAG AA compliant */
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.85); /* Improved contrast */
  font-size: 0.95rem;
  line-height: 1.7;
  margin-top: 16px;
}

.footer-links h3,
.footer-contact h3 {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.85); /* Improved contrast */
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-block;
  padding: 4px 0; /* Larger touch target */
  min-height: 44px;
  line-height: 36px;
}

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

.footer-contact p {
  color: rgba(255, 255, 255, 0.85); /* Improved contrast */
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.85); /* Improved contrast */
  display: inline-block;
  padding: 4px 0; /* Larger touch target */
  min-height: 44px;
  line-height: 36px;
}

.footer-contact a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 24px 0;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.85); /* Improved contrast */
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.9); /* Improved contrast */
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 4px; /* Larger touch target */
  min-height: 44px;
}

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

/* ===== Mobile Responsive ===== */
@media (max-width: 1024px) {
  .services-grid,
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header-container {
    height: 60px;
  }

  .logo-img {
    height: 36px;
  }

  .logo-text {
    font-size: 1.1rem;
  }

  .nav {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background-color: var(--white);
    padding: 20px;
    box-shadow: var(--shadow);
    transform: translateY(-150%);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
  }

  .nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }

  .nav-link {
    display: block;
    padding: 12px;
    text-align: center;
  }

  .nav-link.cta-btn {
    display: block;
  }

  .mobile-menu-btn {
    display: flex;
  }

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

  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

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

  .hero {
    margin-top: 60px;
    min-height: 80vh;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

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

  .about-image {
    order: -1;
  }

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

  .services-grid,
  .features-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

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

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

  .contact-map {
    min-height: 300px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 20px;
    text-align: center;
  }

  .footer-bottom p {
    flex-wrap: wrap;
    justify-content: center;
  }

  /* Mobile centered content */
  .hero {
    justify-content: center;
  }

  .hero-content {
    text-align: center;
    margin-right: 0;
    padding: 40px 20px;
  }

  .hero-content h1,
  .hero-content p {
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .about-text {
    text-align: center;
  }

  .about-text h3,
  .about-text p {
    text-align: center;
  }

  .about-image img {
    margin: 0 auto;
  }

  .product-content,
  .service-content {
    text-align: center;
  }

  .product-content h3,
  .product-content p,
  .service-content h3,
  .service-content p {
    text-align: center;
  }

  .product-link {
    justify-content: center;
  }

  .feature-card {
    text-align: center;
  }

  .mv-card {
    text-align: center;
  }

  .contact-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-social {
    justify-content: center;
  }

  .review-card {
    text-align: center;
  }

  .review-author {
    justify-content: center;
  }

  .cta-banner h2 {
    font-size: 1.5rem;
  }

  .cta-banner p {
    font-size: 0.95rem;
    padding: 0 10px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

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

  .faq-question {
    padding: 14px 16px;
    font-size: 0.9rem;
  }

  .faq-answer p {
    padding: 16px;
    font-size: 0.9rem;
  }

  .footer-brand p {
    font-size: 0.9rem;
    padding: 0 10px;
  }

  .footer-links h3,
  .footer-contact h3 {
    font-size: 1rem;
    margin-bottom: 16px;
  }

  .footer-links a,
  .footer-contact p {
    font-size: 0.9rem;
  }
}

/* ===== Animations ===== */
.product-card,
.service-card,
.feature-card,
.review-card,
.mv-card {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Animation state for JS-enabled browsers */
.js-animate .product-card,
.js-animate .service-card,
.js-animate .feature-card,
.js-animate .review-card,
.js-animate .mv-card {
  opacity: 0;
  transform: translateY(30px);
}

.js-animate .product-card.animate-in,
.js-animate .service-card.animate-in,
.js-animate .feature-card.animate-in,
.js-animate .review-card.animate-in,
.js-animate .mv-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animation delays */
.products-grid .product-card:nth-child(1),
.services-grid .service-card:nth-child(1),
.features-grid .feature-card:nth-child(1) { transition-delay: 0.1s; }
.products-grid .product-card:nth-child(2),
.services-grid .service-card:nth-child(2),
.features-grid .feature-card:nth-child(2) { transition-delay: 0.2s; }
.products-grid .product-card:nth-child(3),
.services-grid .service-card:nth-child(3),
.features-grid .feature-card:nth-child(3) { transition-delay: 0.3s; }
.products-grid .product-card:nth-child(4),
.services-grid .service-card:nth-child(4),
.features-grid .feature-card:nth-child(4) { transition-delay: 0.4s; }
.products-grid .product-card:nth-child(5),
.services-grid .service-card:nth-child(5),
.features-grid .feature-card:nth-child(5) { transition-delay: 0.5s; }
.products-grid .product-card:nth-child(6),
.services-grid .service-card:nth-child(6),
.features-grid .feature-card:nth-child(6) { transition-delay: 0.6s; }
.products-grid .product-card:nth-child(7),
.features-grid .feature-card:nth-child(7) { transition-delay: 0.7s; }
.products-grid .product-card:nth-child(8),
.features-grid .feature-card:nth-child(8) { transition-delay: 0.8s; }

.reviews-grid .review-card:nth-child(1) { transition-delay: 0.1s; }
.reviews-grid .review-card:nth-child(2) { transition-delay: 0.2s; }
.reviews-grid .review-card:nth-child(3) { transition-delay: 0.3s; }

.mission-vision-grid .mv-card:nth-child(1) { transition-delay: 0.1s; }
.mission-vision-grid .mv-card:nth-child(2) { transition-delay: 0.2s; }

/* Header scrolled state */
.header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* ===== Small Mobile (480px and below) ===== */
@media (max-width: 480px) {
  .header-container {
    height: 50px;
  }

  .logo-img {
    height: 30px;
  }

  .logo-text {
    font-size: 0.95rem;
  }

  .nav {
    top: 50px;
  }

  .container {
    padding: 0 16px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .hero {
    margin-top: 50px;
    min-height: 70vh;
  }

  .hero-content {
    padding: 30px 16px;
  }

  .hero-content h1 {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .section-subtitle {
    font-size: 0.9rem;
  }

  .about,
  .products,
  .services,
  .why-choose-us,
  .mission-vision,
  .contact,
  .reviews,
  .faq {
    padding: 50px 0;
  }

  .section-header {
    margin-bottom: 30px;
  }

  .about-text h3 {
    font-size: 1.3rem;
  }

  .about-text p {
    font-size: 0.95rem;
  }

  .product-card,
  .service-card {
    margin-bottom: 16px;
  }

  .product-image,
  .service-image {
    height: 180px;
  }

  .product-content h3,
  .service-content h3 {
    font-size: 1rem;
  }

  .product-content p,
  .service-content p {
    font-size: 0.85rem;
  }

  .feature-card {
    padding: 20px;
  }

  .feature-icon {
    width: 48px;
    height: 48px;
  }

  .feature-card h3 {
    font-size: 1rem;
  }

  .feature-card p {
    font-size: 0.85rem;
  }

  .mv-card {
    padding: 20px;
  }

  .mv-card h3 {
    font-size: 1rem;
  }

  .mv-card p {
    font-size: 0.9rem;
  }

  .review-card {
    padding: 20px;
  }

  .review-text {
    font-size: 0.9rem;
  }

  .review-author h3 {
    font-size: 0.95rem;
  }

  .contact-info {
    padding: 24px 20px;
  }

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

  .contact-item p {
    font-size: 0.9rem;
  }

  .contact-map {
    min-height: 250px;
  }

  .faq-question {
    padding: 12px 14px;
    font-size: 0.85rem;
  }

  .faq-icon {
    font-size: 1.2rem;
  }

  .faq-answer p {
    padding: 14px;
    font-size: 0.85rem;
  }

  .footer {
    padding: 50px 0 0;
  }

  .footer-grid {
    gap: 30px;
    padding-bottom: 30px;
  }

  .footer-logo-img {
    height: 35px;
  }

  .footer-brand .logo-text {
    font-size: 1.1rem;
  }

  .footer-brand p {
    font-size: 0.85rem;
  }

  .footer-links h3,
  .footer-contact h3 {
    font-size: 0.95rem;
    margin-bottom: 12px;
  }

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

  .footer-links a,
  .footer-contact p,
  .footer-contact a {
    font-size: 0.85rem;
  }

  .footer-bottom {
    padding: 20px 0;
  }

  .footer-bottom p {
    font-size: 0.8rem;
  }

  .cta-banner {
    padding: 50px 0;
  }

  .cta-banner h2 {
    font-size: 1.3rem;
  }

  .cta-banner p {
    font-size: 0.9rem;
  }
}
