*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --purple-900: #1a0f38;
  --purple-800: #2d1a5e;
  --purple-700: #3d2480;
  --purple-600: #5a3a9e;
  --purple-500: #7b52ba;
  --purple-400: #9d76d4;
  --purple-300: #c0a3e8;
  --purple-200: #dccef5;
  --purple-100: #f0eafc;
  --purple-50: #f8f5fe;
  --accent: #8b1a8c;
  --accent-light: #b83ab4;
  --white: #ffffff;
  --gray-50: #f9f8fc;
  --gray-100: #f0eef8;
  --gray-200: #e2ddf0;
  --gray-600: #6b6480;
  --gray-800: #2e2845;
  --text-dark: #1a1530;
  --text-muted: #6b6480;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===== HEADER ===== */
#header {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(90, 58, 158, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo img {
  height: 44px;
  width: auto;
}
.logo-text {
  font-size: 22px;
  font-weight: 800;
  color: var(--purple-700);
  letter-spacing: -0.5px;
}
.logo-text span {
  color: var(--accent);
}
#navmenu ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
}
#navmenu ul li a {
  text-decoration: none;
  color: white;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition:
    background 0.2s,
    color 0.2s;
}
#navmenu ul li a:hover,
#navmenu ul li a.active {
  color: white;
}
.mobile-nav-toggle {
  display: none;
  font-size: 22px;
  cursor: pointer;
  color: white;
}

/* ===== HERO ===== */
#hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: linear-gradient(
    135deg,
    #661950 0%,
    #6b0f6d 50%,
    var(--purple-800) 100%
  );
  overflow: hidden;
}
#hero::before {
  content: "";
  position: absolute;
  inset: 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='%23ffffff' fill-opacity='0.03'%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");
}
#hero::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(139, 26, 140, 0.2);
  top: -150px;
  right: -150px;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-text {
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 13px;
  color: var(--purple-200);
  font-weight: 500;
  margin-bottom: 24px;
}
.hero-badge i {
  font-size: 11px;
  color: #e8a0e9;
}
.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero-title span {
  color: #e8a0e9;
}
.hero-desc {
  font-size: 16px;
  color: var(--purple-200);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-primary-hero {
  background: var(--white);
  color: var(--purple-700);
  border: none;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.btn-primary-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.btn-outline-hero {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.btn-outline-hero:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-stat-num {
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hero-stat-label {
  font-size: 12px;
  color: var(--purple-300);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-phone-mock {
  width: 280px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 32px;
  padding: 24px 20px;
  backdrop-filter: blur(10px);
}
.phone-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.phone-logo {
  font-size: 16px;
  font-weight: 700;
  color: white;
}
.phone-logo span {
  color: #e8a0e9;
}
.phone-status {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
}
.phone-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 12px;
}
.phone-card-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.phone-card-value {
  font-size: 18px;
  font-weight: 700;
  color: white;
}
.phone-card-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}
.phone-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.phone-action {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.7);
}
.phone-action i {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
  color: #e8a0e9;
}

/* ===== SECTION TITLES ===== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-eyebrow {
  display: inline-block;
  background: var(--purple-100);
  color: var(--purple-600);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ===== SERVICES ===== */
#services {
  padding: 96px 0;
  background: var(--gray-50);
}
.services-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid var(--gray-200);
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, var(--purple-600), var(--accent));
  transition: height 0.3s;
  border-radius: 0 0 4px 0;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(90, 58, 158, 0.1);
  border-color: var(--purple-200);
}
.service-card:hover::before {
  height: 100%;
}
.service-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--purple-400);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--purple-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--purple-600);
  font-size: 20px;
  transition:
    background 0.25s,
    color 0.25s;
}
.service-card:hover .service-icon {
  background: var(--purple-600);
  color: var(--white);
}
.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== WHY CHOOSE US ===== */
#about {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--purple-900) 0%, #5a1a5c 100%);
}
.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-img-placeholder {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 48px;
}
.about-img-placeholder img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}
.about-eyebrow {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  color: var(--purple-200);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.about-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 16px;
}
.about-desc {
  font-size: 15px;
  color: var(--purple-200);
  line-height: 1.8;
  margin-bottom: 36px;
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e8a0e9;
  font-size: 17px;
}
.feature-text h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.feature-text p {
  font-size: 14px;
  color: var(--purple-300);
  line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
#testimonials {
  padding: 96px 0;
  background: var(--white);
}
.testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--gray-50);
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid var(--gray-200);
  position: relative;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(90, 58, 158, 0.08);
}
.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: "Playfair Display", serif;
  font-size: 72px;
  color: var(--purple-200);
  line-height: 1;
}
.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.stars i {
  font-size: 13px;
  color: #f59e0b;
}
.testimonial-card blockquote {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: normal;
  border: none;
  padding: 0;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-600), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}
.author-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
}
.author-role {
  font-size: 12px;
  color: var(--text-muted);
}

/* ===== FOOTER ===== */
#contact-us {
  background: var(--purple-900);
  color: var(--purple-200);
}
.footer-top {
  padding: 72px 0 48px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}
.footer-brand .footer-logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  display: block;
}
.footer-brand .footer-logo span {
  color: #e8a0e9;
}
.footer-brand p {
  font-size: 14px;
  color: var(--purple-300);
  line-height: 1.7;
  margin-bottom: 24px;
}
.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--purple-300);
}
.footer-contact-list li i {
  color: #e8a0e9;
  font-size: 14px;
  margin-top: 2px;
  min-width: 16px;
}
.footer-contact-list li a {
  color: var(--purple-300);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact-list li a:hover {
  color: var(--white);
}
.footer-links-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.footer-links-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links-col ul li a {
  font-size: 13px;
  color: var(--purple-300);
  text-decoration: none;
  transition:
    color 0.2s,
    padding-left 0.2s;
  display: inline-block;
}
.footer-links-col ul li a:hover {
  color: var(--white);
  padding-left: 4px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px;
  text-align: center;
}
.footer-bottom p {
  font-size: 13px;
  color: var(--purple-400);
}
.footer-bottom a {
  color: #e8a0e9;
  text-decoration: none;
}

/* ===== SCROLL TOP ===== */
#scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--purple-600);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(90, 58, 158, 0.3);
  transition:
    background 0.2s,
    transform 0.2s;
  z-index: 999;
}
#scroll-top:hover {
  background: var(--purple-500);
  transform: translateY(-2px);
}

/* ===== TRUST STRIP ===== */
.trust-strip {
  background: var(--purple-800);
  padding: 20px 0;
}
.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--purple-200);
}
.trust-item i {
  color: #e8a0e9;
  font-size: 16px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-visual {
    display: none;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  #navmenu ul {
    display: none;
  }
  #navmenu ul li a {
    color: black;
  }
  #navmenu ul li a.active {
    color: black;
  }
  .mobile-nav-toggle {
    display: block;
  }
  .hero-stats {
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}
