/* ===========================
   Global Styles & Variables
   =========================== */
:root {
  --primary-color: #0f7bff;
  --secondary-color: #1b1f23;
  --accent-color: #20c997;
  --border-color: #e5e7eb;
  --bg-soft: #f9fafb;
  --dark-color: #111827;
  --light-color: #ffffff;
  --text-color: #111827;
  --gray-color: #6b7280;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 4px 6px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 18px 45px rgba(15, 23, 42, 0.15);
  --transition: all 0.25s ease;
  --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-soft);
}

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

.highlight {
  color: var(--primary-color);
}

/* ===========================
   Navigation
   =========================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-md);
  z-index: 1000;
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-lg);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
}

.logo h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-color);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}

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

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

/* Language Switcher */
.language-switcher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-right: 1.5rem;
}

.lang-btn {
  background: none;
  border: none;
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  padding: 0.4rem 0.6rem;
  transition: all 0.3s ease;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.lang-btn:hover {
  color: var(--primary-color);
  background: rgba(15, 123, 255, 0.1);
}

.lang-btn.active {
  color: var(--primary-color);
  background: rgba(15, 123, 255, 0.15);
  font-weight: 700;
}

.lang-divider {
  color: #ddd;
  font-weight: 300;
}

.contact-info .phone-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.contact-info .phone-link:hover {
  color: var(--primary-color);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--dark-color);
  transition: var(--transition);
}

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

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

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

/* ===========================
  Hero Section (minimalist)
  =========================== */
.hero {
  height: 80vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Slideshow Container */
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(15, 123, 255, 0.65) 0%,
    rgba(0, 102, 204, 0.6) 100%
  );
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90%;
  max-width: 600px;
  z-index: 2;
  opacity: 0;
  animation: slideTextIn 1s ease-out forwards;
}

.slide.active .slide-content {
  animation: slideTextIn 1s ease-out forwards;
}

@keyframes slideTextIn {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) translateY(0);
  }
}

.slide-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.05em;
}

.slide-subtitle {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
  font-weight: 300;
}

/* Slider Navigation Dots */
.slider-nav {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 5;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.slider-dot:hover {
  background: rgba(255, 255, 255, 0.7);
  transform: scale(1.2);
}

.slider-dot.active {
  background: white;
  width: 32px;
  border-radius: 6px;
}

.hero-overlay {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--dark-color);
  text-align: left;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  max-width: 32rem;
  color: var(--gray-color);
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 0.75rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: bounce 2s infinite;
}

.scroll-indicator i {
  font-size: 1.5rem;
  color: var(--gray-color);
}

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

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

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

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

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

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

.cta-section .btn-secondary:hover {
  background: transparent;
  color: var(--primary-color);
}

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

.animate-fade-in-delay {
  animation: fadeIn 1s ease-in 0.3s backwards;
}

.animate-fade-in-delay-2 {
  animation: fadeIn 1s ease-in 0.6s backwards;
}

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

/* ===========================
   Buttons
   =========================== */
.btn {
  display: inline-block;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

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

.btn-primary:hover {
  background: #ff5722;
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary-color);
  transform: translateY(-3px);
}

.btn-small {
  padding: 8px 20px;
  font-size: 0.9rem;
}

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

/* ===========================
   Features Section
   =========================== */
.features {
  padding: 80px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
  position: relative;
  z-index: 1;
}

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

.feature-card {
  text-align: center;
  padding: 2rem;
  background: var(--light-color);
  border-radius: 15px;
  transition: var(--transition);
  cursor: pointer;
}

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

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-1);
  border-radius: 50%;
  color: var(--white);
  font-size: 2rem;
}

.feature-card:nth-child(2) .feature-icon {
  background: var(--gradient-2);
}

.feature-card:nth-child(3) .feature-icon {
  background: var(--gradient-3);
}

.feature-card:nth-child(4) .feature-icon {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.feature-card h3 {
  margin-bottom: 0.5rem;
  color: var(--dark-color);
}

.feature-card p {
  color: var(--gray-color);
}

/* ===========================
   Section Styles
   =========================== */
section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

.title-underline {
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  margin: 0 auto 1rem;
}

.section-subtitle {
  color: var(--gray-color);
  font-size: 1.1rem;
}

/* ===========================
   About Section
   =========================== */
.about {
  background: var(--light-color);
}

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

.about-text h3 {
  font-size: 1.8rem;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.about-text p {
  margin-bottom: 1rem;
  color: var(--gray-color);
  line-height: 1.8;
}

.about-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.stat {
  text-align: center;
}

.stat h4 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat p {
  color: var(--gray-color);
  font-size: 0.9rem;
}

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

.image-placeholder {
  width: 100%;
  height: 400px;
  background: var(--gradient-1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 5rem;
  box-shadow: var(--shadow-lg);
}

/* ===========================
   Customer Service Section
   =========================== */
.customer-service {
  background: linear-gradient(135deg, var(--primary-color) 0%, #0066cc 100%);
  color: var(--white);
  padding: 80px 0;
}

.service-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.service-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.service-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  opacity: 0.95;
}

/* ===========================
   Products Section
   =========================== */
.products {
  background: var(--white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.product-card {
  background: var(--light-color);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
}

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

.product-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, #0066cc 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  transition: var(--transition);
}

.product-card:hover .product-icon {
  background: linear-gradient(135deg, var(--primary-color) 0%, #0066cc 100%);
  color: var(--white);
  transform: scale(1.05);
}

.product-card:nth-child(1) .product-icon {
  background: linear-gradient(135deg, var(--primary-color) 0%, #0066cc 100%);
}

.product-card:nth-child(2) .product-icon {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.product-card:nth-child(3) .product-icon {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.product-card h3 {
  margin-bottom: 0.5rem;
  color: var(--dark-color);
}

.product-card p {
  color: var(--gray-color);
  margin-bottom: 1rem;
}

/* ===========================
   News Section
   =========================== */
.news {
  background: var(--light-color);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.news-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

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

.news-date {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.news-card h3 {
  color: var(--dark-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.news-card p {
  color: var(--gray-color);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.read-more {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.read-more:hover {
  color: var(--secondary-color);
}

.read-more i {
  transition: var(--transition);
}

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

/* Testimonial Styles */
.testimonial-style {
  border-left: 4px solid var(--primary-color) !important;
  display: flex;
  flex-direction: column;
}

.testimonial-quote {
  color: var(--gray-color);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
  font-size: 0.95rem;
  flex: 1;
}

.testimonial-author {
  color: var(--dark-color);
  font-size: 0.9rem;
  line-height: 1.6;
  border-top: 1px solid #e5e7eb;
  padding-top: 1rem;
}

.testimonial-author strong {
  color: var(--dark-color);
  font-weight: 600;
}

.testimonial-title {
  color: var(--primary-color);
  font-weight: 600;
  display: block;
}

.testimonial-location {
  color: var(--gray-color);
  font-size: 0.85rem;
  display: block;
}

/* ===========================
   Testimonials Section
   =========================== */
.testimonials-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  padding: 5rem 0;
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
}

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

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(15, 123, 255, 0.15);
  border-color: var(--primary-color);
}

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

.quote-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #0056d2 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(15, 123, 255, 0.3);
}

.quote-icon i {
  color: var(--white);
  font-size: 1.2rem;
}

.testimonial-body {
  flex: 1;
  margin-bottom: 1.5rem;
}

.testimonial-excerpt,
.testimonial-full {
  color: var(--gray-color);
  line-height: 1.9;
  font-size: 0.95rem;
  margin: 0;
  font-style: italic;
}

.read-more-btn {
  background: none;
  border: none;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  padding: 0.75rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
  align-self: flex-start;
}

.read-more-btn:hover {
  gap: 0.75rem;
  color: var(--secondary-color);
}

.read-more-btn i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.read-more-btn.expanded i {
  transform: rotate(180deg);
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
}

.customer-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.customer-avatar i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.customer-details {
  flex: 1;
}

.customer-name {
  color: var(--dark-color);
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.25rem 0;
}

.customer-role {
  color: var(--primary-color);
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0 0 0.25rem 0;
}

.customer-company {
  color: var(--gray-color);
  font-size: 0.8rem;
  margin: 0;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .testimonial-card {
    padding: 2rem;
  }
}

/* ===========================
   Contact Section
   =========================== */
.contact {
  background: var(--white);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 3.5rem;
}

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

.contact-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-top: 5px;
}

.contact-item h4 {
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: var(--gray-color);
}

.contact-item a {
  color: var(--gray-color);
  text-decoration: none;
  transition: var(--transition);
}

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

.contact-form-section h3 {
  color: var(--dark-color);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-group textarea {
  resize: vertical;
}

/* ===========================
   Footer
   =========================== */
.footer {
  background: var(--dark-color);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1rem;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
}

/* ===========================
   Custom Alert Modal
   =========================== */
.custom-alert-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  backdrop-filter: blur(4px);
}

.custom-alert-box {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem;
  max-width: 450px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideDown 0.3s ease-out;
  text-align: center;
}

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

.custom-alert-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-alert-icon i {
  color: var(--white);
  font-size: 2rem;
}

.custom-alert-title {
  color: var(--dark-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.custom-alert-message {
  color: var(--gray-color);
  margin-bottom: 2rem;
  line-height: 1.6;
  font-size: 1rem;
}

.custom-alert-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 12px;
}

.alert-contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  color: var(--dark-color);
  font-weight: 600;
}

.alert-contact-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.custom-alert-btn {
  background: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 0.875rem 2.5rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.custom-alert-btn:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15, 123, 255, 0.3);
}

/* ===========================
   Back to Top Button
   =========================== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
  z-index: 999;
}

.back-to-top:hover {
  background: var(--secondary-color);
  transform: translateY(-5px);
}

.back-to-top.show {
  display: flex;
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    transform: translateX(-100%);
    transition: var(--transition);
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .language-switcher {
    margin-right: 1rem;
    order: -1;
  }

  .contact-info {
    display: none;
  }

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

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

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

  .about-stats {
    justify-content: space-around;
  }

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

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

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

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

  .about-stats {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ===========================
   Policy Pages Styling
   =========================== */
.policy-section {
  padding: 4rem 0;
  min-height: 80vh;
}

.policy-section h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.last-updated {
  color: var(--gray-color);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.policy-content {
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  line-height: 1.8;
}

.policy-content h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
  border-bottom: 3px solid var(--primary-color);
  padding-bottom: 0.5rem;
}

.policy-content p {
  margin-bottom: 1rem;
  color: var(--text-color);
}

.policy-content ul {
  margin: 1rem 0 1rem 2rem;
  color: var(--text-color);
}

.policy-content li {
  margin-bottom: 0.6rem;
  list-style-type: disc;
}

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

.policy-content a:hover {
  text-decoration: underline;
  color: var(--secondary-color);
}

.policy-content hr {
  margin: 3rem 0;
  border: none;
  border-top: 2px solid var(--border-color);
}

@media (max-width: 768px) {
  .policy-section {
    padding: 2rem 0;
  }

  .policy-section h1 {
    font-size: 1.8rem;
  }

  .policy-content {
    padding: 1.5rem;
  }

  .policy-content h2 {
    font-size: 1.2rem;
  }
}

/* ===========================
   Toast Notifications
   =========================== */
.toast-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: white;
  padding: 16px 24px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10000;
  opacity: 0;
  transform: translateX(400px);
  transition: all 0.3s ease;
  max-width: 400px;
}

.toast-notification.show {
  opacity: 1;
  transform: translateX(0);
}

.toast-notification i {
  font-size: 24px;
}

.toast-success {
  border-left: 4px solid #10b981;
}

.toast-success i {
  color: #10b981;
}

.toast-error {
  border-left: 4px solid #ef4444;
}

.toast-error i {
  color: #ef4444;
}

.toast-notification span {
  color: #374151;
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .toast-notification {
    top: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
  }
}
