:root {
  /* --- COLOURS --- */
  --color-primary: #1E2761;   /* Deep blue — hero, headers, key accents */
  --color-accent: #408EC6;    /* Light blue — links, highlights */
  --color-highlight: #ffc705; /* Soft yellow — calls to action or accents */
  --color-bg: #ffffff;        /* Page background */
  --color-text: #222222;      /* Default text color */
  --color-muted: #666666;     /* Subtext or placeholders */

  /* --- TYPOGRAPHY --- */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Roboto', sans-serif;
}

/* Reset styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-bg);
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.6;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  display: block;
  position: relative;
}

/* HEADINGS */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Links */
a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* Focus styles for accessibility */
a:focus,
button:focus {
  outline: 3px solid var(--color-highlight);
  outline-offset: 2px;
}

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

.product-card:focus {
  outline: 3px solid var(--color-highlight);
  outline-offset: 4px;
}

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

.container {
  width: 75%;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  padding: 0 20px;
  grid-template-columns: repeat(12, 1fr);
  gap: 15px;
  align-items: center;
  position: relative;
}

/* HEADER - FROSTED GLASS EFFECT */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(30, 39, 97, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

@supports not (backdrop-filter: blur(12px)) {
  .site-header {
    background: rgba(30, 39, 97, 0.95);
  }
}

/* Header shrink effect */
.site-header.shrink {
  padding: 10px 0;
  background: rgba(30, 39, 97, 0.7);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

/* Logo */
.logo {
  grid-column: 1 / span 3;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  padding-left: 0;
}

.logo img {
  width: 120px;
  height: auto;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.shrink .logo img {
  width: 100px;
  transform: translateY(-3px);
  opacity: 0.9;
}

/* Navigation Links */
.nav-links {
  grid-column: 4 / span 6;
  display: flex;
  justify-content: center;
  gap: 35px;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  color: #ffffff;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.3px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover {
  color: var(--color-highlight);
}

/* Center-out underline */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 0%;
  height: 3px;
  background-color: var(--color-highlight);
  box-shadow: 0 0 8px var(--color-highlight);
  transition: all 0.4s ease;
  transform: translateX(-50%);
  border-radius: 2px;
}

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

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

.site-header.shrink .nav-links a {
  font-size: 0.9rem;
  letter-spacing: 0;
}

/* Contact Button */
.contact-btn {
  grid-column: 11 / span 2;
  display: flex;
  justify-content: flex-end;
}

.contact-btn button {
  background: var(--color-primary);
  font-family: var(--font-heading);
  color: #fff;
  border: none;
  padding: 12px 26px;
  font-size: 1rem;
  border-radius: 85px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-btn button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(255, 255, 102, 0.5);
  background: var(--color-accent);
  transform: translateY(-2px);
}

.site-header.shrink .contact-btn button {
  padding: 8px 18px;
  font-size: 0.9rem;
  transform: scale(0.95);
  border-radius: 99px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* HERO SECTION */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url('https://res.cloudinary.com/djmyiuu5k/image/upload/v1760919773/hero-bg_ccg6ja.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 39, 97, 0.45);
  backdrop-filter: blur(2px);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
  color: #fff;
  padding: 0 20px;
  animation: fadeInUp 1s ease;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-content h1::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--color-highlight);
  margin: 15px auto 0;
  border-radius: 2px;
}

.hero-content p {
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: #f8f8f8;
  margin-bottom: 25px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.hero-btn {
  background: var(--color-highlight);
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 12px 28px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background: var(--color-accent);
  color: #fff;
  transform: translateY(-3px);
}

.scroll-down {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  color: #ffc705;
  font-size: 2rem;
  z-index: 10;
  opacity: 0;
  animation: fadeIn 1.2s ease forwards, bounce 2s infinite ease-in-out 1.2s;
  transition: opacity 0.3s ease;
  background: none;
  border: none;
}

.scroll-down svg {
  width: 48px;
  height: 48px;
  stroke: #ffc705;
  filter: drop-shadow(0 0 6px rgba(255, 255, 102, 0.6));
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.scroll-down:hover svg {
  transform: scale(1.1);
  filter: drop-shadow(0 0 10px rgba(255, 255, 102, 0.9));
}

.scroll-down:hover {
  opacity: 1;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

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

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

/* FEATURED PRODUCTS SECTION */
.featured-products {
  background: #373B44;  /* fallback for old browsers */
background: -webkit-linear-gradient(to bottom, #002c72, #373B44);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to bottom, #04398e, #373B44); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  padding: 100px 0;
  position: relative;
}

.featured-products .section-title {
  font-family: "Outfit", sans-serif;
  font-size: 2.8rem;
  color: #ffffff;
  margin-bottom: 20px;
}

.featured-products .section-subtitle {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 60px;
  line-height: 1.6;
}

.products-header {
  grid-column: 1 / -1;
  text-align: center;
  margin-bottom: 40px;
}

.products-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  width: 100%;
}

/* Product Card Styling */
.product-card {
  background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
  background-size: 200% 100%;
  animation: shimmer 1.5s linear infinite;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  cursor: pointer;
}

@keyframes shimmer {
  to {
    background-position-x: -200%;
  }
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.3s ease;
}

.product-card img.loaded {
  opacity: 1;
}

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

.product-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 20px;
  border-radius: 8px;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  color: #1E2761;
  font-size: 0.95rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Grid Positioning - Bento Box Layout */
.product-card:nth-child(1) {
  grid-column: 1 / span 4;
  min-height: 400px;
}

.product-card:nth-child(2) {
  grid-column: 5 / span 4;
  min-height: 400px;
}

.product-card:nth-child(3) {
  grid-column: 9 / span 4;
  min-height: 400px;
}

.product-card:nth-child(4) {
  grid-column: 1 / span 6;
  min-height: 350px;
}

.product-card:nth-child(5) {
  grid-column: 7 / span 6;
  min-height: 350px;
}

/* Scroll Animation */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Scroll to Top Button */
#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-primary);
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

#scrollTopBtn:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-3px);
}

#scrollTopBtn.show {
  opacity: 1;
  visibility: visible;
  bottom: 40px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
  /* Mobile menu */
  .mobile-menu-toggle {
    display: flex;
    grid-column: 11 / span 2;
    justify-self: end;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: rgba(30, 39, 97, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
  }

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

  .contact-btn {
    display: none;
  }

  /* Hamburger animation */
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

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

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

  /* Products grid */
  .products-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .product-card:nth-child(1),
  .product-card:nth-child(2),
  .product-card:nth-child(3) {
    grid-column: span 6;
    min-height: 300px;
  }

  .product-card:nth-child(4),
  .product-card:nth-child(5) {
    grid-column: span 6;
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  .container {
    width: 90%;
  }

  .logo img {
    width: 90px;
  }

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

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

  .hero-btn {
    padding: 10px 24px;
    font-size: 0.9rem;
  }
}

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

  .product-card {
    grid-column: 1 / -1 !important;
    min-height: 250px !important;
  }

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

/* ABOUT SECTION */
.about-section {
  padding: 120px 0;
  background-color: var(--color-bg);
  position: relative;
  overflow: hidden;
}

.about-section .container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 60px;
  align-items: center;
}

/* Left Side - Content */
.about-content {
  grid-column: 1 / span 6;
  padding-right: 40px;
}

.about-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.about-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--color-primary);
  line-height: 1.2;
  margin-bottom: 25px;
}

.about-description {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 20px;
}

.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 15px;
}

.read-more-btn:hover {
  background: var(--color-accent);
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(64, 142, 198, 0.3);
  color: #fff;
}

.read-more-btn svg {
  transition: transform 0.3s ease;
}

.read-more-btn:hover svg {
  transform: translateX(5px);
}

/* Right Side - Diagonal Images */
.about-images {
  grid-column: 7 / span 6;
  position: relative;
  height: 650px;
}

.about-image-1,
.about-image-2,
.about-image-3 {
  position: absolute;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image-1:hover,
.about-image-2:hover,
.about-image-3:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

/* First Image - Small, Top Left */
.about-image-1 {
  width: 45%;
  height: 200px;
  top: 0;
  left: 0;
  z-index: 3;
}

/* Second Image - Large, Middle Right */
.about-image-2 {
  width: 60%;
  height: 300px;
  top: 150px;
  left: 30%;
  z-index: 2;
}

/* Third Image - Small, Bottom Right */
.about-image-3 {
  width: 45%;
  height: 200px;
  top: 415px;
  left: 72%;
  z-index: 1;
}

.about-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.about-images img.loaded {
  opacity: 1;
}

/* Decorative Element */
.about-section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, rgba(64, 142, 198, 0.1), rgba(30, 39, 97, 0.1));
  border-radius: 50%;
  top: -100px;
  right: -100px;
  z-index: 0;
}

/* ABOUT SECTION RESPONSIVE DESIGN */

/* Large Desktop - 1400px and above */
@media (min-width: 1400px) {
  .about-images {
    height: 700px;
  }
  
  .about-image-1 {
    height: 220px;
  }
  
  .about-image-2 {
    height: 320px;
  }
  
  .about-image-3 {
    height: 220px;
    top: 450px;
  }
}

/* Large Tablets - 1200px and below */
@media (max-width: 1200px) {
  .about-section .container {
    gap: 50px;
  }

  .about-content {
    padding-right: 20px;
  }

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

  .about-images {
    height: 600px;
  }

  .about-image-1 {
    width: 48%;
    height: 180px;
  }

  .about-image-2 {
    width: 62%;
    height: 280px;
    top: 140px;
  }

  .about-image-3 {
    width: 48%;
    height: 180px;
    top: 400px;
    left: 68%;
  }
}

/* Tablets and below - 992px (HIDE IMAGES, show only text) */
@media (max-width: 992px) {
  .about-section {
    padding: 100px 0;
  }

  .about-section .container {
    gap: 0;
  }

  .about-content {
    grid-column: 1 / -1;
    padding-right: 0;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* HIDE THE IMAGES SECTION COMPLETELY */
  .about-images {
    display: none;
  }

  .about-title {
    font-size: 2.4rem;
  }

  .about-description {
    font-size: 1.05rem;
  }

  /* Adjust decorative element */
  .about-section::before {
    width: 350px;
    height: 350px;
    top: -100px;
    right: -100px;
  }
}

/* Mobile Landscape - 768px and below */
@media (max-width: 768px) {
  .about-section {
    padding: 80px 0;
  }

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

  .about-description {
    font-size: 1rem;
    line-height: 1.7;
  }

  /* Decorative element smaller */
  .about-section::before {
    width: 300px;
    height: 300px;
    top: -80px;
    right: -80px;
  }
}

/* Mobile Portrait - 600px and below */
@media (max-width: 600px) {
  .about-section {
    padding: 70px 0;
  }

  .about-tag {
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
  }

  .about-title {
    font-size: 1.75rem;
    margin-bottom: 20px;
  }

  .about-description {
    font-size: 0.95rem;
    margin-bottom: 15px;
  }

  .read-more-btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }

  .read-more-btn svg {
    width: 18px;
    height: 18px;
  }

  .about-section::before {
    width: 250px;
    height: 250px;
    top: -60px;
    right: -60px;
  }
}

/* Small Mobile - 480px and below */
@media (max-width: 480px) {
  .about-section {
    padding: 60px 0;
  }

  .about-tag {
    font-size: 0.75rem;
    margin-bottom: 10px;
  }

  .about-title {
    font-size: 1.5rem;
    margin-bottom: 18px;
  }

  .about-description {
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 14px;
  }

  .read-more-btn {
    padding: 11px 22px;
    font-size: 0.9rem;
  }

  .about-section::before {
    width: 200px;
    height: 200px;
    top: -50px;
    right: -50px;
  }
}

/* Extra Small Mobile - 375px and below */
@media (max-width: 375px) {
  .about-section {
    padding: 50px 0;
  }

  .about-content {
    max-width: 100%;
  }

  .about-tag {
    font-size: 0.7rem;
    letter-spacing: 1px;
  }

  .about-title {
    font-size: 1.35rem;
    margin-bottom: 15px;
  }

  .about-description {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 12px;
  }

  .read-more-btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }

  .read-more-btn svg {
    width: 16px;
    height: 16px;
  }

  .about-section::before {
    width: 150px;
    height: 150px;
    top: -40px;
    right: -40px;
    opacity: 0.5;
  }
}

/* WHY CHOOSE US SECTION */
.why-choose-us {
  padding: 120px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.why-choose-us::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(64, 142, 198, 0.08), transparent);
  border-radius: 50%;
  top: -150px;
  left: -150px;
  z-index: 0;
}

.why-choose-us::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(30, 39, 97, 0.06), transparent);
  border-radius: 50%;
  bottom: -100px;
  right: -100px;
  z-index: 0;
}

.why-choose-us .container {
  position: relative;
  z-index: 1;
}

/* Section Header */
.why-header {
  grid-column: 1 / -1;
  text-align: center;
  margin-bottom: 70px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.why-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.why-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--color-primary);
  line-height: 1.2;
  margin-bottom: 20px;
}

.why-subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--color-muted);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

/* Features Grid */
.features-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
  width: 100%;
}

/* Feature Card */
.feature-card {
  grid-column: span 3;
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-primary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

/* Feature Icon */
.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, rgba(64, 142, 198, 0.1), rgba(30, 39, 97, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.feature-icon svg {
  stroke: var(--color-accent);
  transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
  transform: scale(1.1) rotate(5deg);
}

.feature-card:hover .feature-icon svg {
  stroke: #ffffff;
  transform: scale(1.1);
}

/* Feature Content */
.feature-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-primary);
  margin-bottom: 15px;
  font-weight: 600;
}

.feature-description {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.7;
  margin: 0;
}

/* RESPONSIVE DESIGN */

/* Tablets - 992px and below */
@media (max-width: 992px) {
  .why-choose-us {
    padding: 100px 0;
  }

  .why-title {
    font-size: 2.4rem;
  }

  .features-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 25px;
  }

  .feature-card {
    grid-column: span 3;
    padding: 35px 25px;
  }

  .feature-card:nth-child(3),
  .feature-card:nth-child(4) {
    grid-column: span 3;
  }
}

/* Mobile Landscape - 768px and below */
@media (max-width: 768px) {
  .why-choose-us {
    padding: 80px 0;
  }

  .why-header {
    margin-bottom: 50px;
  }

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

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

  .features-grid {
    gap: 20px;
  }

  .feature-card {
    grid-column: span 6;
    padding: 30px 20px;
  }

  .feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }

  .feature-icon svg {
    width: 35px;
    height: 35px;
  }

  .feature-title {
    font-size: 1.2rem;
  }

  .feature-description {
    font-size: 0.9rem;
  }
}

/* Mobile Portrait - 600px and below */
@media (max-width: 600px) {
  .why-choose-us {
    padding: 70px 0;
  }

  .why-tag {
    font-size: 0.8rem;
    letter-spacing: 1.5px;
  }

  .why-title {
    font-size: 1.75rem;
  }

  .why-subtitle {
    font-size: 0.95rem;
  }

  .feature-card {
    grid-column: span 6;
    padding: 25px 18px;
  }

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

  .feature-icon svg {
    width: 32px;
    height: 32px;
  }

  .feature-title {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }

  .feature-description {
    font-size: 0.88rem;
    line-height: 1.65;
  }
}

/* Small Mobile - 480px and below */
@media (max-width: 480px) {
  .why-choose-us {
    padding: 60px 0;
  }

  .why-header {
    margin-bottom: 40px;
  }

  .why-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .why-subtitle {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .features-grid {
    gap: 18px;
  }

  .feature-card {
    padding: 22px 16px;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 18px;
  }

  .feature-icon svg {
    width: 30px;
    height: 30px;
  }

  .feature-title {
    font-size: 1.05rem;
  }

  .feature-description {
    font-size: 0.85rem;
  }
}

/* Extra Small Mobile - 375px and below */
@media (max-width: 375px) {
  .why-choose-us {
    padding: 50px 0;
  }

  .why-tag {
    font-size: 0.75rem;
  }

  .why-title {
    font-size: 1.4rem;
  }

  .feature-card {
    padding: 20px 15px;
  }

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

  .feature-title {
    font-size: 1rem;
  }
}

/* CALL-TO-ACTION SECTION */
.cta-section {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, #1E2761 0%, #0d1535 100%);
  overflow: hidden;
}

/* Overlay with pattern/texture effect */
.cta-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(64, 142, 198, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 199, 5, 0.1) 0%, transparent 50%);
  z-index: 1;
}

/* Animated background shapes */
.cta-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(64, 142, 198, 0.2), transparent);
  border-radius: 50%;
  top: -200px;
  right: -150px;
  animation: float 8s ease-in-out infinite;
  z-index: 0;
}

.cta-section::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 199, 5, 0.15), transparent);
  border-radius: 50%;
  bottom: -150px;
  left: -100px;
  animation: float 10s ease-in-out infinite reverse;
  z-index: 0;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-30px) scale(1.05);
  }
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

/* CTA Content */
.cta-content {
  grid-column: 1 / -1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.cta-subtitle {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA Buttons Container */
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* Base Button Styles */
.cta-btn {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 35px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-btn svg {
  transition: transform 0.3s ease;
}

/* Primary Button */
.cta-primary {
  background: var(--color-highlight);
  color: var(--color-primary);
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 199, 5, 0.4);
  background: var(--color-accent);
  color: #ffffff;
}

.cta-primary:hover svg {
  transform: translateX(5px);
}

/* Secondary Button */
.cta-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.cta-secondary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.cta-secondary:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
}

.cta-secondary:hover::before {
  opacity: 1;
}

.cta-secondary:hover svg {
  transform: translateX(5px);
}

/* Ensure text stays above background effects */
.cta-btn > * {
  position: relative;
  z-index: 1;
}

/* RESPONSIVE DESIGN */

/* Tablets - 992px and below */
@media (max-width: 992px) {
  .cta-section {
    padding: 100px 0;
  }

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

  .cta-subtitle {
    font-size: 1.05rem;
  }

  .cta-buttons {
    gap: 15px;
  }

  .cta-btn {
    padding: 14px 30px;
    font-size: 0.95rem;
  }
}

/* Mobile Landscape - 768px and below */
@media (max-width: 768px) {
  .cta-section {
    padding: 80px 0;
  }

  .cta-title {
    font-size: 2rem;
    margin-bottom: 18px;
  }

  .cta-subtitle {
    font-size: 1rem;
    margin-bottom: 35px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .cta-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  /* Reduce animation complexity on mobile */
  .cta-section::before,
  .cta-section::after {
    animation: none;
  }
}

/* Mobile Portrait - 600px and below */
@media (max-width: 600px) {
  .cta-section {
    padding: 70px 0;
  }

  .cta-title {
    font-size: 1.75rem;
    margin-bottom: 16px;
  }

  .cta-subtitle {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
  }

  .cta-btn {
    padding: 13px 28px;
    font-size: 0.9rem;
  }

  .cta-btn svg {
    width: 18px;
    height: 18px;
  }
}

/* Small Mobile - 480px and below */
@media (max-width: 480px) {
  .cta-section {
    padding: 60px 0;
  }

  .cta-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .cta-subtitle {
    font-size: 0.9rem;
    margin-bottom: 28px;
  }

  .cta-btn {
    padding: 12px 25px;
    font-size: 0.88rem;
  }
}

/* Extra Small Mobile - 375px and below */
@media (max-width: 375px) {
  .cta-section {
    padding: 50px 0;
  }

  .cta-title {
    font-size: 1.4rem;
  }

  .cta-subtitle {
    font-size: 0.85rem;
    line-height: 1.55;
  }

  .cta-btn {
    padding: 11px 22px;
    font-size: 0.85rem;
    max-width: 280px;
  }

  .cta-btn svg {
    width: 16px;
    height: 16px;
  }
}

/* FOOTER SECTION */
.site-footer {
  background: linear-gradient(135deg, #0d1535 0%, #1E2761 100%);
  color: rgba(255, 255, 255, 0.85);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(64, 142, 198, 0.08), transparent);
  border-radius: 50%;
  top: -300px;
  right: -200px;
  z-index: 0;
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

/* Footer Top - Main Content Grid */
.footer-top {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Columns */
.footer-column {
  display: flex;
  flex-direction: column;
}

/* Column 1: About (spans 4 columns) */
.footer-about {
  grid-column: span 4;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  width: 140px;
  height: auto;
  transition: opacity 0.3s ease;
}

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

.footer-description {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 25px;
  max-width: 320px;
}

/* Social Media Links */
.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.social-link svg {
  stroke: rgba(255, 255, 255, 0.8);
  transition: stroke 0.3s ease;
}

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

.social-link:hover svg {
  stroke: #ffffff;
}

/* Columns 2 & 3: Links (each spans 2.5 columns) */
.footer-links {
  grid-column: span 2;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links ul li a {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links ul li a:hover {
  color: var(--color-highlight);
  transform: translateX(5px);
}

/* Column 4: Contact Info (spans 4 columns) */
.footer-contact {
  grid-column: span 4;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.contact-list li svg {
  stroke: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Footer Bottom - Copyright */
.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 15px;
  align-items: center;
}

.footer-legal a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--color-highlight);
}

.footer-legal .separator {
  color: rgba(255, 255, 255, 0.3);
}

/* RESPONSIVE DESIGN */

/* Large Tablets - 992px and below */
@media (max-width: 992px) {
  .site-footer {
    padding: 70px 0 0;
  }

  .footer-top {
    gap: 35px;
    padding-bottom: 50px;
  }

  .footer-about {
    grid-column: span 6;
  }

  .footer-links {
    grid-column: span 3;
  }

  .footer-contact {
    grid-column: span 6;
  }
}

/* Tablets - 768px and below */
@media (max-width: 768px) {
  .site-footer {
    padding: 60px 0 0;
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding-bottom: 40px;
  }

  .footer-about {
    grid-column: span 2;
  }

  .footer-links {
    grid-column: span 1;
  }

  .footer-contact {
    grid-column: span 2;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 25px 0;
  }

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

/* Mobile - 600px and below */
@media (max-width: 600px) {
  .site-footer {
    padding: 50px 0 0;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-bottom: 35px;
  }

  .footer-about,
  .footer-links,
  .footer-contact {
    grid-column: span 1;
  }

  .footer-description {
    max-width: 100%;
  }

  .footer-logo img {
    width: 120px;
  }

  .footer-heading {
    font-size: 1rem;
    margin-bottom: 15px;
  }

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

  .footer-links ul li a {
    font-size: 0.9rem;
  }

  .contact-list li {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }

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

  .footer-copyright,
  .footer-legal a {
    font-size: 0.85rem;
  }
}

/* Small Mobile - 480px and below */
@media (max-width: 480px) {
  .site-footer {
    padding: 40px 0 0;
  }

  .footer-top {
    gap: 30px;
  }

  .footer-logo img {
    width: 100px;
  }

  .footer-description {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .social-link {
    width: 38px;
    height: 38px;
  }

  .social-link svg {
    width: 18px;
    height: 18px;
  }

  .footer-heading {
    font-size: 0.95rem;
  }

  .footer-links ul li a,
  .contact-list li {
    font-size: 0.85rem;
  }

  .contact-list li svg {
    width: 16px;
    height: 16px;
  }
}

/* Extra Small Mobile - 375px and below */
@media (max-width: 375px) {
  .site-footer {
    padding: 35px 0 0;
  }

  .footer-description {
    font-size: 0.85rem;
  }

  .footer-social {
    gap: 10px;
  }

  .social-link {
    width: 36px;
    height: 36px;
  }

  .footer-legal {
    flex-direction: column;
    gap: 10px;
  }

  .footer-legal .separator {
    display: none;
  }
}



/* ========================================================================================================================================================================================================================================================================================================================================================================== */
/* UPDATED PROFESSIONAL COLOR SCHEME */
/* Keep Hero as is, update all other sections */

/* FEATURED PRODUCTS SECTION - Updated to white/ash */
.featured-products {
  background: #F8F9FA; /* Light ash instead of blue gradient */
  padding: 100px 0;
  position: relative;
}

.featured-products .section-title {
  font-family: "Outfit", sans-serif;
  font-size: 2.8rem;
  color: var(--color-primary); /* Keep blue for title */
  margin-bottom: 20px;
}

.featured-products .section-subtitle {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  color: #666666; /* Neutral gray instead of white */
  margin-bottom: 60px;
  line-height: 1.6;
}

/* Product cards remain the same - they're already white */

/* ABOUT SECTION - Simplified */
.about-section {
  padding: 120px 0;
  background-color: #FFFFFF; /* Pure white instead of var(--color-bg) */
  position: relative;
  overflow: hidden;
}

/* Remove or simplify the decorative element */
.about-section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(0, 0, 0, 0.02); /* Very subtle gray circle */
  border-radius: 50%;
  top: -100px;
  right: -100px;
  z-index: 0;
}

/* WHY CHOOSE US SECTION - White/Ash */
.why-choose-us {
  padding: 120px 0;
  background: #F8F9FA; /* Light ash background */
  position: relative;
  overflow: hidden;
}

/* Remove colored decorative elements */
.why-choose-us::before,
.why-choose-us::after {
  display: none;
}

.why-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-accent); /* Keep blue accent */
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.why-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--color-primary); /* Keep blue */
  line-height: 1.2;
  margin-bottom: 20px;
}

.why-subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: #666666; /* Neutral gray */
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

/* Feature Card - White background */
.feature-card {
  grid-column: span 3;
  background: #FFFFFF; /* Pure white */
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06); /* Subtle shadow */
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-align: center;
  border: 1px solid #E5E7EB; /* Light border */
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--color-accent); /* Blue accent line */
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: var(--color-accent);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

/* Feature Icon - Simplified */
.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: #F8F9FA; /* Light gray background */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.feature-icon svg {
  stroke: var(--color-accent); /* Blue icon */
  transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
  background: var(--color-accent); /* Blue on hover */
  transform: scale(1.1);
}

.feature-card:hover .feature-icon svg {
  stroke: #ffffff;
  transform: scale(1.1);
}

/* CALL-TO-ACTION SECTION - Light background version */
.cta-section {
  position: relative;
  padding: 120px 0;
  background: #FFFFFF; /* White background instead of dark blue */
  overflow: hidden;
}

/* Remove dark overlay */
.cta-overlay {
  display: none;
}

/* Simplified decorative elements */
.cta-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.02), transparent);
  border-radius: 50%;
  top: -200px;
  right: -150px;
  animation: float 8s ease-in-out infinite;
  z-index: 0;
}

.cta-section::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.02), transparent);
  border-radius: 50%;
  bottom: -150px;
  left: -100px;
  animation: float 10s ease-in-out infinite reverse;
  z-index: 0;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--color-primary); /* Blue title instead of white */
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: none;
}

.cta-subtitle {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: #666666; /* Gray text instead of white */
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA Buttons - Keep colored */
.cta-btn {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 35px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Primary Button - Blue */
.cta-primary {
  background: var(--color-primary); /* Blue */
  color: #ffffff;
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(30, 39, 97, 0.25);
  background: var(--color-accent); /* Lighter blue on hover */
}

/* Secondary Button - Outlined */
.cta-secondary {
  background: transparent;
  color: var(--color-primary); /* Blue text */
  border: 2px solid var(--color-primary); /* Blue border */
}

.cta-secondary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-primary);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.cta-secondary:hover {
  transform: translateY(-3px);
  border-color: var(--color-accent);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(30, 39, 97, 0.15);
}

.cta-secondary:hover::before {
  opacity: 1;
}

/* FOOTER - Keep as is (already dark) */
.site-footer {
  background: linear-gradient(135deg, #0d1535 0%, #1E2761 100%);
  /* Footer remains dark blue - it's professional */
}

/* ABOUT PAGE SECTIONS */
.our-story {
  padding: 120px 0;
  background: #FFFFFF; /* Pure white */
  overflow: hidden;
}

.story-tag,
.values-tag,
.form-tag,
.faq-tag {
  color: var(--color-accent); /* Blue accent */
}

/* MISSION & VISION SECTION */
.mission-vision {
  padding: 100px 0;
  background: #F8F9FA; /* Light ash */
  overflow: hidden;
}

.mv-card {
  background: #FFFFFF; /* White cards */
  padding: 50px 40px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid #E5E7EB;
}

.mv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--color-accent); /* Blue line */
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.mv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  border-color: var(--color-accent);
}

.mv-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 30px;
  background: #F8F9FA; /* Light gray */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.mv-icon svg {
  stroke: var(--color-accent); /* Blue */
  transition: all 0.4s ease;
}

.mv-card:hover .mv-icon {
  background: var(--color-accent); /* Blue on hover */
  transform: scale(1.1);
}

.mv-card:hover .mv-icon svg {
  stroke: #ffffff;
}

/* OUR VALUES SECTION */
.our-values {
  padding: 120px 0;
  background: #FFFFFF; /* White */
  overflow: hidden;
}

.value-card {
  grid-column: span 4;
  background: #FFFFFF; /* White */
  padding: 40px 30px;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
  transition: all 0.4s ease;
  position: relative;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: var(--color-accent);
}

.value-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-accent); /* Blue accent */
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 20px;
  transition: all 0.4s ease;
}

.value-card:hover .value-number {
  opacity: 0.3;
  transform: scale(1.1);
}

/* CONTACT PAGE */
.contact-info-section {
  padding: 100px 0 80px;
  background: #FFFFFF; /* White */
  overflow: hidden;
}

.contact-card {
  background: #FFFFFF; /* White */
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid #E5E7EB;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: var(--color-accent);
}

.contact-card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: #F8F9FA;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.contact-card-icon svg {
  stroke: var(--color-accent);
  transition: all 0.4s ease;
}

.contact-card:hover .contact-card-icon {
  background: var(--color-accent);
  transform: scale(1.1) rotate(10deg);
}

.contact-card:hover .contact-card-icon svg {
  stroke: #ffffff;
}

/* CONTACT FORM SECTION */
.contact-form-section {
  padding: 100px 0;
  background: #F8F9FA; /* Light ash */
  position: relative;
  overflow: hidden;
}

/* Remove colored decorative element */
.contact-form-section::before {
  display: none;
}

.contact-form {
  background: #ffffff;
  padding: 50px 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #E5E7EB;
}

/* FAQ SECTION */
.faq-section {
  padding: 100px 0;
  background: #FFFFFF;
  overflow: hidden;
}

.faq-item {
  background: #FFFFFF;
  padding: 35px 30px;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border-color: var(--color-accent);
}

/* PRODUCTS PAGE */
.products-section {
  padding: 100px 0;
  background: #FFFFFF;
  overflow: hidden;
}

.filter-bar {
  background: #F8F9FA;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid #E5E7EB;
}

/* Keep buttons with company colors */
.submit-btn,
.hero-btn,
.read-more-btn,
.contact-btn button {
  background: var(--color-primary); /* Blue */
  color: #ffffff;
  transition: all 0.3s ease;
}

.submit-btn:hover,
.hero-btn:hover,
.read-more-btn:hover,
.contact-btn button:hover {
  background: var(--color-accent); /* Lighter blue */
  transform: translateY(-2px);
}

/* Links remain blue */
a {
  color: var(--color-accent);
}

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