/* Jawal Express - Redesigned CSS */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --primary: #514B93;
  --accent: #B93F86;
  --success: #10bc69;
  --dark: #1a1a2e;
  --light: #f8f9fc;
  --white: #ffffff;
  --text: #333347;
  --text-light: #6b7280;
  --border: #e5e7eb;
  --shadow: 0 4px 24px rgba(81, 75, 147, 0.10);
  --shadow-lg: 0 8px 40px rgba(81, 75, 147, 0.15);
  --radius: 16px;
  --radius-sm: 10px;
  --font: 'Cairo', sans-serif;
  scroll-behavior: smooth;
}

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

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: .3s;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font);
  color: var(--dark);
  font-weight: 700;
  line-height: 1.3;
}

img {
  max-width: 100%;
  height: auto;
}

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

/* === INTRO SCREEN === */
.intro-screen {
  position: fixed;
  inset: 0;
  background: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity .5s ease;
}

.intro-screen.hidden {
  opacity: 0;
  pointer-events: none;
}

.intro-screen img {
  animation: pulse 1.5s infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.08)
  }
}

/* === HEADER === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 997;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  transition: all .4s ease;
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 2px 20px rgba(0, 0, 0, .06);
}

.header .header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header .logo-link img {
  height: 72px;
  width: auto;
  transition: .3s ease;
}

.header .logo-link:hover img {
  transform: scale(1.05);
  filter: drop-shadow(0 0 8px rgba(185, 63, 134, 0.2));
}

.header .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all .3s;
  box-shadow: 0 4px 15px rgba(185, 63, 134, .3);
  -webkit-tap-highlight-color: transparent;
}

.header .cta-btn:hover,
.header .cta-btn:active {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(185, 63, 134, .4);
  color: #fff;
}

.header .cta-btn:active {
  transform: scale(0.96);
}

/* === HERO === */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(160deg, #f5f3ff 0%, #fdf2f8 50%, #fff 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(185, 63, 134, .08) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  border-radius: 50%;
}

.hero .hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero .hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 12px;
  color: var(--dark);
}

.hero .hero-content h1 span {
  color: var(--accent);
}

.hero .hero-content .hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero .hero-content .hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: #fff;
  padding: 16px 40px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 18px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all .3s;
  box-shadow: 0 6px 25px rgba(185, 63, 134, .3);
  -webkit-tap-highlight-color: transparent;
}

.hero .hero-content .hero-cta:hover,
.hero .hero-content .hero-cta:active {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(185, 63, 134, .4);
  color: #fff;
}

.hero .hero-content .hero-cta:active {
  transform: scale(0.96);
}

.hero .hero-image {
  text-align: center;
}

.hero .hero-image img {
  max-height: 420px;
  filter: drop-shadow(0 20px 40px rgba(81, 75, 147, .15));
  animation: float 3s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-12px)
  }
}

.hero .hero-badges {
  display: flex;
  gap: 20px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.hero .hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  padding: 8px 16px;
  border-radius: 50px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.hero .hero-badge i {
  color: var(--accent);
  font-size: 16px;
}

/* === SECTION COMMON === */
.section {
  padding: 80px 0;
  scroll-margin-top: 80px;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.section-header h2 span {
  color: var(--accent);
}

.section-header p {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* === ABOUT === */
.about {
  background: var(--white);
}

.about .about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.about .about-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.about .about-content h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.about .about-content h2 span {
  color: var(--accent);
}

.about .about-content p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 12px;
}

/* === SERVICES === */
.services {
  background: var(--light);
}

.services .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  transition: all .3s;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.service-card .service-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(185, 63, 134, .1), rgba(81, 75, 147, .1));
  transition: all .3s;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--accent), var(--primary));
}

.service-card .service-icon i {
  font-size: 26px;
  color: var(--accent);
  transition: .3s;
}

.service-card:hover .service-icon i {
  color: #fff;
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.service-card p {
  color: var(--text-light);
  font-size: .95rem;
  line-height: 1.7;
}

/* === CTA SECTION === */
.cta-section {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, .06);
  border-radius: 50%;
  top: -100px;
  left: -100px;
}

.cta-section h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 12px;
}

.cta-section p {
  color: rgba(255, 255, 255, .85);
  font-size: 1.1rem;
  margin-bottom: 28px;
}

.cta-section .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--primary);
  padding: 14px 36px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 17px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all .3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, .15);
}

.cta-section .cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, .2);
  color: var(--primary);
}

/* === BRANDS CAROUSEL === */
.brands {
  background: var(--white);
}

.brands .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.brands .brand-item {
  padding: 10px;
}

.brands .brand-item img {
  height: 80px;
  object-fit: contain;
  filter: grayscale(0);
  transition: .3s;
}

/* === REVIEWS === */
.reviews {
  background: var(--dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.reviews::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(185, 63, 134, .1) 0%, transparent 70%);
  bottom: -200px;
  left: -100px;
}

.reviews .section-header h2 {
  color: #fff;
}

.reviews .section-header p {
  color: rgba(255, 255, 255, .6);
}

.reviews .reviews-summary {
  text-align: center;
  margin-bottom: 50px;
  padding: 40px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}

.reviews .avg-rating {
  font-size: 3.5rem;
  font-weight: 900;
  color: #fff;
}

.reviews .stars {
  color: #fbbf24;
  font-size: 24px;
  margin: 10px 0;
}

.reviews .total-reviews {
  color: rgba(255, 255, 255, .5);
  font-size: 1rem;
}

.reviews .reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 50px;
}

.review-card {
  background: rgba(255, 255, 255, .05);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .08);
  transition: all .4s ease;
  backdrop-filter: blur(5px);
}

.review-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, .08);
  border-color: var(--accent);
  box-shadow: 0 15px 35px rgba(0, 0, 0, .3);
}

.review-card .review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.review-card .reviewer-name {
  font-weight: 700;
  color: #fff;
  font-size: 1.1rem;
}

.review-card .review-stars {
  color: #fbbf24;
  font-size: 14px;
}

.review-card .review-device {
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
}

.review-card .review-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, .4);
}

.review-card .review-text {
  color: rgba(255, 255, 255, .7);
  font-size: .95rem;
  line-height: 1.8;
  font-style: italic;
}

/* Review Form */
.review-form-container {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.review-form-container h3 {
  text-align: center;
  margin-bottom: 24px;
  font-size: 1.5rem;
  color: var(--primary);
}

.star-rating-input {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 25px;
  direction: ltr;
}

.star-rating-input i {
  font-size: 36px;
  color: #e5e7eb;
  cursor: pointer;
  transition: .2s;
}

.star-rating-input i.active,
.star-rating-input i:hover {
  color: #fbbf24;
  transform: scale(1.15);
  filter: drop-shadow(0 0 8px rgba(251, 191, 36, .4));
}

/* === CONTACT FORM === */
.contact {
  background: var(--light);
}

.contact .form-wrapper {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: var(--radius);
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.contact .form-wrapper::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, .05);
  border-radius: 50%;
  top: -60px;
  right: -60px;
}

.contact .form-wrapper h2 {
  color: #fff;
  text-align: center;
  margin-bottom: 8px;
  font-size: 1.6rem;
}

.contact .form-wrapper .form-subtitle {
  color: rgba(255, 255, 255, .8);
  text-align: center;
  margin-bottom: 28px;
}

.contact .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact .form-grid .full-width {
  grid-column: 1 / -1;
}

.contact .form-control,
.contact .form-select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-family: var(--font);
  font-size: 15px;
  transition: .3s;
  backdrop-filter: blur(4px);
}

.contact .form-control::placeholder {
  color: rgba(255, 255, 255, .6);
}

.contact .form-control:focus,
.contact .form-select:focus {
  outline: none;
  border-color: rgba(255, 255, 255, .5);
  background: rgba(255, 255, 255, .18);
}

.contact .form-select {
  appearance: none;
}

.contact .form-select option {
  color: var(--text);
  background: var(--white);
}

.contact textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.contact .submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px;
  background: var(--success);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: all .3s;
  -webkit-tap-highlight-color: transparent;
}

.contact .submit-btn:hover {
  background: #0ea85f;
  transform: translateY(-2px);
}

.contact .submit-btn:active {
  transform: scale(0.98);
}

.contact .terms-label {
  color: rgba(255, 255, 255, .85);
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 12px 0;
}

.contact .terms-label a {
  color: #fff;
  text-decoration: underline;
}

.contact .success-message {
  display: none;
  text-align: center;
  padding: 40px;
  color: #fff;
}

.contact .success-message i {
  font-size: 48px;
  color: var(--success);
  margin-bottom: 16px;
  display: block;
}

.contact .success-message h3 {
  color: #fff;
  margin-bottom: 8px;
}

.contact .error-message {
  color: #fca5a5;
  font-size: .85rem;
  margin-top: 4px;
}

/* === INVOICE MODAL === */
.invoice-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, .6);
  backdrop-filter: blur(4px);
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.invoice-modal.active {
  display: flex;
}

.invoice-content {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 500px;
  width: 100%;
  position: relative;
  animation: slideUp .3s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.invoice-content .invoice-header {
  text-align: center;
  border-bottom: 2px solid var(--border);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.invoice-content .invoice-header img {
  height: 50px;
  margin-bottom: 8px;
}

.invoice-content .invoice-header h3 {
  font-size: 1.1rem;
  color: var(--primary);
}

.invoice-content .invoice-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: .95rem;
}

.invoice-content .invoice-row .label {
  color: var(--text-light);
}

.invoice-content .invoice-row .value {
  font-weight: 600;
  color: var(--dark);
}

.invoice-content .invoice-total {
  background: var(--light);
  padding: 16px;
  border-radius: var(--radius-sm);
  margin-top: 16px;
  text-align: center;
}

.invoice-content .invoice-total .amount {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
}

.invoice-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.invoice-actions button {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: .3s;
}

.invoice-actions .btn-print {
  background: var(--primary);
  color: #fff;
}

.invoice-actions .btn-print:hover {
  background: #3d3878;
}

.invoice-actions .btn-close-invoice {
  background: var(--border);
  color: var(--text);
}

/* === FOOTER === */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, .7);
  padding: 60px 0 0;
}

.footer .footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer .footer-brand img {
  height: 60px;
  margin-bottom: 16px;
}

.footer .footer-brand p {
  font-size: .9rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, .6);
}

.footer h5 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 16px;
  font-weight: 700;
}

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

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

.footer .footer-links-list a {
  color: rgba(255, 255, 255, .6);
  font-size: .9rem;
  transition: .3s;
}

.footer .footer-links-list a:hover {
  color: var(--accent);
}

.footer .payment-methods {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.footer .payment-methods img {
  height: 32px;
  background: rgba(255, 255, 255, .1);
  border-radius: 6px;
  padding: 4px 8px;
}

/* Trust Section */
.footer .trust-section {
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 40px;
  padding: 30px 0;
}

.footer .trust-section h5 {
  text-align: center;
  margin-bottom: 20px;
}

.footer .trust-badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}

.footer .trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, .04);
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, .1);
  transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(8px);
}

.footer .trust-badge:hover {
  background: rgba(255, 255, 255, .08);
  border-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.footer .trust-badge img {
  height: 32px;
  /* filter: brightness(0) invert(1); */
  /* opacity: 0.8; */
  transition: .3s;
}

/* 
.footer .trust-badge:hover img {
  opacity: 1;
  filter: none;
} */

.footer .trust-badge span {
  color: rgba(255, 255, 255, .8);
  font-size: .85rem;
  font-weight: 600;
  transition: .3s;
}

.footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  margin-top: 30px;
  padding: 20px 0;
  text-align: center;
  font-size: .85rem;
}

.footer .footer-bottom a {
  color: rgba(255, 255, 255, .5);
  margin: 0 10px;
}

.footer .footer-bottom a:hover {
  color: var(--accent);
}

.footer .footer-bottom strong {
  color: var(--accent);
}

/* === WHATSAPP FLOAT === */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 998;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, .4);
  transition: all .3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, .5);
  color: #fff;
}

.whatsapp-float i {
  font-size: 28px;
}

/* === FORM INPUTS GLOBAL === */
.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 15px;
  transition: .3s;
  background: var(--white);
}

.form-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(185, 63, 134, .1);
}

.form-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border: none;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s;
}

.form-btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: #fff;
}

.form-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(185, 63, 134, .3);
}

/* === RESPONSIVE === */
@media (max-width: 991px) {
  .hero .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero .hero-badges {
    justify-content: center;
  }

  .hero .hero-image {
    order: -1;
  }

  .hero .hero-image img {
    max-height: 300px;
  }

  .about .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about .about-image {
    order: -1;
  }

  .about .about-image img {
    max-width: 350px;
    margin: 0 auto;
  }

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

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

  .contact .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .section {
    padding: 45px 0;
  }

  .section-header {
    margin-bottom: 30px;
  }

  .section-header h2 {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .section-header p {
    font-size: 0.95rem;
  }

  .hero {
    padding: 100px 0 40px;
  }

  .hero .hero-content h1 {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }

  .hero .hero-content .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
  }

  .hero .hero-content .hero-cta {
    padding: 15px 32px;
    font-size: 16px;
    width: 100%;
    justify-content: center;
  }

  .services .services-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .service-card {
    padding: 25px 20px;
  }

  .service-card .service-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 15px;
  }

  .service-card .service-icon i {
    font-size: 22px;
  }

  .review-form-container {
    padding: 20px 15px;
  }

  .contact .form-wrapper {
    padding: 30px 15px;
    border-radius: 0;
    margin: 0 -20px;
  }

  .contact .form-control,
  .contact .form-select {
    padding: 12px 15px;
    font-size: 14px;
  }

  .footer {
    padding: 40px 0 0;
  }

  .footer .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 25px;
  }

  .footer .payment-methods {
    justify-content: center;
    gap: 8px;
  }

  .footer .trust-badges {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .footer .trust-badge {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
  }

  .header {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.98);
  }

  .header .header-container {
    padding: 0 15px;
  }

  .header .cta-btn {
    padding: 10px 18px;
    font-size: 13px;
  }

  .header .logo-link img {
    height: 52px;
  }
}

@media (max-width: 480px) {
  .hero .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero .hero-badges {
    flex-direction: column;
    align-items: center;
  }

  .cta-section h2 {
    font-size: 1.4rem;
  }
}

/* === PRINT STYLES === */
@media print {
  body * {
    visibility: hidden;
  }

  .invoice-content,
  .invoice-content * {
    visibility: visible;
  }

  .invoice-content {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    box-shadow: none;
  }

  .invoice-actions {
    display: none !important;
  }

  .whatsapp-float,
  .header {
    display: none !important;
  }
}

/* === AOS DISABLE ON MOBILE === */
@media (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/* === MODAL === */
.modal-backdrop {
  background: rgba(0, 0, 0, .4);
}

.modal-content {
  border: none;
  border-radius: var(--radius);
}