@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --red: #e02424;
  --red-dark: #c81e1e;
  --red-light: #f05252;
  --blue: #1e40af;
  --blue-dark: #1e3a8a;
  --blue-light: #3b82f6;
  --blue-lighter: #dbeafe;
  --green: #059669;
  --green-light: #10b981;
  --whatsapp: #25D366;
  --whatsapp-dark: #1da851;
  --orange: #f59e0b;
  --bg: #f0f4f8;
  --bg-white: #ffffff;
  --text-dark: #1a1a2e;
  --text-medium: #4a5568;
  --text-light: #718096;
  --border: #e2e8f0;
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  --radius: 12px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

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

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

/* ===================== HEADER / NAVBAR ===================== */
.navbar {
  background: linear-gradient(135deg, var(--text-dark) 0%, #16213e 100%);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  flex-wrap: wrap;
  gap: 10px;
}

.navbar-logo img {
  height: 50px;
  object-fit: contain;
}

.navbar-contact {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.navbar-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  transition: color 0.3s;
}

.navbar-phone:hover {
  color: var(--orange);
}

.navbar-phone svg {
  width: 20px;
  height: 20px;
  color: var(--orange);
}

.navbar-email {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #cbd5e0;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.navbar-email:hover {
  color: #fff;
}

.navbar-email svg {
  width: 18px;
  height: 18px;
  color: var(--blue-light);
}

/* ===================== HERO SECTION ===================== */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,46,0.85) 0%, rgba(15,52,96,0.7) 50%, rgba(224,36,36,0.3) 100%);
}

.hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 60px 20px;
  width: 100%;
}

.hero-content {
  flex: 1;
  color: #fff;
  min-width: 300px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.2);
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--green-light);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 15px;
  font-style: italic;
  text-transform: lowercase;
}

.hero-content h1 span {
  color: var(--red-light);
  text-transform: lowercase;
}

.hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 30px;
  max-width: 500px;
  line-height: 1.7;
  font-style: italic;
  text-transform: lowercase;
}

.hero-phone-box {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.phone-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 1.25rem;
  font-weight: 700;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(224,36,36,0.4);
  border: none;
  cursor: pointer;
}

.phone-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(224,36,36,0.5);
}

.phone-cta svg {
  width: 24px;
  height: 24px;
  animation: phone-ring 1.5s infinite;
}

@keyframes phone-ring {
  0%, 100% { transform: rotate(0deg); }
  10% { transform: rotate(15deg); }
  20% { transform: rotate(-10deg); }
  30% { transform: rotate(10deg); }
  40% { transform: rotate(-5deg); }
  50% { transform: rotate(0deg); }
}

.whatsapp-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--whatsapp) 0%, var(--whatsapp-dark) 100%);
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(37,211,102,0.4);
  border: none;
  cursor: pointer;
}

.whatsapp-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(37,211,102,0.5);
}

.whatsapp-cta svg {
  width: 22px;
  height: 22px;
}

/* ===================== HERO FORM ===================== */
.hero-form-wrapper {
  flex: 0 0 420px;
  max-width: 420px;
}

.hero-form {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255,255,255,0.3);
}

.hero-form h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
  text-align: center;
}

.hero-form .form-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: #fff;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(224,36,36,0.1);
}

.form-group input::placeholder {
  color: #a0aec0;
}

.form-row {
  display: flex;
  gap: 12px;
}

.form-row .form-group {
  flex: 1;
}

.btn-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(224,36,36,0.3);
  margin-top: 8px;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(224,36,36,0.4);
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.form-trust {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--text-light);
}

.form-trust svg {
  width: 14px;
  height: 14px;
  color: var(--green);
}

/* ===================== PARTNER LOGOS ===================== */
.partners {
  background: #fff;
  padding: 50px 0;
  border-bottom: 1px solid var(--border);
}

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

.partners .section-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.partners .section-header p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-top: 6px;
}

.partners-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 20px;
  background: #fff;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  transition: all 0.3s;
  min-width: 160px;
  height: 100px;
  overflow: hidden;
}

.partner-logo:hover {
  border-color: var(--blue-light);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* ===================== INFO SECTION ===================== */
.info-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #fff 0%, var(--bg) 100%);
}

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

.info-section .section-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
}

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

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

.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 50px;
}

.info-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

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

.info-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.info-card-icon svg {
  width: 28px;
  height: 28px;
  color: #fff;
}

.info-card-icon.red { background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%); }
.info-card-icon.blue { background: linear-gradient(135deg, var(--blue-light) 0%, var(--blue) 100%); }
.info-card-icon.green { background: linear-gradient(135deg, var(--green-light) 0%, var(--green) 100%); }
.info-card-icon.orange { background: linear-gradient(135deg, var(--orange) 0%, #d97706 100%); }
.info-card-icon.purple { background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%); }
.info-card-icon.cyan { background: linear-gradient(135deg, #0891b2 0%, #0e7490 100%); }

.info-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.info-card p {
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 1.7;
}

.info-detail {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid var(--border);
}

.info-detail h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.info-detail p {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 15px;
}

.info-detail ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.info-detail ul li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
  font-size: 0.95rem;
  color: var(--text-medium);
  border-bottom: 1px solid var(--border);
}

.info-detail ul li:last-child {
  border-bottom: none;
}

.info-detail ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 18px;
  height: 18px;
  background: var(--green);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

/* ===================== TESTIMONIALS ===================== */
.testimonials {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #fff;
}

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

.testimonials .section-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.testimonials .section-header p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 30px;
  border: 1px solid rgba(255,255,255,0.12);
  transition: all 0.3s;
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-3px);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  color: var(--orange);
  fill: var(--orange);
}

.testimonial-card .text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card .text::before {
  content: '\201C';
  font-size: 2rem;
  color: var(--red-light);
  line-height: 0;
  vertical-align: -8px;
  margin-right: 4px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.2);
}

.testimonial-author-info h5 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
}

.testimonial-author-info span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

/* ===================== MAP SECTION ===================== */
.map-section {
  padding: 60px 0;
  background: #fff;
}

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

.map-section .section-header h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
}

.map-section .section-header p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-top: 6px;
}

.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--border);
  box-shadow: var(--shadow);
}

.map-wrapper iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

/* ===================== FOOTER ===================== */
.footer {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f0f23 100%);
  color: #fff;
  padding: 60px 0 0;
}

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

.footer-col h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
}

.footer-col p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 10px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-contact-item:hover {
  color: #fff;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--red-light);
  flex-shrink: 0;
}

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

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

.footer-links li a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: color 0.3s, padding-left 0.3s;
  display: block;
}

.footer-links li a:hover {
  color: #fff;
  padding-left: 5px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  color: #fff;
  transition: all 0.3s;
  border: 1px solid rgba(255,255,255,0.1);
}

.footer-social a:hover {
  transform: translateY(-3px);
}

.footer-social a.facebook:hover { background: #1877f2; }
.footer-social a.instagram:hover { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.footer-social a.twitter:hover { background: #000; }

.footer-social a svg {
  width: 20px;
  height: 20px;
}

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

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* ===================== FLOATING WHATSAPP ===================== */
.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 180px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--whatsapp) 0%, var(--whatsapp-dark) 100%);
  color: #fff;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.3s;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}

.floating-whatsapp-btn svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.floating-phone-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--blue) 100%);
  color: #fff;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(59,130,246,0.4);
  transition: all 0.3s;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

.floating-phone-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 30px rgba(59,130,246,0.5);
}

.floating-phone-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ===================== SLIDE-OUT FORM (TEKLIF AL) ===================== */
.slide-form-trigger {
  position: fixed;
  right: 0;
  bottom: 40px;
  z-index: 998;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff;
  padding: 16px 14px;
  border-radius: 12px 0 0 12px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: 2px;
  box-shadow: -4px 0 20px rgba(224,36,36,0.3);
  transition: all 0.3s;
}

.slide-form-trigger:hover {
  padding-right: 20px;
}

.slide-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.slide-overlay.active {
  opacity: 1;
  visibility: visible;
}

.slide-form-panel {
  position: fixed;
  right: -480px;
  top: 0;
  bottom: 0;
  width: 440px;
  max-width: 90vw;
  background: #fff;
  z-index: 1101;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  box-shadow: -10px 0 40px rgba(0,0,0,0.2);
}

.slide-form-panel.active {
  right: 0;
}

.slide-form-header {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  padding: 30px;
  color: #fff;
  position: relative;
}

.slide-form-header h3 {
  font-size: 1.4rem;
  font-weight: 700;
}

.slide-form-header p {
  font-size: 0.9rem;
  opacity: 0.85;
  margin-top: 6px;
}

.slide-form-close {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.slide-form-close:hover {
  background: rgba(255,255,255,0.3);
}

.slide-form-body {
  padding: 30px;
}

/* ===================== SUCCESS MESSAGE ===================== */
.form-success {
  display: none;
  text-align: center;
  padding: 20px;
}

.form-success.show {
  display: block;
}

.form-success svg {
  width: 60px;
  height: 60px;
  color: var(--green);
  margin-bottom: 15px;
}

.form-success h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-success p {
  color: var(--text-medium);
  font-size: 0.9rem;
}

.form-error {
  display: none;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.form-error.show {
  display: block;
}

/* ===================== ABOUT PAGE ===================== */
.about-hero {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, var(--text-dark) 0%, #16213e 100%);
    color: #fff;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.about-hero p {
    font-size: 1.2rem;
    opacity: 0.8;
}

.about-content {
    padding: 80px 0;
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.about-text h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background: var(--red);
    border-radius: 2px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-medium);
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-highlight {
    background: var(--bg);
    padding: 30px;
    border-left: 5px solid var(--red);
    border-radius: 0 12px 12px 0;
    margin-top: 40px;
}

.about-highlight h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--red);
    margin-bottom: 10px;
}

.about-highlight p {
    margin-bottom: 0;
    font-weight: 600;
    color: var(--text-dark);
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.value-card {
    background: #fff;
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all 0.3s;
    box-shadow: var(--shadow);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--red-light);
}

.value-icon {
    width: 50px;
    height: 50px;
    background: rgba(224, 36, 36, 0.1);
    color: var(--red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.value-icon svg {
    width: 24px;
    height: 24px;
}

.value-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.value-card p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-hero h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 900px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
    padding: 40px 20px;
  }

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

  .hero-content p {
    margin: 0 auto 25px;
  }

  .hero-phone-box {
    justify-content: center;
  }

  .hero-form-wrapper {
    flex: none;
    max-width: 100%;
    width: 100%;
  }

  .floating-whatsapp {
    right: 12px;
  }

  .floating-whatsapp-btn span,
  .floating-phone-btn span {
    display: none;
  }

  .floating-whatsapp-btn,
  .floating-phone-btn {
    padding: 14px;
    border-radius: 50%;
  }

  .slide-form-trigger {
    display: none;
  }
}

@media (max-width: 600px) {
  .navbar .container {
    flex-direction: column;
    gap: 8px;
  }

  .navbar-contact {
    gap: 12px;
  }

  .navbar-phone {
    font-size: 0.95rem;
  }

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

  .hero-content p {
    font-size: 0.95rem;
  }

  .phone-cta {
    padding: 12px 20px;
    font-size: 1.05rem;
  }

  .whatsapp-cta {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .hero-form {
    padding: 24px;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .partners-grid {
    gap: 16px;
  }

  .partner-logo {
    min-width: 130px;
    padding: 10px 15px;
    height: 80px;
  }

  .info-section,
  .testimonials {
    padding: 50px 0;
  }

  .info-section .section-header h2,
  .testimonials .section-header h2 {
    font-size: 1.5rem;
  }

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

/* ===================== LOADING SPINNER ===================== */
.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  vertical-align: middle;
  margin-right: 8px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}
