@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary-blue: #1877F2;
  --dark-blue: #0F172A;
  --text-dark: #1E293B;
  --text-light: #64748B;
  --bg-light: #F8FAFC;
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text-dark);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: white;
}

/* Header */
.navbar {
  padding: 1.5rem 0;
  background: transparent;
  z-index: 1000;
}
.navbar-brand img {
  height: 60px;
}
.nav-link {
  color: var(--primary-blue) !important;
  font-weight: 600;
  font-size: 1.15rem;
  padding: 0.5rem 1.5rem !important;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
  overflow: hidden;
}

.hero-bg-shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: var(--primary-blue);
  z-index: -1;
  border-bottom-left-radius: 80% 90%;
}

html[dir="rtl"] .hero-bg-shape {
  right: auto;
  left: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 80% 90%;
}

.hero-bg-shape::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255,255,255,0.15) 1.5px, transparent 1.5px);
  background-size: 40px 40px;
  opacity: 0.6;
}

.hero-title {
  font-size: 4.2rem;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 2.5rem;
  color: #111;
}
.hero-desc {
  font-size: 1.3rem;
  color: var(--text-light);
  margin-bottom: 3.5rem;
  max-width: 520px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}
.store-btn img {
  height: 55px;
  background: #000;
  padding: 10px 25px;
  border-radius: 12px;
}

.hero-images {
  position: relative;
  height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-mockup {
  position: absolute;
  width: 300px;
  border-radius: 45px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
  background: transparent;
}
.phone-back {
  z-index: 1;
  transform: translateX(-100px) translateY(-50px);
}
.phone-front {
  z-index: 2;
  transform: translateX(100px) translateY(50px);
}

/* About App Section */
.about-section {
  padding: 140px 0 40px;
  background: white;
}
.sec-title {
  font-size: 3.2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 100px;
  color: #111;
}

.app-slider {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
}
.swiper {
  width: 100%;
  padding: 60px 0 !important;
}
.swiper-slide {
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(0.8);
  opacity: 0.4;
}
.swiper-slide-active {
  transform: scale(1.15);
  opacity: 1;
  z-index: 10;
}
.app-screen img {
  width: 100%;
  border: none;
  filter: drop-shadow(0 15px 25px rgba(0,0,0,0.15));
}

/* Slider Navigation Arrows - Positioned on sides */
.swiper-btn {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%);
  width: 55px !important;
  height: 55px !important;
  background: #fff !important;
  color: var(--primary-blue) !important;
  border: 2px solid var(--primary-blue) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 100;
  transition: 0.3s;
}
.swiper-btn:after {
  display: none; 
}
.swiper-btn:hover {
  background: var(--primary-blue) !important;
  color: #fff !important;
}
.swiper-button-prev {
  left: -80px !important;
}
.swiper-button-next {
  right: -80px !important;
}

/* Pagination dots at bottom */
.swiper-pagination {
  position: relative !important;
  margin-top: 40px;
}
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #CBD5E1;
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background: var(--primary-blue);
  width: 35px;
  border-radius: 6px;
}

/* CTA Section */
.cta-section {
  background: var(--dark-blue);
  padding: 100px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

/* Contact Page Styles */
.contact-banner {
  background: linear-gradient(135deg, var(--primary-blue), #0b5ed7);
  padding: 100px 0;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 80px;
}
.contact-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 30px 30px;
}
.contact-banner-tag {
  background: rgba(255,255,255,0.2);
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 20px;
}
.contact-banner h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
}
.contact-banner p {
  font-size: 1.2rem;
  opacity: 0.8;
  max-width: 700px;
  margin: 0 auto;
}

.contact-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.05);
  height: 100%;
}
.contact-form-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.contact-form-desc {
  color: var(--text-light);
  margin-bottom: 40px;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.form-control, .form-select {
  background: #F8FAFC !important;
  border: 1px solid #E2E8F0 !important;
  padding: 15px 20px !important;
  border-radius: 12px !important;
  font-size: 1rem !important;
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary-blue) !important;
  box-shadow: 0 0 0 4px rgba(24, 119, 242, 0.1) !important;
}

.btn-transmit {
  background: var(--primary-blue);
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 30px;
  transition: 0.3s;
}
.btn-transmit:hover {
  background: #0b5ed7;
  transform: translateY(-2px);
}

.info-card {
  margin-bottom: 30px;
}
.info-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 25px;
}
.info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}
.info-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-blue);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.info-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 5px;
}
.info-value {
  font-weight: 700;
  color: var(--text-dark);
}
.info-value a {
  color: var(--primary-blue);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.info-value a:hover {
  border-bottom-color: var(--primary-blue);
}

.laptop-img-wrap {
  margin-top: 40px;
  border-radius: 20px;
  overflow: hidden;
  border: 4px dashed #E2E8F0;
  padding: 10px;
}
.laptop-img-wrap img {
  width: 100%;
  border-radius: 12px;
}

/* Footer */
.footer {
  background: var(--primary-blue);
  padding: 100px 0 50px;
  color: #fff;
}
.footer-logo {
  height: 60px;
  margin-bottom: 30px;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}
.social-item {
  width: 42px;
  height: 42px;
  background: white;
  color: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}
.social-item:hover {
  background: var(--dark-blue);
  color: white;
  transform: translateY(-3px);
}
.social-item i {
  line-height: 1;
}

@media (max-width: 1400px) {
  .swiper-button-prev { left: 10px !important; }
  .swiper-button-next { right: 10px !important; }
}

@media (max-width: 991px) {
  .hero-bg-shape {
    width: 100%;
    height: 45%;
    bottom: 0;
    top: auto;
    border-radius: 100% 100% 0 0;
  }
  html[dir="rtl"] .hero-bg-shape {
    left: 0;
    right: auto;
    border-radius: 100% 100% 0 0;
  }
  .hero-section {
    text-align: center;
    padding-top: 120px;
  }
  .hero-buttons {
    justify-content: center;
    margin-bottom: 50px;
  }
  .swiper-btn { display: none !important; }
  .contact-banner h1 { font-size: 2.5rem; }
}

@media (max-width: 768px) {
  .hero-title { font-size: 2.5rem; margin-bottom: 1rem; }
  .hero-desc { font-size: 1.1rem; margin-bottom: 2rem; margin-left: auto; margin-right: auto; }
  
  .hero-images { height: 450px; }
  .phone-mockup { width: 220px; }
  .phone-back { transform: translateX(-70px) translateY(-30px); }
  .phone-front { transform: translateX(70px) translateY(30px); }
  
  .sec-title { font-size: 2.2rem; margin-bottom: 50px; }
  .about-section { padding: 80px 0 30px; }
  
  .cta-section { padding: 60px 0; text-align: center; }
  .cta-title { font-size: 2.2rem; }
  
  .contact-banner { padding: 60px 0; }
  .contact-banner h1 { font-size: 2rem; }
  
  .footer { padding: 60px 0 30px; text-align: center; }
  .footer-logo { margin: 0 auto 30px; }
  .footer-social { justify-content: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .hero-images { height: 350px; }
  .phone-mockup { width: 170px; }
  .phone-back { transform: translateX(-50px) translateY(-20px); }
  .phone-front { transform: translateX(50px) translateY(20px); }
  
  .hero-buttons { flex-direction: column; align-items: center; gap: 15px; }
  .store-btn img { height: 50px; }
}
