@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Syne:wght@700;800&display=swap');

:root {
  --primary: #3c096c;
  --primary-dark: #240046;
  --primary-light: #5a189a;
  --accent: #ff007f;
  --accent-light: #ff54b0;
  --accent-pale: #ffe5ec;
  --accent-dark: #c9005f;
  --dark: #10002b;
  --dark-card: #240046;
  --text: #2c1a3b;
  --text-light: #624f75;
  --text-muted: #9f8fae;
  --bg: #fdfbfd;
  --bg-alt: #f6eef9;
  --white: #ffffff;
  --border: #ebdcf2;
  --shadow: 0 8px 30px rgba(60, 9, 108, 0.05);
  --shadow-lg: 0 16px 40px rgba(60, 9, 108, 0.1);
  --radius: 20px;
  --radius-sm: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --gradient: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  --gradient-dark: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  --gradient-soft: linear-gradient(135deg, rgba(255, 0, 127, 0.05) 0%, rgba(60, 9, 108, 0.05) 100%);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

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

/* ─── TOP BAR ─── */
.top-bar {
  background: var(--gradient-dark);
  color: var(--white);
  padding: 10px 0;
  font-size: 0.88rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.top-bar a { color: var(--accent-pale); display: inline-flex; align-items: center; gap: 6px; }
.top-bar a:hover { color: var(--accent-light); }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 20px; }
.top-bar svg { width: 16px; height: 16px; flex-shrink: 0; fill: currentColor; }

/* ─── HEADER ─── */
.header {
  background: rgba(253, 251, 253, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(60, 9, 108, 0.04);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo { display: flex; align-items: center; gap: 14px; }
.logo img { height: 56px; width: auto; object-fit: contain; }
.logo-text { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.4rem; color: var(--primary); line-height: 1.1; letter-spacing: -0.5px; }
.logo-text span { color: var(--accent); }
.logo-text small { display: block; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; font-size: 0.75rem; color: var(--text-light); letter-spacing: 0.5px; margin-top: 2px; }

/* Nav */
.nav { display: flex; align-items: center; gap: 8px; }
.nav a {
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-light);
}
.nav a:hover, .nav a.active { color: var(--accent); background: var(--bg-alt); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--primary);
  margin: 6px 0;
  transition: var(--transition);
  border-radius: 4px;
}

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient-accent);
  color: var(--white) !important;
  padding: 12px 26px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 6px 20px rgba(255, 0, 127, 0.25);
  white-space: nowrap;
}
.cta-phone:hover { transform: translateY(-2px); box-shadow: 0 8px 26px rgba(255, 0, 127, 0.35); color: var(--white) !important; }
.cta-phone svg { width: 18px; height: 18px; fill: currentColor; }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(16, 0, 43, 0.95) 0%, rgba(36, 0, 70, 0.85) 60%, rgba(255, 0, 127, 0.2) 100%);
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; padding-top: 100px; padding-bottom: 100px; }
.hero-content { max-width: 700px; }
.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: 3.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.15;
  letter-spacing: -1.5px;
}
.hero h1 span {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent-pale) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p { color: rgba(255, 255, 255, 0.85); font-size: 1.2rem; max-width: 600px; margin-bottom: 40px; line-height: 1.8; }
.hero-buttons { display: flex; gap: 20px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--gradient-accent);
  color: var(--white);
  box-shadow: 0 6px 22px rgba(255, 0, 127, 0.3);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(255, 0, 127, 0.45); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.1); border-color: var(--white); transform: translateY(-3px); }

/* ─── SECTIONS ─── */
.section { padding: 100px 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--gradient-dark); color: var(--white); }
.section-soft { background: var(--gradient-soft); }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 {
  font-family: 'Syne', sans-serif;
  font-size: 2.6rem;
  color: var(--primary-dark);
  margin-bottom: 16px;
  letter-spacing: -1px;
}
.section-dark .section-header h2 { color: var(--white); }
.section-header .underline {
  width: 80px;
  height: 5px;
  background: var(--gradient-accent);
  margin: 0 auto 20px;
  border-radius: 5px;
}
.section-header p { color: var(--text-light); font-size: 1.15rem; max-width: 650px; margin: 0 auto; font-weight: 500; }
.section-dark .section-header p { color: rgba(255, 255, 255, 0.75); }

/* ─── PRODUCT / SERVICES CARDS ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-light);
}
.service-img-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: var(--primary-dark);
}
.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.service-card:hover .service-img-wrapper img {
  transform: scale(1.08);
}
.service-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gradient-accent);
  color: var(--white);
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(255, 0, 127, 0.2);
}
.service-info {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.service-info h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.35rem;
  color: var(--primary-dark);
  margin-bottom: 12px;
}
.service-info p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 20px;
  flex-grow: 1;
}
.service-features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.service-feature {
  background: var(--bg-alt);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 30px;
}
.service-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px solid var(--accent);
  color: var(--accent);
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
}
.service-card:hover .service-cta {
  background: var(--gradient-accent);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(255, 0, 127, 0.25);
}

/* ─── WHY CHOOSE US ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.feature-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  text-align: center;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-light);
}
.feature-icon-box {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: var(--accent-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.feature-card:hover .feature-icon-box {
  background: var(--gradient-accent);
  transform: rotate(360deg);
}
.feature-icon-box svg { width: 32px; height: 32px; color: var(--accent); transition: var(--transition); fill: currentColor; }
.feature-card:hover .feature-icon-box svg { color: var(--white); }
.feature-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  color: var(--primary-dark);
  margin-bottom: 12px;
}
.feature-card p {
  font-size: 0.92rem;
  color: var(--text-light);
}

/* ─── SERVICE PROCESS / STEPS ─── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  position: relative;
}
.process-card {
  text-align: center;
  position: relative;
  padding: 20px;
  background: transparent;
}
.process-step-num {
  font-family: 'Syne', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(180deg, var(--accent) 0%, rgba(255, 0, 127, 0.1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 10px;
  opacity: 0.85;
}
.process-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  color: var(--primary-dark);
  margin-bottom: 10px;
}
.process-card p {
  font-size: 0.92rem;
  color: var(--text-light);
}

/* ─── ABOUT & SERVICE AREA ─── */
.info-block-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.info-block-content h2 {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  color: var(--primary-dark);
  margin-bottom: 20px;
  line-height: 1.15;
  letter-spacing: -1px;
}
.info-block-content .subtitle {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  margin-bottom: 8px;
  display: block;
}
.info-block-content p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 1.05rem;
}
.info-bullets {
  margin: 24px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.info-bullet-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--primary-dark);
  font-size: 0.95rem;
}
.info-bullet-item svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
}
.info-image-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.info-image-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* ─── ARTICLE SECTION (SEO TEXT) ─── */
.seo-article {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.seo-article-content {
  max-width: 900px;
  margin: 0 auto;
}
.seo-article-content h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  color: var(--primary-dark);
  margin-top: 40px;
  margin-bottom: 16px;
}
.seo-article-content h2:first-child { margin-top: 0; }
.seo-article-content h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.35rem;
  color: var(--primary);
  margin-top: 30px;
  margin-bottom: 12px;
}
.seo-article-content p {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 20px;
  line-height: 1.85;
}
.seo-article-content ul {
  margin: 20px 0;
  padding-left: 20px;
}
.seo-article-content ul li {
  color: var(--text-light);
  font-size: 1.02rem;
  margin-bottom: 10px;
  list-style-type: square;
}

/* ─── CONTACT SECTION & MAPS ─── */
.contact-section-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 40px;
  align-items: stretch;
}
.contact-details-box {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.contact-details-box h2 {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  color: var(--primary-dark);
  margin-bottom: 24px;
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 30px;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-info-icon {
  width: 46px;
  height: 46px;
  background: var(--accent-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 20px; height: 20px; color: var(--accent); fill: currentColor; }
.contact-info-text h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 4px;
}
.contact-info-text p, .contact-info-text a {
  font-size: 0.95rem;
  color: var(--text-light);
}
.contact-info-text a:hover {
  color: var(--accent);
}

.map-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  min-height: 450px;
}
.map-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ─── CTA BANNER ─── */
.cta-banner {
  background: var(--gradient-accent);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
  background: var(--primary-dark);
  opacity: 0.85;
  z-index: 1;
}
.cta-banner .container { position: relative; z-index: 2; }
.cta-banner h2 { font-family: 'Syne', sans-serif; font-size: 2.8rem; color: var(--white); margin-bottom: 16px; letter-spacing: -1px; }
.cta-banner p { color: rgba(255, 255, 255, 0.9); margin-bottom: 32px; font-size: 1.2rem; max-width: 700px; margin-left: auto; margin-right: auto; }
.cta-banner .btn {
  background: var(--white);
  color: var(--accent-dark);
  font-weight: 800;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.cta-banner .btn:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,0.25); background: var(--accent-pale); }

/* ─── FOOTER ─── */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
  border-top: 2px solid rgba(255, 255, 255, 0.05);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 50px;
}
.footer h4 { color: var(--white); font-family: 'Syne', sans-serif; font-size: 1.1rem; margin-bottom: 24px; }
.footer-about .logo { margin-bottom: 20px; }
.footer-about .logo img { height: 50px; width: auto; }
.footer-about p { font-size: 0.92rem; line-height: 1.7; margin-bottom: 20px; }
.footer-links a {
  display: block;
  padding: 6px 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.6);
}
.footer-links a:hover { color: var(--accent-light); padding-left: 6px; }
.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  margin-bottom: 14px;
  line-height: 1.5;
}
.footer-contact svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; fill: currentColor; }
.footer-contact a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 26px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ─── FLOATING CTA ─── */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.fab {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.fab:hover { transform: scale(1.1) translateY(-3px); }
.fab-phone { background: var(--gradient-accent); color: var(--white); }
.fab-whatsapp { background: #25d366; color: var(--white); }
.fab svg { width: 26px; height: 26px; fill: currentColor; }

/* ─── SCHEMA / SEO ─── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ─── ANIMATIONS ─── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .info-block-grid { grid-template-columns: 1fr; gap: 40px; }
  .info-image-wrapper img { height: 400px; }
  .contact-section-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .hero h1 { font-size: 3rem; }
}

@media (max-width: 768px) {
  .top-bar .container { justify-content: center; text-align: center; }
  .top-bar-right { display: none; }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    gap: 10px;
  }
  .nav.open { display: flex; }
  .nav a { width: 100%; padding: 12px 20px; }
  .nav-toggle { display: block; }
  .cta-phone span { display: none; }
  .cta-phone { padding: 12px 16px; border-radius: 50%; }

  .hero { min-height: 500px; }
  .hero h1 { font-size: 2.4rem; }
  .hero p { font-size: 1.05rem; }

  .section { padding: 60px 0; }
  .section-header h2 { font-size: 2rem; }
  
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: 40px; }
  .info-bullets { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .hero-buttons { flex-direction: column; }
  .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-details-box { padding: 24px; }
}
