/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap");

/* CSS Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Cairo", "Tajawal", Arial, sans-serif;
  line-height: 1.5;
  color: #333;
  background-color: #fff;
}

/* Base Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  margin-bottom: 20px;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 20px;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Brand Colors */
:root {
  --primary-blue: #1e4c90;
  --secondary-blue: #419acd;
  --white: #fff;
  --light-gray: #f8f9fa;
  --medium-gray: #e9ecef;
  --dark-gray: #6c757d;
}

/* Header Styles */
.header {
  background-color: #fff;
  color: #333;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: 120px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-menu {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-link {
  color: #333;
  font-weight: bold;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #1e4c90;
  background-color: rgba(30, 76, 144, 0.1);
}

.nav-link.active {
  color: #fff;
  background: linear-gradient(45deg, #419acd, #1e4c90);
}

.language-toggle {
  background: none;
  border: 2px solid #1e4c90;
  font-weight: bold;
  color: #1e4c90;
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
}

.language-toggle:hover {
  background-color: #1e4c90;
  color: #fff;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #333;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 5px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background-color: #1e4c90;
  color: #fff;
}

.btn-primary:hover {
  background-color: #419acd;
}

.btn-secondary {
  background-color: #419acd;
  color: #fff;
}

.btn-secondary:hover {
  background-color: #1e4c90;
}

/* Section Styles */
section {
  padding: 150px 0;
}

.page-header {
  background: linear-gradient(135deg, #1e4c90 0%, #419acd 100%);
  color: white;
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 40%;
  height: 200%;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(15deg);
  z-index: 1;
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.page-header p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
}

/* Section Titles - Centered */
section h2 {
  text-align: center;
  color: #1e4c90;
  margin-bottom: 60px;
  position: relative;
  font-size: 2rem;
  font-weight: 700;
}

section h2::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #1e4c90, #419acd);
  border-radius: 2px;
  box-shadow: 0 2px 10px rgba(30, 76, 144, 0.3);
}

/* About Preview Section */
.about-preview {
  background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
  position: relative;
  overflow: hidden;
}

.about-preview::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 40%;
  height: 200%;
  background: linear-gradient(45deg, rgba(65, 154, 205, 0.1), transparent);
  transform: rotate(15deg);
  z-index: 1;
}

.about-content {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.about-logo {
  text-align: center;
  position: relative;
}

.about-logo::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: #fff;
  border-radius: 20px;
  z-index: -1;
}

.about-logo-img {
  max-width: 350px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.about-logo-img:hover {
  transform: scale(1.05);
}

.about-text {
  padding: 20px 0;
}

.about-text h2 {
  color: #1e4c90;
  margin-bottom: 30px;
  text-align: left;
  font-size: 2rem;
  font-weight: 700;
  position: relative;
}

.about-text h2::after {
  left: 0;
  transform: translateX(0%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #1e4c90, #419acd);
}

.about-text p {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 35px;
  text-align: left;
  font-weight: 400;
}

.about-text .btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 50px;
  background: linear-gradient(45deg, #419acd, #1e4c90);
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(65, 154, 205, 0.3);
  transition: all 0.3s ease;
}

.about-text .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(65, 154, 205, 0.5);
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-item h4 {
  font-size: 2rem;
  color: #1e4c90;
  margin-bottom: 10px;
  font-weight: 700;
}

.stat-item p {
  color: #6c757d;
  font-size: 0.95rem;
  margin: 0;
}

.about-cta {
  text-align: center;
}

/* Contact Preview Section */
.contact-preview {
  background: linear-gradient(135deg, #1e4c90 0%, #0f2557 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.contact-preview::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -20%;
  width: 40%;
  height: 200%;
  background: linear-gradient(45deg, rgba(65, 154, 205, 0.2), transparent);
  transform: rotate(-15deg);
  z-index: 1;
}

.contact-preview .container {
  position: relative;
  z-index: 2;
}

.contact-preview h2 {
  color: white;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.contact-preview h2::after {
  background: linear-gradient(90deg, #419acd, #fff);
}

.contact-preview p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin: 50px 0;
}

.contact-preview .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.contact-preview .contact-item:hover {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-color: rgba(65, 154, 205, 0.3);
}

.contact-preview .contact-item i {
  color: #419acd;
  font-size: 1.8rem;
  min-width: 30px;
  background: rgba(65, 154, 205, 0.25);
  padding: 12px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(65, 154, 205, 0.2);
}

.contact-preview .contact-item h4 {
  margin-bottom: 8px;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-preview .contact-item span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  font-weight: 400;
  transition: color 0.3s ease;
}

.contact-preview .contact-item:hover span {
  color: rgba(255, 255, 255, 0.95);
}

.social-section {
  text-align: center;
  margin: 50px 0 40px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.social-section h4 {
  margin-bottom: 20px;
  color: white;
  font-size: 1.3rem;
  font-weight: 600;
}

.contact-preview .btn {
  padding: 18px 40px;
  border-radius: 50px;
  background: linear-gradient(45deg, #419acd, #fff);
  color: #1e4c90;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(65, 154, 205, 0.3);
  transition: all 0.3s ease;
}

.contact-preview .btn:hover {
  background: linear-gradient(45deg, #fff, #419acd);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(65, 154, 205, 0.5);
}

/* Trust Section */
.trust-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
  position: relative;
  overflow: hidden;
}

.trust-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: -10%;
  width: 30%;
  height: 100%;
  background: linear-gradient(45deg, rgba(30, 76, 144, 0.05), transparent);
  transform: skewX(-15deg);
  z-index: 1;
}

.trust-section .container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

.trust-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
  background: linear-gradient(45deg, #1e4c90, #419acd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.trust-section p {
  font-size: 1.3rem;
  color: #555;
  line-height: 1.8;
  font-weight: 400;
  max-width: 700px;
  margin: 0 auto;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(17, 44, 84, 0.8), rgba(11, 25, 60, 0.647)),
    url("img/background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  text-align: center;
  padding: 140px 0;
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

@keyframes heroAnimation {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  backdrop-filter: blur(2px);
  margin: 0 auto;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content h1 {
  margin-bottom: 30px;
  font-size: 4.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.4rem;
  margin-bottom: 50px;
  line-height: 1.7;
  color: #eee;
  font-weight: 400;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  min-width: 160px;
  text-align: center;
}

.hero-btn-primary {
  background: #fff;
  color: #0d2c5a;
  border: 2px solid #fff;
  box-shadow: 0 6px 20px rgba(30, 76, 144, 0.3);
  font-weight: 700;
}

.hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30, 76, 144, 0.5);
}

.hero-btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.hero-btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 76, 144, 0.3);
}

/* Grid Layouts */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 60px;
}

/* Scroll animations */
@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromBottom {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animation classes */
.animate-left {
  animation: slideInFromLeft 0.8s ease-out;
}

.animate-right {
  animation: slideInFromRight 0.8s ease-out;
}

.animate-bottom {
  animation: slideInFromBottom 0.8s ease-out;
}

/* Featured Products Section */
.featured-products {
  background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.featured-products::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(
    180deg,
    rgba(248, 249, 250, 0.8) 0%,
    transparent 100%
  );
}

.featured-products .container {
  max-width: 1400px;
  position: relative;
  z-index: 2;
}

.featured-products h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 60px;
  background: linear-gradient(45deg, #1e4c90, #419acd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.featured-products-cta {
  text-align: center;
  margin-top: 50px;
}

.featured-products-cta .btn {
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
  background: transparent;
  color: #1e4c90;
  border: 2px solid #1e4c90;
}

.featured-products-cta .btn:hover {
  background: #1e4c90;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(30, 76, 144, 0.3);
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 40px;
}

/* Product Card */
.product-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(65, 154, 205, 0.1);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 76, 144, 0.05),
    rgba(65, 154, 205, 0.05)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.product-card:hover::before {
  opacity: 1;
}

.product-card:hover {
  box-shadow: 0 25px 50px rgba(30, 76, 144, 0.2);
  border-color: #419acd;
}

.product-card img {
  width: 100%;
  height: 350px;
  object-fit: top;
  transition: transform 0.4s ease;
  position: relative;
  z-index: 2;
}

.product-card img:hover {
  transform: scale(1.05);
}

.product-card-content {
  padding: 30px;
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, #fff 0%, #fafbfc 100%);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card h3 {
  margin-bottom: 18px;
  color: #1e4c90;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.product-card:hover h3 {
  color: #419acd;
}

.product-card p {
  color: #666;
  margin-bottom: 25px;
  line-height: 1.6;
  font-size: 0.9rem;
  font-weight: 400;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: calc(1.6em * 3);
  flex-shrink: 0;
}

.product-card .btn {
  width: 100%;
  text-align: center;
  font-weight: 500;
  padding: 12px 20px;
  border-radius: 8px;
  background: #1e4c90;
  border: 2px solid #1e4c90;
  color: white;
  font-size: 0.85rem;
  text-transform: none;
  letter-spacing: normal;
  transition: all 0.3s ease;
  margin-top: auto;
  text-decoration: none;
  display: inline-block;
}

.product-card .btn:hover {
  background: transparent;
  color: #1e4c90;
  border-color: #1e4c90;
}

/* Form Styles */
.contact-form {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #1e4c90;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #e9ecef;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #419acd;
}

/* Contact Info */
.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 30px;
}

.contact-method i {
  color: #1e4c90;
  font-size: 1.5rem;
  margin-top: 5px;
}

.contact-method h3 {
  margin-bottom: 5px;
  color: #1e4c90;
}

.social-links {
  display: flex;
  gap: 20px;
  margin-top: 15px;
  justify-content: center;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #419acd, #1e4c90);
  color: #fff;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(30, 76, 144, 0.3);
  font-size: 1.2rem;
}

.social-links a:hover {
  background: linear-gradient(45deg, #1e4c90, #419acd);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 25px rgba(30, 76, 144, 0.5);
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 1000;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #1e4c90, #0d2c5a);
  color: #fff;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-logo {
  text-align: center;
}

.footer-logo-img {
  width: 80px;
  height: auto;
  margin-bottom: 15px;
  border-radius: 8px;
  filter: brightness(0) invert(1);
}

.footer-logo h3 {
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.footer-logo p {
  color: #b8c5d6;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #b8c5d6;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #419acd;
}

.footer-contact .contact-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 10px;
}

.footer-contact .contact-item span {
  direction: ltr;
  color: #b8c5d6;
}

.footer-contact .contact-item i {
  color: #419acd;
  margin: 8px;
  font-size: 1rem;
}

/* RTL support for footer contact */
html[dir="rtl"] .footer-contact .contact-item {
  text-align: right;
}

html[dir="rtl"] .footer-contact .contact-item i {
  margin: 8px;
}

.footer-contact .social-links {
  margin-top: 20px;
  justify-content: flex-start;
}

.footer-contact .social-links a {
  background-color: #419acd;
  width: 35px;
  height: 35px;
  font-size: 0.9rem;
}

.footer-contact .social-links a:hover {
  background-color: #fff;
  color: #1e4c90;
}

.footer-bottom {
  border-top: 1px solid #2c5282;
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  color: #b8c5d6;
  font-size: 0.9rem;
  margin-bottom: 5px;
}

/* RTL/LTR Support */
[dir="rtl"] {
  text-align: right;
}

[dir="ltr"] {
  text-align: left;
}

[dir="ltr"] .nav-menu {
  flex-direction: row;
}

[dir="rtl"] .hero-content,
[dir="ltr"] .hero-content {
  text-align: center;
}

[dir="rtl"] .page-header {
  text-align: right;
}

[dir="ltr"] .page-header {
  text-align: left;
}

[dir="rtl"] .page-header {
  text-align: center;
}

[dir="ltr"] .page-header {
  text-align: center;
}

[dir="rtl"] .about-text h2 {
  text-align: right;
}

[dir="rtl"] .about-text h2::after {
  left: auto;
  right: 0;
  transform: translateX(0%);
}

[dir="rtl"] .about-text p {
  text-align: right;
}

[dir="ltr"] .about-text h2 {
  text-align: left;
}

[dir="ltr"] .about-text h2::after {
  left: 0;
  transform: translateX(0%);
}

[dir="ltr"] .about-text p {
  text-align: left;
}

[dir="rtl"] .language-toggle {
  margin-left: 20px;
  margin-right: 0;
}

[dir="ltr"] .language-toggle {
  margin-right: 20px;
  margin-left: 0;
}

/* Font family adjustments for different languages */
[dir="rtl"] body {
  font-family: "Cairo", "Tajawal", "Amiri", Arial, sans-serif;
}

[dir="ltr"] body {
  font-family: "Inter", "Roboto", "Open Sans", Arial, sans-serif;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .header .container {
    flex-wrap: wrap;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    flex-direction: column !important;
    padding: 20px;
    gap: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #eee;
  }

  .nav-link {
    font-size: 12px;
  }

  .nav-menu.active {
    display: flex;
    flex-direction: column !important;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .language-toggle {
    padding: 6px 12px;
    font-size: 0.8rem;
  }

  .language-toggle i {
    font-size: 0.8rem;
  }

  .logo {
    width: 80px;
  }

  .hero {
    padding: 100px 0;
    min-height: 70vh;
  }

  .hero-content h1 {
    font-size: 2rem;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .hero-btn {
    padding: 10px 20px;
    font-size: 0.85rem;
    min-width: 120px;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-card-content {
    padding: 20px;
  }

  .product-card h3 {
    font-size: 1rem;
    margin-bottom: 12px;
  }

  .product-card p {
    font-size: 0.8rem;
    margin-bottom: 15px;
  }

  .product-card .btn {
    padding: 8px 16px;
    font-size: 0.75rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .about-logo {
    display: none;
  }

  .about-text {
    text-align: center;
    padding: 0;
  }

  .about-text h2 {
    text-align: center;
    font-size: 1.5rem;
  }

  .about-text h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .about-text p {
    text-align: center;
    font-size: 0.85rem;
  }

  .about-text .btn {
    padding: 10px 20px;
    font-size: 0.8rem;
  }

  /* Ensure page headers remain centered on mobile */
  .page-header {
    text-align: center;
  }

  .page-header h1 {
    text-align: center;
  }

  .page-header p {
    text-align: center;
  }

  .contact-info {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .contact-item {
    text-align: center;
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }

  .contact-item i {
    margin-bottom: 10px;
  }

  .contact-preview .contact-item {
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .contact-preview .contact-item div {
    text-align: center;
  }

  .contact-preview h2 {
    font-size: 1.5rem;
  }

  .contact-preview p {
    font-size: 0.85rem;
  }

  .contact-preview .contact-item h4 {
    font-size: 0.95rem;
  }

  .contact-preview .contact-item span {
    font-size: 0.8rem;
  }

  .contact-preview .btn {
    padding: 12px 24px;
    font-size: 0.8rem;
  }

  /* About section mobile */
  .about-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .about-logo-img {
    width: 120px;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stat-item h4 {
    font-size: 2rem;
  }

  /* Footer mobile */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 25px;
    text-align: center;
  }

  .footer-section h3,
  .footer-section h4 {
    font-size: 1rem;
    margin-bottom: 15px;
  }

  .footer-logo p {
    font-size: 0.8rem;
  }

  .footer-links a {
    font-size: 0.8rem;
  }

  .footer-contact .contact-item span {
    font-size: 0.8rem;
  }

  .footer-bottom p {
    font-size: 0.75rem;
  }

  .footer-contact .social-links {
    justify-content: center;
  }

  .footer-contact .contact-item {
    justify-content: center;
  }

  .footer-contact .social-links a {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }

  section {
    padding: 50px 0;
  }

  section h2 {
    font-size: 1.8rem;
  }

  section h2::after {
    width: 60px;
    height: 3px;
  }

  .featured-products h2,
  .trust-section h2 {
    font-size: 1.5rem;
  }

  .trust-section p {
    font-size: 0.9rem;
  }

  .featured-products {
    padding: 40px 0;
  }

  .featured-products-cta {
    margin-top: 30px;
  }

  .featured-products-cta .btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }

  .whatsapp-float {
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}
/* Secondary Pages - Centered Hero Sections */
.page-header {
  text-align: center;
}

.page-header h1 {
  text-align: center;
}

.page-header p {
  text-align: center;
}

/* About Page Specific Styles */

/* Company Introduction Section */
.company-intro {
  background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
  position: relative;
  overflow: hidden;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.stat-item {
  background: rgba(255, 255, 255, 0.8);
  padding: 25px 15px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(30, 76, 144, 0.1);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(30, 76, 144, 0.2);
}

.stat-item h4 {
  font-size: 2.5rem;
  color: #1e4c90;
  margin-bottom: 10px;
  font-weight: 700;
}

.stat-item p {
  color: #6c757d;
  font-size: 0.95rem;
  margin: 0;
  font-weight: 500;
}

/* Mission Vision Values Section */
.mission-vision {
  background: white;
  position: relative;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.mission-card,
.vision-card,
.values-card {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(30, 76, 144, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mission-card::before,
.vision-card::before,
.values-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1e4c90, #419acd);
}

.mission-card:hover,
.vision-card:hover,
.values-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(30, 76, 144, 0.15);
}

.card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #419acd, #1e4c90);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: 0 8px 25px rgba(30, 76, 144, 0.3);
}

.card-icon i {
  font-size: 2rem;
  color: white;
}

.mission-card h3,
.vision-card h3,
.values-card h3 {
  color: #1e4c90;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.mission-card p,
.vision-card p,
.values-card p {
  color: #666;
  line-height: 1.7;
  font-size: 1rem;
}

/* Service Areas Section */
.service-areas {
  background: linear-gradient(135deg, #1e4c90 0%, #0f2557 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.service-areas::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -20%;
  width: 40%;
  height: 200%;
  background: linear-gradient(45deg, rgba(65, 154, 205, 0.2), transparent);
  transform: rotate(-15deg);
  z-index: 1;
}

.service-areas .container {
  position: relative;
  z-index: 2;
}

.service-areas h2 {
  color: white;
}

.service-areas h2::after {
  background: linear-gradient(90deg, #419acd, #fff);
}

.service-areas-content {
  margin-top: 40px;
}

.service-map {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.location-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.location-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.location-card i {
  font-size: 2.5rem;
  color: #419acd;
  margin-bottom: 20px;
  background: rgba(65, 154, 205, 0.2);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.location-card h4 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.location-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin: 0;
}

.service-areas-content > p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.7;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* Why Choose Us Section */
.why-choose-us {
  background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.feature-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(30, 76, 144, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #419acd, #1e4c90);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(30, 76, 144, 0.15);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(45deg, #1e4c90, #419acd);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: 0 8px 25px rgba(30, 76, 144, 0.3);
}

.feature-icon i {
  font-size: 1.8rem;
  color: white;
}

.feature-card h4 {
  color: #1e4c90;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.feature-card p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

/* Team Info Section */
.team-info {
  background: white;
}

.team-content {
  margin-top: 40px;
}

.team-description {
  text-align: center;
  margin-bottom: 50px;
}

.team-description p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

.team-expertise {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.expertise-item {
  background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
  padding: 30px 25px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(30, 76, 144, 0.1);
  transition: all 0.3s ease;
}

.expertise-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(30, 76, 144, 0.1);
}

.expertise-item i {
  font-size: 2.5rem;
  color: #1e4c90;
  margin-bottom: 20px;
  background: rgba(30, 76, 144, 0.1);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.expertise-item h4 {
  color: #1e4c90;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.expertise-item p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Certifications Section */
.certifications {
  background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
  position: relative;
}

.certifications-content {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.certifications-text p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.7;
}

.certifications-list {
  display: grid;
  gap: 20px;
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: white;
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(30, 76, 144, 0.1);
  transition: all 0.3s ease;
}

.cert-item:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(30, 76, 144, 0.15);
}

.cert-item i {
  font-size: 1.5rem;
  color: #1e4c90;
  background: rgba(30, 76, 144, 0.1);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert-item span {
  color: #333;
  font-weight: 500;
  font-size: 1rem;
}

/* Contact CTA Section */
.contact-cta {
  background: linear-gradient(135deg, #1e4c90 0%, #419acd 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 40%;
  height: 200%;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(15deg);
  z-index: 1;
}

.contact-cta .container {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 25px;
}

.cta-content h2::after {
  background: linear-gradient(90deg, #419acd, #fff);
}

.cta-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  min-width: 180px;
}

.cta-buttons .btn-primary {
  background: white;
  color: #1e4c90;
  border: 2px solid white;
}

.cta-buttons .btn-primary:hover {
  background: transparent;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.cta-buttons .btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cta-buttons .btn-secondary:hover {
  background: white;
  color: #1e4c90;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Mobile Responsive for About Page */
@media (max-width: 768px) {
  .page-header h1 {
    font-size: 1.8rem;
  }

  .page-header p {
    font-size: 0.9rem;
  }

  /* Company Introduction Section */
  .company-intro .about-logo {
    display: none;
  }

  .company-intro h2 {
    font-size: 1.4rem;
  }

  .company-intro p {
    font-size: 0.85rem;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stat-item h4 {
    font-size: 1.4rem;
  }

  .stat-item p {
    font-size: 0.8rem;
  }

  /* Mission Vision Values Section */
  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .mission-card h3,
  .vision-card h3,
  .values-card h3 {
    font-size: 1.2rem;
  }

  .mission-card p,
  .vision-card p,
  .values-card p {
    font-size: 0.85rem;
  }

  .card-icon {
    width: 60px;
    height: 60px;
  }

  .card-icon i {
    font-size: 1.5rem;
  }

  /* Service Areas Section */
  .service-areas h2 {
    font-size: 1.5rem;
  }

  .service-areas-content > p {
    font-size: 0.9rem;
  }

  .service-map {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .location-card h4 {
    font-size: 1rem;
  }

  .location-card p {
    font-size: 0.8rem;
  }

  /* Why Choose Us Section */
  .why-choose-us h2 {
    font-size: 1.5rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-card h4 {
    font-size: 1.1rem;
  }

  .feature-card p {
    font-size: 0.8rem;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
  }

  .feature-icon i {
    font-size: 1.3rem;
  }

  /* Team Section */
  .team-info h2 {
    font-size: 1.5rem;
  }

  .team-description p {
    font-size: 0.9rem;
  }

  .team-expertise {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .expertise-item h4 {
    font-size: 1rem;
  }

  .expertise-item p {
    font-size: 0.8rem;
  }

  /* Certifications Section */
  .certifications h2 {
    font-size: 1.5rem;
  }

  .certifications-text p {
    font-size: 0.9rem;
  }

  .certifications-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cert-item span {
    font-size: 0.85rem;
  }

  /* Contact CTA Section */
  .contact-cta .cta-content h2 {
    font-size: 1.6rem;
  }

  .contact-cta .cta-content p {
    font-size: 0.9rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .cta-buttons .btn {
    min-width: 160px;
    padding: 10px 20px;
    font-size: 0.85rem;
  }
}
/* Products Page Specific Styles */

/* Products Introduction Section */
.products-intro {
  background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
  position: relative;
  overflow: hidden;
}

.products-intro::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -20%;
  width: 40%;
  height: 200%;
  background: linear-gradient(45deg, rgba(30, 76, 144, 0.05), transparent);
  transform: rotate(-15deg);
  z-index: 1;
}

.products-intro .container {
  position: relative;
  z-index: 2;
}

.intro-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.intro-content h2 {
  color: #1e4c90;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 25px;
}

.intro-content p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* Product Categories Section */
.product-categories {
  background: white;
  position: relative;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.category-card {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(30, 76, 144, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1e4c90, #419acd);
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(30, 76, 144, 0.15);
}

.category-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #419acd, #1e4c90);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: 0 8px 25px rgba(30, 76, 144, 0.3);
  transition: all 0.3s ease;
}

.category-card:hover .category-icon {
  transform: scale(1.1);
}

.category-icon i {
  font-size: 2rem;
  color: white;
}

.category-card h3 {
  color: #1e4c90;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.category-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Products Catalog Section */
.products-catalog {
  background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
  position: relative;
}

.catalog-header {
  text-align: center;
  margin-bottom: 60px;
}

.catalog-header h2 {
  color: #1e4c90;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.filter-btn {
  background: white;
  color: #1e4c90;
  border: 2px solid #1e4c90;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(45deg, #1e4c90, #419acd);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(30, 76, 144, 0.3);
}

/* Products Features Section */
.products-features {
  background: white;
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.feature-item {
  text-align: center;
  padding: 30px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
  border-radius: 15px;
  border: 1px solid rgba(30, 76, 144, 0.1);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(30, 76, 144, 0.1);
}

.feature-item .feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(45deg, #1e4c90, #419acd);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 25px rgba(30, 76, 144, 0.3);
}

.feature-item .feature-icon i {
  font-size: 1.8rem;
  color: white;
}

.feature-item h4 {
  color: #1e4c90;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.feature-item p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Products CTA Section */
.products-cta {
  background: linear-gradient(135deg, #1e4c90 0%, #419acd 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.products-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 40%;
  height: 200%;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(15deg);
  z-index: 1;
}

.products-cta .container {
  position: relative;
  z-index: 2;
}

.products-cta .cta-content h2 {
  color: white;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 25px;
}

.products-cta .cta-content h2::after {
  background: linear-gradient(90deg, #419acd, #fff);
}

.products-cta .cta-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.products-cta .cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.products-cta .cta-buttons .btn {
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  min-width: 180px;
}

.products-cta .cta-buttons .btn-primary {
  background: white;
  color: #1e4c90;
  border: 2px solid white;
}

.products-cta .cta-buttons .btn-primary:hover {
  background: transparent;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.products-cta .cta-buttons .btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.products-cta .cta-buttons .btn-secondary:hover {
  background: white;
  color: #1e4c90;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Product Filtering Animation */
.product-card.hidden {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
}

.product-card.visible {
  opacity: 1;
  transform: scale(1);
  transition: all 0.3s ease;
}

/* Mobile Responsive for Products Page */
@media (max-width: 768px) {
  .intro-content h2 {
    font-size: 1.5rem;
  }

  .intro-content p {
    font-size: 0.9rem;
  }

  .categories-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .catalog-header h2 {
    font-size: 1.5rem;
  }

  .filter-buttons {
    gap: 8px;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 0.8rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .products-cta .cta-content h2 {
    font-size: 1.5rem;
  }

  .products-cta .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .products-cta .cta-buttons .btn {
    min-width: 160px;
    padding: 10px 20px;
    font-size: 0.85rem;
  }
} /* 
Contact Page Specific Styles */

/* Contact Content Section */
.contact-content {
  background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
  position: relative;
  overflow: hidden;
}

.contact-content::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -20%;
  width: 40%;
  height: 200%;
  background: linear-gradient(45deg, rgba(30, 76, 144, 0.05), transparent);
  transform: rotate(-15deg);
  z-index: 1;
}

.contact-content .container {
  position: relative;
  z-index: 2;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Contact Form Section */
.contact-form-section {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(30, 76, 144, 0.1);
}

.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-header h2 {
  color: #1e4c90;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.form-header p {
  color: #666;
  font-size: 1rem;
  margin: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #1e4c90;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px 45px 15px 15px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fafbfc;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #419acd;
  background: white;
  box-shadow: 0 0 0 3px rgba(65, 154, 205, 0.1);
}

.form-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #1e4c90;
  font-size: 1rem;
  pointer-events: none;
}

.form-group:has(textarea) .form-icon {
  top: 45px;
  transform: none;
}

.form-group:has(select) .form-icon {
  right: 40px;
}

.contact-form button {
  padding: 18px 30px;
  background: linear-gradient(45deg, #1e4c90, #419acd);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.contact-form button:hover {
  background: linear-gradient(45deg, #419acd, #1e4c90);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30, 76, 144, 0.3);
}

.form-message {
  margin-top: 20px;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  display: none;
}

.form-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Contact Info Section */
.contact-info-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.info-header {
  text-align: center;
}

.info-header h2 {
  color: #1e4c90;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.info-header p {
  color: #666;
  font-size: 1rem;
  margin: 0;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(30, 76, 144, 0.1);
  transition: all 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(30, 76, 144, 0.15);
}

.method-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #1e4c90, #419acd);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(30, 76, 144, 0.3);
}

.method-icon.whatsapp {
  background: linear-gradient(45deg, #25d366, #128c7e);
}

.method-icon.email {
  background: linear-gradient(45deg, #ea4335, #fbbc05);
}

.method-icon i {
  font-size: 1.5rem;
  color: white;
}

.method-content h3 {
  color: #1e4c90;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.method-content p,
.method-content a {
  color: #333;
  font-size: 1rem;
  margin-bottom: 5px;
  text-decoration: none;
  font-weight: 500;
}

.method-content a:hover {
  color: #1e4c90;
}

.method-content span {
  color: #666;
  font-size: 0.9rem;
  font-style: italic;
}

/* Social Media Section */
.social-media {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(30, 76, 144, 0.1);
  text-align: center;
}

.social-media h3 {
  color: #1e4c90;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.social-media .social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.social-link.facebook {
  background: #1877f2;
  color: white;
}

.social-link.instagram {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
  color: white;
}

.social-link.whatsapp {
  background: #25d366;
  color: white;
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Business Hours Section */
.business-hours {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(30, 76, 144, 0.1);
}

.business-hours h3 {
  color: #1e4c90;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #1e4c90;
}

.hours-item span:first-child {
  font-weight: 600;
  color: #333;
}

.hours-item span:last-child {
  color: #1e4c90;
  font-weight: 500;
}

/* Mobile Responsive for Contact Page */
@media (max-width: 768px) {
  /* Page Header */
  .page-header h1 {
    font-size: 1.6rem;
  }

  .page-header p {
    font-size: 0.85rem;
  }

  /* Contact Grid Layout */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  /* Contact Form Section */
  .contact-form-section {
    padding: 20px 15px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .form-header h2 {
    font-size: 1.3rem;
  }

  .form-header p {
    font-size: 0.8rem;
  }

  .form-group label {
    font-size: 0.85rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 35px 12px 12px;
    font-size: 0.85rem;
  }

  .contact-form button {
    padding: 12px 20px;
    font-size: 0.85rem;
  }

  /* Contact Info Section */
  .info-header h2 {
    font-size: 1.3rem;
  }

  .info-header p {
    font-size: 0.8rem;
  }

  .contact-method {
    padding: 15px;
  }

  .method-icon {
    width: 40px;
    height: 40px;
  }

  .method-icon i {
    font-size: 1rem;
  }

  .method-content h3 {
    font-size: 1rem;
  }

  .method-content p,
  .method-content a {
    font-size: 0.85rem;
  }

  .method-content span {
    font-size: 0.75rem;
  }

  /* Social Media Section */
  .social-media h3 {
    font-size: 1.1rem;
  }

  .social-media .social-links {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .social-link {
    min-width: 120px;
    justify-content: center;
    padding: 6px 12px;
    font-size: 0.8rem;
  }

  /* Business Hours Section */
  .business-hours h3 {
    font-size: 1.1rem;
  }

  .hours-item {
    flex-direction: column;
    text-align: center;
    gap: 3px;
    padding: 8px 12px;
  }

  .hours-item span {
    font-size: 0.8rem;
  }
} /*
 Simple Contact Page Styles - Override */
.contact-content {
  background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%) !important;
  position: relative !important;
  overflow: visible !important;
}

.contact-content::before {
  display: none !important;
}

.contact-content .container {
  position: relative !important;
  z-index: auto !important;
}

.contact-info {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
  gap: 40px !important;
  margin-top: 40px !important;
}

.contact-info .contact-method {
  display: flex !important;
  align-items: flex-start !important;
  gap: 20px !important;
  background: white !important;
  padding: 30px !important;
  border-radius: 15px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
  border: 1px solid rgba(30, 76, 144, 0.1) !important;
  transition: all 0.3s ease !important;
}

.contact-info .contact-method:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 15px 35px rgba(30, 76, 144, 0.15) !important;
}

.contact-info .contact-method i {
  color: #1e4c90 !important;
  font-size: 2rem !important;
  margin-top: 5px !important;
  background: rgba(30, 76, 144, 0.1) !important;
  width: 60px !important;
  height: 60px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.contact-info .contact-method h3 {
  margin-bottom: 10px !important;
  color: #1e4c90 !important;
  font-size: 1.3rem !important;
  font-weight: 600 !important;
}

.contact-info .contact-method p,
.contact-info .contact-method a {
  color: #333 !important;
  font-size: 1.1rem !important;
  margin: 0 !important;
  text-decoration: none !important;
  font-weight: 500 !important;
}

.contact-info .contact-method a:hover {
  color: #1e4c90 !important;
}

.contact-info .social-media {
  text-align: center !important;
  background: white !important;
  padding: 30px !important;
  border-radius: 15px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
  border: 1px solid rgba(30, 76, 144, 0.1) !important;
}

.contact-info .social-media h3 {
  color: #1e4c90 !important;
  font-size: 1.3rem !important;
  font-weight: 600 !important;
  margin-bottom: 20px !important;
}

.contact-info .social-media .social-links {
  display: flex !important;
  justify-content: center !important;
  gap: 20px !important;
}

.contact-info .social-media .social-links a {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 50px !important;
  height: 50px !important;
  background: linear-gradient(45deg, #419acd, #1e4c90) !important;
  color: #fff !important;
  border-radius: 50% !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 5px 15px rgba(30, 76, 144, 0.3) !important;
  font-size: 1.2rem !important;
}

.contact-info .social-media .social-links a:hover {
  background: linear-gradient(45deg, #1e4c90, #419acd) !important;
  transform: translateY(-3px) scale(1.1) !important;
  box-shadow: 0 8px 25px rgba(30, 76, 144, 0.5) !important;
}

/* Mobile Responsive for Simple Contact Page */
@media (max-width: 768px) {
  .contact-info {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }

  .contact-info .contact-method {
    padding: 15px !important;
  }

  .contact-info .contact-method i {
    width: 35px !important;
    height: 35px !important;
    font-size: 1rem !important;
  }

  .contact-info .contact-method h3 {
    font-size: 0.9rem !important;
  }

  .contact-info .contact-method p,
  .contact-info .contact-method a {
    font-size: 0.8rem !important;
  }

  .contact-info .social-media h3 {
    font-size: 1rem !important;
  }

  .contact-info .social-media .social-links {
    gap: 10px !important;
  }

  .contact-info .social-media .social-links a {
    width: 35px !important;
    height: 35px !important;
    font-size: 0.9rem !important;
  }
} /* Pro
duct Details Page Specific Styles */

/* Breadcrumb */
.breadcrumb {
  margin-bottom: 30px;
  font-size: 0.9rem;
  color: #666;
}

.breadcrumb a {
  color: #1e4c90;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #419acd;
}

.breadcrumb span {
  margin: 0 10px;
  color: #999;
}

/* Product Hero Section */
.product-hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
  padding: 40px 0 80px;
  position: relative;
  overflow: hidden;
}

.product-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 40%;
  height: 200%;
  background: linear-gradient(45deg, rgba(30, 76, 144, 0.05), transparent);
  transform: rotate(15deg);
  z-index: 1;
}

.product-hero .container {
  position: relative;
  z-index: 2;
}

.product-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 40px;
}

.product-image-container {
  text-align: center;
  position: relative;
}

.product-main-image {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  background: white;
  padding: 20px;
}

.product-main-image:hover {
  transform: scale(1.05);
}

.product-info h1 {
  color: #1e4c90;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.3;
}

.product-brief-desc {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 40px;
}

.product-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.product-actions .btn {
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  min-width: 160px;
  justify-content: center;
}

.product-actions .btn-primary {
  background: linear-gradient(45deg, #1e4c90, #419acd);
  color: white;
  border: 2px solid transparent;
}

.product-actions .btn-primary:hover {
  background: linear-gradient(45deg, #419acd, #1e4c90);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30, 76, 144, 0.3);
}

.product-actions .btn-secondary {
  background: transparent;
  color: #25d366;
  border: 2px solid #25d366;
}

.product-actions .btn-secondary:hover {
  background: #25d366;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

/* Product Details Section */
.product-details {
  background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
  padding: 80px 0;
}

.product-sections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-section {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(30, 76, 144, 0.1);
  transition: all 0.3s ease;
}

.product-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(30, 76, 144, 0.15);
}

.product-section h2 {
  color: #1e4c90;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 25px;
  text-align: center;
  position: relative;
}

.product-section h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #1e4c90, #419acd);
  border-radius: 2px;
}

.product-section ul {
  list-style: none;
  padding: 0;
}

.product-section li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 10px;
  border-left: 4px solid #1e4c90;
  transition: all 0.3s ease;
}

.product-section li:hover {
  background: #e3f2fd;
  transform: translateX(5px);
}

.product-section li::before {
  content: "✓";
  color: #1e4c90;
  font-weight: bold;
  font-size: 1.2rem;
  flex-shrink: 0;
  background: rgba(30, 76, 144, 0.1);
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-section p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.7;
  text-align: center;
  background: #f8f9fa;
  padding: 25px;
  border-radius: 15px;
  margin: 0;
}

/* Contact CTA Section */
.contact-cta {
  background: linear-gradient(135deg, #1e4c90 0%, #419acd 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 40%;
  height: 200%;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(15deg);
  z-index: 1;
}

.contact-cta .container {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  color: white;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.cta-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  min-width: 200px;
  justify-content: center;
}

.cta-buttons .btn-primary {
  background: white;
  color: #1e4c90;
  border: 2px solid white;
}

.cta-buttons .btn-primary:hover {
  background: transparent;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.cta-buttons .btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cta-buttons .btn-secondary:hover {
  background: white;
  color: #1e4c90;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Mobile Responsive for Product Page */
@media (max-width: 768px) {
  .product-hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .product-info h1 {
    font-size: 1.6rem;
  }

  .product-brief-desc {
    font-size: 0.95rem;
  }

  .product-actions {
    justify-content: center;
    gap: 12px;
  }

  .product-actions .btn {
    padding: 10px 20px;
    font-size: 0.85rem;
    min-width: 130px;
  }

  .product-sections {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .product-section {
    padding: 25px 20px;
  }

  .product-section h2 {
    font-size: 1.3rem;
  }

  .product-section p {
    font-size: 0.95rem;
    padding: 20px;
  }

  .cta-content h2 {
    font-size: 1.5rem;
  }

  .cta-content p {
    font-size: 0.9rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .cta-buttons .btn {
    min-width: 160px;
    padding: 10px 20px;
    font-size: 0.85rem;
  }
}
