/* ========== Base Styles ========== */
:root {
  --bg: #050915;
  --bg-alt: #07101f;
  --bg-soft: #0c1829;
  --accent: #00c2b8;
  --accent-soft: rgba(0, 194, 184, 0.12);
  --text: #f5f7fb;
  --text-muted: #99a1b5;
  --border-subtle: #1c2639;
  --danger: #ff6b6b;
  --radius-lg: 18px;
  --radius-xl: 26px;
  --transition: 0.22s ease;
  --shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.55);
  --shadow-card: 0 20px 40px rgba(0, 0, 0, 0.45);
}

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

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: radial-gradient(circle at top, #0b1a33 0, #020612 55%, #010308 100%);
  color: var(--text);
  line-height: 1.6;
}

/* ========== Layout Helpers ========== */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: radial-gradient(circle at top right, #082032 0, #020813 60%);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: flex-start;
}

/* ========== Header / Nav ========== */
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(2, 7, 18, 0.9), rgba(2, 7, 18, 0.6));
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, #00e0d0, #007a73 55%, #021018 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}

.brand-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 600;
  font-size: 1rem;
}

.brand-tagline {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.nav {
  display: flex;
  align-items: center;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 1.4rem;
  margin: 0;
  padding: 0;
}

.nav-list a {
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--text-muted);
  position: relative;
  padding-bottom: 0.15rem;
  transition: color var(--transition);
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #00c2b8, #00f0d6);
  transition: width var(--transition);
}

.nav-list a:hover,
.nav-list a:focus {
  color: #f9fbff;
}

.nav-list a:hover::after,
.nav-list a:focus::after {
  width: 100%;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-line {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #e1ecff;
}

/* ========== Hero ========== */
.hero {
  position: relative;
  padding: 4.5rem 0 4rem;
  background:
    radial-gradient(circle at top, rgba(0, 0, 0, 0.7) 0, rgba(0, 0, 0, 0.95) 55%),
    url("images/hero.jpg") center/cover no-repeat fixed;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(0, 194, 184, 0.3), transparent 55%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  gap: 3rem;
  align-items: center;
}

.hero-kicker {
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 3.1vw, 3rem);
  line-height: 1.1;
  margin: 0 0 0.8rem;
}

.hero-subtitle {
  color: var(--text-muted);
  font-size: 0.98rem;
  max-width: 32rem;
  margin-bottom: 1.8rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.8rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  font-size: 0.9rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  font-weight: 500;
  transition: background var(--transition), color var(--transition),
    border-color var(--transition), transform 0.18s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #00c2b8, #00f0d6);
  color: #02121d;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.6);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.75);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.16);
  color: #e6f2ff;
}

.btn-outline:hover {
  border-color: #00c2b8;
  background: rgba(0, 194, 184, 0.1);
}

.btn-block {
  width: 100%;
}

/* Hero highlight */
.hero-highlight {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.hero-highlight-item {
  min-width: 90px;
}

.highlight-number {
  display: block;
  font-size: 1.15rem;
  font-weight: 600;
}

.highlight-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Hero card */
.hero-card {
  background: radial-gradient(circle at top left, #13273e 0, #050a13 60%);
  border-radius: var(--radius-xl);
  padding: 1.8rem 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-card);
}

.card-header h2 {
  margin: 0;
  font-size: 1.4rem;
}

.card-header p {
  margin: 0.25rem 0 1.4rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.card-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.9rem;
}

.contact-line {
  padding: 0.75rem 0.8rem;
  border-radius: 12px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.02), rgba(0, 194, 184, 0.06));
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.contact-line .label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.1rem;
}

.contact-line .value {
  font-size: 0.95rem;
}

.contact-line a.value {
  color: #eaf7ff;
  text-decoration: none;
}

.contact-line a.value:hover {
  text-decoration: underline;
}

.card-footer {
  margin-top: 1.4rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  padding-top: 0.8rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
}

/* ========== Section Typography ========== */
.section-header,
.section-intro {
  margin-bottom: 1.6rem;
}

.section-kicker {
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.section h2 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.7rem, 2.2vw, 2rem);
}

.section p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ========== About Cards ========== */
.about-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.about-card {
  padding: 1.2rem 1.1rem;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.75));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.6);
}

.about-card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.about-card p {
  margin: 0;
  font-size: 0.88rem;
}

/* ========== Services ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
  margin-top: 2.2rem;
}

.service-card {
  background: rgba(3, 10, 20, 0.95);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.3rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at top left, rgba(0, 194, 184, 0.18), transparent 55%);
  opacity: 0;
  transition: opacity var(--transition);
}

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

.service-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
}

.service-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.service-card p {
  margin: 0 0 0.7rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.service-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.service-list li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.35rem;
}

.service-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* ========== Stats / Steps ========== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.stat-card {
  padding: 1.2rem 1rem;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.7));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-card);
  font-size: 0.9rem;
}

.stat-number {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 0.4rem;
}

/* ========== Gallery ========== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-item {
  padding: 0;
  border: none;
  background: transparent;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
  transform: translateY(0);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(1.15);
  transition: transform 0.25s ease, filter 0.25s ease;
}

.gallery-item::after {
  content: "View";
  position: absolute;
  inset: auto 10px 10px 10px;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.6);
  font-size: 0.75rem;
  color: #f4ffff;
  text-align: center;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.85);
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: saturate(1.2) contrast(1.05);
}

.gallery-item:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.gallery-note {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 40;
}

.lightbox.open {
  display: flex;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(12px);
  background: rgba(0, 0, 0, 0.75);
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.9);
}

.lightbox-image {
  display: block;
  max-width: 100%;
  max-height: 100vh;
  object-fit: contain;
  background: #020610;
}

.lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  border-radius: 999px;
  width: 32px;
  height: 32px;
  font-size: 1.2rem;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.65);
  color: #f9feff;
}

/* ========== Contact ========== */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 2.4rem;
  align-items: flex-start;
}

.contact-details {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  font-size: 0.95rem;
}

.contact-details li + li {
  margin-top: 0.4rem;
}

.contact-details a {
  color: #eaf7ff;
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

/* Contact form */
.contact-form {
  background: rgba(3, 10, 20, 0.95);
  border-radius: var(--radius-xl);
  padding: 1.8rem 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-card);
  font-size: 0.9rem;
}

.contact-form h3 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.75rem;
}

.form-field label {
  font-size: 0.78rem;
  margin-bottom: 0.28rem;
  color: var(--text-muted);
}

.form-field input,
.form-field select,
.form-field textarea {
  background: #050b15;
  border-radius: 10px;
  border: 1px solid var(--border-subtle);
  padding: 0.55rem 0.7rem;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(0, 194, 184, 0.4);
  background: #050914;
}

.form-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.form-status {
  font-size: 0.8rem;
  margin-top: 0.7rem;
}

.form-status.error {
  color: var(--danger);
}

.form-status.success {
  color: #7cf3c4;
}

/* ========== Footer ========== */
.footer {
  padding: 1.4rem 0 1.7rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #020611;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.back-to-top {
  text-decoration: none;
  color: #dfe9ff;
  font-size: 0.8rem;
}

.back-to-top:hover {
  text-decoration: underline;
}

/* ========== Scroll Animations ========== */
[data-animate] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== Responsive ========== */
@media (max-width: 960px) {
  .hero {
    background-attachment: scroll;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-card {
    max-width: 400px;
    margin-inline: auto;
  }

  .section-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-cards,
  .services-grid,
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-content {
    flex-direction: column;
    gap: 0.4rem;
    text-align: center;
  }
}

@media (max-width: 720px) {
  .nav-list {
    position: absolute;
    inset-inline: 0;
    top: 60px;
    background: #020712;
    flex-direction: column;
    padding: 0.75rem 1.5rem 1rem;
    gap: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition), opacity var(--transition);
  }

  .nav-list.nav-open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding-top: 3.7rem;
  }

  .about-cards,
  .services-grid,
  .stats-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-form {
    padding: 1.4rem 1.2rem;
  }

  .form-row {
    grid-template-columns: minmax(0, 1fr);
  }
}
/* --- DARK FOOTER  --- */
.footer-dark {
  background: #01050d;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.designer-credit {
  text-align: center;
  padding: 2rem 1rem 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 1rem;
}

.credit-main {
  font-size: 0.95rem;
  color: #e8ecf8;
  margin-bottom: 0.6rem;
}

.credit-main strong {
  color: #ffffff;
  font-weight: 600;
}

.credit-desc {
  font-size: 0.82rem;
  color: #9aa4b8;
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.55;
}
#offer {
  background: radial-gradient(circle at top, #0b1a2f, #020617);
  text-align: center;
}

.premium-card {
  position: relative;
  padding: 25px;
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  transition: all 0.3s ease;
}

.premium-card:hover {
  transform: translateY(-8px) scale(1.03);
}

.price-blue {
  font-size: 32px;
  font-weight: 700;
  color: #00c6ff;
  text-shadow: 0 0 12px rgba(0,198,255,0.7);
}

.price-green {
  font-size: 32px;
  font-weight: 700;
  color: #00ff88;
  text-shadow: 0 0 12px rgba(0,255,136,0.7);
}

.tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ff4d4d;
  color: white;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
}

.features-row {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  opacity: 0.9;
}

.cta-box {
  margin-top: 30px;
}

.urgency {
  color: #ff4d4d;
  font-weight: 600;
  margin-bottom: 10px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 15px 0;
}

.btn-call {
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  padding: 12px 22px;
  border-radius: 30px;
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.btn-whatsapp {
  background: #25D366;
  padding: 12px 22px;
  border-radius: 30px;
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.btn-call:hover, .btn-whatsapp:hover {
  transform: translateY(-2px);
}

.trust {
  font-size: 13px;
  opacity: 0.7;
}

/* check new  */



