:root {
  --primary: #1E3A8A;
  --secondary: #2563EB;
  --accent: #3B82F6;
  --dark: #1E3A8A;
  --darker: #1E3A8A;
  --light: #ffffff;
  --gray: #64748B;
  --text-dark: #1E293B;
}

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

html {
  scroll-behavior: smooth;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* ===============================
   HEADER
================================ */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 20px 60px;
  background: var(--primary);
  backdrop-filter: blur(20px);
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 20px rgba(30, 58, 138, 0.1);
}

.logo {
  display: flex;
  align-items: center;
  height: 50px;
}

.logo img {
  height: 100%;
  width: auto;
  max-height: 50px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

nav {
  display: flex;
  align-items: center;
  gap: 35px;
}

nav a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

nav a:hover {
  color: var(--light);
}

nav a.btn {
  padding: 12px 28px;
  background: var(--light);
  color: var(--primary);
  border-radius: 50px;
  font-weight: 600;
}

nav a.btn:hover {
  transform: translateY(-3px);
  background: var(--secondary);
  color: var(--light);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* ===============================
   HERO CAROUSEL
================================ */
.hero-carousel-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  margin-top: 0;
}

.hero-carousel {
  width: 100%;
  height: 100%;
}

.hero-carousel .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-carousel .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(30, 58, 138, 0.7) 0%,
    rgba(30, 58, 138, 0.5) 50%,
    rgba(30, 58, 138, 0.85) 100%
  );
  z-index: 1;
}

.carousel-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 40px;
}

.carousel-content h2 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--light);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  letter-spacing: -1px;
}

.carousel-content p {
  font-size: clamp(16px, 2vw, 22px);
  color: var(--light);
  opacity: 0.95;
  max-width: 700px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
  color: var(--light) !important;
  background: rgba(30, 58, 138, 0.5);
  width: 50px !important;
  height: 50px !important;
  border-radius: 50%;
  backdrop-filter: blur(10px);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--primary);
}

.swiper-pagination-bullet {
  background: var(--light) !important;
  opacity: 0.5 !important;
  width: 12px !important;
  height: 12px !important;
}

.swiper-pagination-bullet-active {
  background: var(--secondary) !important;
  opacity: 1 !important;
  width: 30px !important;
  border-radius: 6px !important;
}

/* ===============================
   HERO TEXT SECTION
================================ */
.hero-text-section {
  padding: 120px 60px;
  text-align: center;
  background: var(--light);
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;
  letter-spacing: -1px;
  color: var(--text-dark);
}

.gradient-text {
  color: var(--primary);
  font-weight: 800;
}

.hero-content p {
  font-size: clamp(16px, 1.5vw, 20px);
  color: var(--text-dark);
  opacity: 0.8;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-actions .btn {
  min-width: 200px;
  font-size: 16px;
  padding: 18px 40px;
}

.hero-actions .btn-primary {
  background: var(--primary);
  color: var(--light);
  box-shadow: 0 6px 25px rgba(30, 58, 138, 0.4);
}

.hero-actions .btn-primary:hover {
  background: var(--secondary);
  box-shadow: 0 10px 35px rgba(30, 58, 138, 0.6);
}

.hero-actions .btn-outline {
  background: var(--light);
  color: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: 0 4px 15px rgba(30, 58, 138, 0.2);
}

.hero-actions .btn-outline:hover {
  background: var(--primary);
  color: var(--light);
}

.badge {
  display: inline-block;
  padding: 10px 24px;
  background: rgba(30, 58, 138, 0.1);
  border: 1px solid rgba(30, 58, 138, 0.3);
  border-radius: 50px;
  margin-bottom: 30px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ===============================
   BUTTONS
================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--primary);
  color: var(--light);
  box-shadow: 0 4px 20px rgba(30, 58, 138, 0.3);
}

.btn-primary:hover {
  transform: translateY(-5px);
  background: var(--secondary);
  box-shadow: 0 15px 40px rgba(30, 58, 138, 0.5);
}

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

.btn-outline:hover {
  background: var(--primary);
  color: var(--light);
  border-color: var(--primary);
  transform: translateY(-5px);
}

.btn-light {
  background: var(--light);
  color: var(--primary);
  border: 2px solid var(--light);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

.btn-light:hover {
  background: transparent;
  color: var(--light);
  border-color: var(--light);
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.4);
}

/* ===============================
   SECTIONS
================================ */
.section {
  padding: 120px 60px;
  position: relative;
}

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

.section-header h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -1px;
  color: var(--text-dark);
}

.section-header p {
  font-size: 18px;
  color: var(--text-dark);
  opacity: 0.7;
  max-width: 600px;
  margin: 0 auto;
}

/* ===============================
   CARDS
================================ */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.card {
  background: var(--light);
  border: 1px solid rgba(30, 58, 138, 0.1);
  border-radius: 24px;
  padding: 40px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(30, 58, 138, 0.08);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(30, 58, 138, 0.15);
  border-color: var(--secondary);
}

.card:hover::before {
  opacity: 1;
}

/* ===============================
   SERVICES
================================ */
.service-card {
  position: relative;
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 25px;
  transition: transform 0.3s ease;
}

.service-card:hover img {
  transform: scale(1.05);
}

.service-card .icon {
  width: 56px;
  height: 56px;
  background: var(--primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-card .icon svg {
  width: 28px;
  height: 28px;
  stroke: white;
}

.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.service-card p {
  color: var(--text-dark);
  opacity: 0.7;
  font-size: 15px;
  line-height: 1.7;
}

/* ===============================
   STATS
================================ */
.stats {
  background: #F8FAFC;
  position: relative;
  overflow: hidden;
}

.stats .card {
  text-align: center;
  padding: 50px 40px;
  background: var(--light);
}

.stats .counter {
  font-size: 64px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
  display: block;
}

.stats .card p {
  color: var(--text-dark);
  opacity: 0.7;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===============================
   TRUST / LOGOS
================================ */
.trust {
  background: var(--light);
  text-align: center;
}

.trust > p {
  color: var(--text-dark);
  opacity: 0.6;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 40px;
}

.marquee {
  overflow: hidden;
  position: relative;
}

.logos {
  display: flex;
  gap: 60px;
  align-items: center;
  animation: scroll 30s linear infinite;
  width: max-content;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.logos img {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.8);
  transition: all 0.3s ease;
}

.logos img:hover {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.1);
}

/* ===============================
   PROCESS COMPACT
================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.process-item {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.process-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.process-number {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
}

.process-item h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--light);
}

.process-item p {
  font-size: 14px;
  color: var(--light);
  opacity: 0.9;
  line-height: 1.6;
}

/* ===============================
   BANNER SECTION
================================ */
.banner-section {
  padding: 0;
  background: #F8FAFC;
  overflow: hidden;
}

.banner-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 600px;
}

.banner-text {
  padding: 80px 60px 80px 80px;
}

.banner-text .badge {
  margin-bottom: 20px;
}

.banner-text h2 {
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.2;
  letter-spacing: -1px;
  color: var(--text-dark);
}

.banner-text p {
  font-size: 17px;
  color: var(--text-dark);
  opacity: 0.8;
  line-height: 1.8;
  margin-bottom: 30px;
}

.banner-list {
  list-style: none;
  margin-bottom: 40px;
}

.banner-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 16px;
  color: var(--text-dark);
}

.banner-list li svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
  flex-shrink: 0;
}

.banner-image {
  height: 100%;
  position: relative;
  overflow: hidden;
}

.banner-image img {
  width: 100%;
  height: 100%;
  min-height: 600px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.banner-image:hover img {
  transform: scale(1.05);
}

/* ===============================
   TESTIMONIALS
================================ */
.testimonial-card {
  text-align: center;
}

.testimonial-card > img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid var(--primary);
  padding: 3px;
}

.testimonial-card p {
  font-size: 17px;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.8;
}

.testimonial-card span {
  font-size: 14px;
  color: var(--primary);
  font-weight: 600;
}

/* ===============================
   CTA SECTION
================================ */
.cta {
  background: linear-gradient(135deg, #1E3A8A 0%, #2563EB 50%, #3B82F6 100%);
  text-align: center;
  color: var(--light);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.9) 0%, rgba(37, 99, 235, 0.8) 50%, rgba(59, 130, 246, 0.9) 100%);
  z-index: 0;
}

.cta h2,
.cta p,
.cta .btn {
  position: relative;
  z-index: 1;
}

.cta h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  margin-bottom: 30px;
  color: var(--light);
}

/* ===============================
   FOOTER
================================ */
footer {
  background: var(--primary);
  padding: 60px;
  text-align: center;
  color: var(--light);
}

footer p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

footer h3,
footer h4 {
  color: var(--light);
}

footer a {
  color: rgba(255, 255, 255, 0.8);
}

footer a:hover {
  color: var(--light);
}

/* ===============================
   PRELOADER
================================ */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease;
}

.loader-text {
  font-size: 48px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 8px;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1.05); }
}

/* ===============================
   CONTACT PAGE STYLES
================================ */
.contact-hero {
  min-height: 40vh;
  max-height: 40vh;
  background: var(--primary);
}

.contact-hero .hero-content h1,
.contact-hero .hero-content p {
  color: var(--light);
}

.contact-hero .hero-content {
  padding: 40px 40px 60px;
}

.contact-hero h1 {
  font-size: clamp(32px, 4vw, 56px);
}

.contact-hero p {
  font-size: clamp(15px, 1.3vw, 18px);
}

.contact-section {
  background: var(--light);
}

.contact-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Form Styles */
.contact-form-wrapper {
  background: var(--light);
  border: 1px solid rgba(30, 58, 138, 0.1);
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0 4px 20px rgba(30, 58, 138, 0.08);
}

.form-header {
  margin-bottom: 40px;
}

.form-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: -1px;
  color: var(--text-dark);
}

.form-header p {
  color: var(--text-dark);
  opacity: 0.7;
  font-size: 16px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  background: #F8FAFC;
  border: 1px solid rgba(30, 58, 138, 0.15);
  border-radius: 12px;
  color: var(--text-dark);
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  background: var(--light);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(30, 58, 138, 0.4);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23a0a0b0' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 45px;
}

.form-group select option {
  background: var(--light);
  color: var(--text-dark);
}

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

.checkbox-group {
  margin-top: 10px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-dark);
  opacity: 0.8;
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--primary);
}

.btn-submit {
  width: 100%;
  justify-content: center;
  font-size: 16px;
  padding: 18px;
  margin-top: 10px;
  position: relative;
  background: var(--primary);
  color: var(--light);
  border: none;
  cursor: pointer;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

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

.btn-loader {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.form-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-dark);
  opacity: 0.7;
  text-align: center;
  margin-top: 10px;
}

.form-notice svg {
  width: 16px;
  height: 16px;
  stroke: var(--primary);
  flex-shrink: 0;
}

.form-message {
  margin-top: 20px;
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
}

.form-message.success {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #10b981;
}

.form-message.error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

/* Sidebar Styles */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: var(--light);
  border: 1px solid rgba(30, 58, 138, 0.1);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  gap: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(30, 58, 138, 0.08);
}

.info-card:hover {
  transform: translateY(-5px);
  border-color: var(--secondary);
  box-shadow: 0 10px 30px rgba(30, 58, 138, 0.15);
}

.info-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: var(--primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.info-icon svg {
  width: 28px;
  height: 28px;
  stroke: white;
}

.info-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.info-content p {
  color: var(--text-dark);
  opacity: 0.7;
  font-size: 14px;
  line-height: 1.6;
}

.info-content a {
  color: var(--primary);
  transition: color 0.3s ease;
  font-weight: 600;
}

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

.social-card {
  background: var(--light);
  border: 1px solid rgba(30, 58, 138, 0.1);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(30, 58, 138, 0.08);
}

.social-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-link svg {
  width: 22px;
  height: 22px;
  stroke: white;
}

.social-link:hover {
  transform: translateY(-3px);
  background: var(--secondary);
  box-shadow: 0 10px 25px rgba(30, 58, 138, 0.4);
}

.guarantee-card {
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.08), rgba(37, 99, 235, 0.08));
  border: 1px solid rgba(30, 58, 138, 0.2);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
}

.guarantee-card svg {
  width: 48px;
  height: 48px;
  stroke: var(--primary);
  margin-bottom: 15px;
}

.guarantee-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.guarantee-card p {
  color: var(--text-dark);
  opacity: 0.7;
  font-size: 14px;
}

/* Map Section */
.map-section {
  padding: 0;
  position: relative;
}

.map-section iframe {
  width: 100%;
  height: 500px;
  border: 0;
  filter: grayscale(100%) invert(92%) contrast(85%);
}

/* FAQ Section */
.faq-section {
  background: #F8FAFC;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--light);
  border: 1px solid rgba(30, 58, 138, 0.1);
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(30, 58, 138, 0.05);
}

.faq-item:hover {
  border-color: var(--secondary);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(30, 58, 138, 0.12);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  cursor: pointer;
  user-select: none;
}

.faq-question h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  flex: 1;
  color: var(--text-dark);
}

.faq-question svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 20px;
}

.faq-answer {
  padding: 0 30px 25px;
  overflow: hidden;
}

.faq-answer p {
  color: var(--text-dark);
  opacity: 0.8;
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

/* ===============================
   LEGAL PAGE STYLES
================================ */
.legal-hero {
  min-height: 50vh;
  background: var(--primary);
}

.legal-section {
  background: var(--light);
  padding: 80px 40px;
}

.legal-container {
  max-width: 900px;
  margin: 0 auto;
}

.legal-block {
  background: var(--light);
  border: 1px solid rgba(30, 58, 138, 0.15);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(30, 58, 138, 0.08);
}

.legal-block:hover {
  border-color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(30, 58, 138, 0.15);
}

.legal-block h2 {
  color: var(--text-dark);
  font-size: 24px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.legal-icon {
  width: 28px;
  height: 28px;
  stroke: var(--primary);
  flex-shrink: 0;
}

.legal-content {
  color: var(--text-dark);
  opacity: 0.85;
  line-height: 1.8;
}

.legal-item {
  margin-bottom: 20px;
}

.legal-item:last-child {
  margin-bottom: 0;
}

.legal-item strong {
  color: var(--text-dark);
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.legal-item p {
  margin: 0;
  color: var(--text-dark);
  opacity: 0.8;
}

.legal-link {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
  font-weight: 600;
}

.legal-link:hover {
  color: var(--secondary);
  border-bottom-color: var(--secondary);
}

.legal-footer {
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.05), rgba(37, 99, 235, 0.05));
  border: 1px solid rgba(30, 58, 138, 0.2);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  margin-top: 40px;
}

.legal-footer p {
  margin: 10px 0;
  color: var(--text-dark);
  opacity: 0.85;
}

.legal-footer strong {
  color: var(--text-dark);
}

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

.footer-section h3,
.footer-section h4 {
  color: var(--light);
  margin-bottom: 15px;
}

.footer-section p {
  margin: 8px 0;
  opacity: 0.8;
}

.footer-section a {
  color: var(--secondary);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: #3B82F6;
}

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

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  header {
    padding: 15px 25px;
  }
  
  nav {
    display: none;
  }
  
  .section {
    padding: 80px 25px;
  }
  
  .hero-text-section {
    padding: 80px 25px;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .stats .counter {
    font-size: 48px;
  }
  
  .grid {
    grid-template-columns: 1fr;
  }
  
  .carousel-content h2 {
    font-size: 32px;
  }
  
  .carousel-content p {
    font-size: 16px;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
  
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .banner-content {
    grid-template-columns: 1fr;
  }
  
  .banner-text {
    padding: 60px 25px;
  }
  
  .banner-image {
    order: -1;
    height: 300px;
  }
  
  .banner-image img {
    min-height: 300px;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-form-wrapper {
    padding: 30px 25px;
  }
  
  .form-header h2 {
    font-size: 28px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .contact-sidebar {
    order: -1;
  }
  
  .info-card {
    flex-direction: column;
    text-align: center;
  }
  
  .info-icon {
    margin: 0 auto;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .map-section iframe {
    height: 350px;
  }
  
  .faq-question {
    padding: 20px;
  }
  
  .faq-question h3 {
    font-size: 16px;
  }
  
  .faq-answer {
    padding: 0 20px 20px;
  }
}
