@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;900&display=swap');

:root {
  --navy-blue: #1a3a52;
  --copper-orange: #d4743d;
  --alert-red: #dc2626;
  --pure-white: #ffffff;
  --light-gray: #f3f4f6;
  --dark-gray: #1f2937;
  --text-primary: #111827;
  --text-secondary: #6b7280;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Cairo', sans-serif;
  color: var(--text-primary);
  background-color: var(--pure-white);
  line-height: 1.8;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 1000;
  animation: pulse 2s infinite;
}

.floating-whatsapp a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
  color: white;
}

.floating-whatsapp a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(26, 58, 82, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  z-index: 999;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: var(--navy-blue);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo img {
  height: 50px;
  width: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-menu a {
  color: var(--pure-white);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--copper-orange);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-menu a:hover {
  color: var(--copper-orange);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--pure-white);
  margin: 3px 0;
  transition: all 0.3s ease;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-blue) 0%, #2c5f7f 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url('/4.jpg') center/cover;
  opacity: 0.35;
  animation: zoomIn 20s ease-in-out infinite alternate;
}

@keyframes zoomIn {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(135deg, rgba(26, 58, 82, 0.9) 0%, rgba(44, 95, 127, 0.8) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--pure-white);
  padding: 100px 20px 50px;
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 30px;
  line-height: 1.2;
}

.hero-title .line {
  display: block;
  opacity: 0;
  animation: slideUp 0.8s ease forwards;
}

.hero-title .line:nth-child(1) {
  animation-delay: 0.3s;
}

.hero-title .line:nth-child(2) {
  animation-delay: 0.6s;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeIn 1s ease forwards 0.9s;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeIn 1s ease forwards 1.2s;
}

.btn {
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary {
  background: var(--copper-orange);
  color: var(--pure-white);
  box-shadow: 0 4px 20px rgba(212, 116, 61, 0.4);
}

.btn-primary:hover {
  background: #b85f2f;
  transform: translateY(-3px);
  box-shadow: 0 6px 30px rgba(212, 116, 61, 0.6);
}

.btn-secondary {
  background: transparent;
  color: var(--pure-white);
  border: 2px solid var(--pure-white);
}

.btn-secondary:hover {
  background: var(--pure-white);
  color: var(--navy-blue);
  transform: translateY(-3px);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 50%;
  transform: translateX(50%);
  text-align: center;
  color: var(--pure-white);
  z-index: 2;
  animation: bounce 2s infinite;
}

.hero-scroll span {
  display: block;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.scroll-arrow {
  width: 30px;
  height: 30px;
  border-left: 2px solid var(--pure-white);
  border-bottom: 2px solid var(--pure-white);
  transform: rotate(-45deg);
  margin: 0 auto;
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(50%) translateY(0);
  }
  50% {
    transform: translateX(50%) translateY(10px);
  }
}

section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 3rem;
  font-weight: 900;
  color: var(--navy-blue);
  margin-bottom: 20px;
}

.title-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--copper-orange), var(--alert-red));
  margin: 0 auto 20px;
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.about {
  background: var(--light-gray);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
}

.image-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.image-frame::before {
  content: '';
  position: absolute;
  top: 20px;
  right: 20px;
  width: 100%;
  height: 100%;
  border: 4px solid var(--copper-orange);
  border-radius: 20px;
  z-index: -1;
}

.image-frame img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.image-frame:hover img {
  transform: scale(1.05);
}

.about-text h3 {
  font-size: 2rem;
  color: var(--navy-blue);
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 20px;
  color: var(--text-primary);
  font-size: 1.1rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: var(--pure-white);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--copper-orange);
  margin-bottom: 5px;
}

.stat-label {
  display: block;
  color: var(--text-secondary);
  font-size: 1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--pure-white);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--copper-orange);
  box-shadow: 0 20px 50px rgba(212, 116, 61, 0.2);
}

.service-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  display: inline-block;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.service-card h3 {
  font-size: 1.5rem;
  color: var(--navy-blue);
  margin-bottom: 15px;
}

.service-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.products {
  background: var(--light-gray);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.products-cta {
  text-align: center;
  
}
.products-ctaa {
  text-align: center;
  margin-top: 50px;
}

.products-cta .btn {
  display: inline-block;
  padding: 18px 50px;
  font-size: 1.1rem;
}

.product-card {
  background: var(--pure-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.product-image {
  position: relative;
  overflow: hidden;
  padding-top: 100%;
  cursor: pointer;
}

.product-image img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.btn-buy {
  width: 100%;
  padding: 15px;
  background: var(--alert-red);
  color: var(--pure-white);
  border: none;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: 'Cairo', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-buy:hover {
  background: #b91c1c;
  transform: scale(1.02);
}

.testimonials {
  background: linear-gradient(135deg, #0a1628 0%, #1a2744 50%, #0d1f3c 100%);
  color: var(--pure-white);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4a574' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.testimonials .section-title {
  color: var(--pure-white);
  position: relative;
  z-index: 1;
}

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
  backdrop-filter: blur(20px);
  padding: 40px 30px;
  border-radius: 20px;
  border: 1px solid rgba(212, 165, 116, 0.3);
  box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  display: block !important;
  animation: fadeIn 0.6s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  border-color: var(--copper-orange);
  box-shadow: 0 25px 50px -15px rgba(212, 165, 116, 0.3);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial-quote {
  font-size: 80px;
  color: var(--copper-orange);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: -30px;
}

.testimonial-content {
  margin-bottom: 30px;
}

.testimonial-content p {
  font-size: 1.3rem;
  line-height: 2;
  font-style: italic;
  color: rgba(255, 255, 255, 0.95);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--copper-orange), #e8c39e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: #1a1a1a;
  box-shadow: 0 10px 30px rgba(212, 165, 116, 0.4);
}

.testimonial-author-info h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--copper-orange);
}

.testimonial-author-info span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.slider-container {
  position: relative;
}

.slider-arrows {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.slider-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(212, 165, 116, 0.3);
  color: var(--copper-orange);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.slider-arrow:hover {
  background: var(--copper-orange);
  color: #1a1a1a;
  transform: scale(1.1);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dots .dot.active {
  background: var(--copper-orange);
  transform: scale(1.3);
  box-shadow: 0 0 15px rgba(212, 165, 116, 0.6);
}

@media (max-width: 768px) {
  .testimonial-card {
    padding: 35px 25px;
    margin: 0 10px;
  }
  
  .testimonial-content p {
    font-size: 1.1rem;
  }
  
  .slider-arrow {
    width: 45px;
    height: 45px;
  }
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: var(--light-gray);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  font-size: 3rem;
}

.contact-details h4 {
  font-size: 1.2rem;
  color: var(--navy-blue);
  margin-bottom: 5px;
}

.contact-details a {
  color: var(--copper-orange);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: var(--alert-red);
}

.contact-details p {
  color: var(--text-secondary);
}

.contact-cta {
  background: linear-gradient(135deg, var(--navy-blue), var(--copper-orange));
  padding: 50px;
  border-radius: 20px;
  text-align: center;
  color: var(--pure-white);
}

.contact-cta h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.contact-cta p {
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.btn-large {
  padding: 18px 50px;
  font-size: 1.2rem;
}

.footer {
  background: var(--dark-gray);
  color: var(--pure-white);
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 40px;
}

.footer-brand img {
  height: 60px;
  margin-bottom: 20px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--copper-orange);
}

.footer-contact p {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact a {
  color: var(--copper-orange);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: var(--pure-white);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    right: -100%;
    top: 80px;
    flex-direction: column;
    background: var(--navy-blue);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 20px 0;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-links ul {
    padding: 0;
    text-align: center;
  }

  .footer-contact {
    text-align: center;
  }

  .floating-whatsapp {
    bottom: 20px;
    left: 20px;
  }

  .floating-whatsapp a {
    width: 50px;
    height: 50px;
  }

  .floating-whatsapp svg {
    width: 26px;
    height: 26px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2rem;
  }
}
