/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #0A1628;
  background: #FFFFFF;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ── */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.15; font-weight: 700; }
.text-mint { color: #34D399; }

/* ── Nav ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(52, 211, 153, 0.15);
  transition: background 0.3s;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-text { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.25rem; color: #fff; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.75);
  transition: color 0.2s; letter-spacing: 0.02em;
}
.nav-links a:hover { color: #34D399; }
.nav-cta {
  background: #34D399; color: #0A1628 !important;
  padding: 8px 18px; border-radius: 100px; font-weight: 600 !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: #6EE7B7; transform: translateY(-1px); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: 0.3s; }

/* ── Hero ── */
.hero {
  min-height: 100vh; padding: 120px 0 0;
  background: #0A1628;
  position: relative; overflow: hidden;
}
.hero-grid {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; position: relative; z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(52, 211, 153, 0.12); border: 1px solid rgba(52, 211, 153, 0.3);
  color: #34D399; font-size: 0.8rem; font-weight: 600;
  padding: 6px 16px; border-radius: 100px; margin-bottom: 24px;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.hero-headline {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  color: #fff; margin-bottom: 24px;
  line-height: 1.08;
}
.hero-sub {
  font-size: 1.125rem; color: rgba(255,255,255,0.7);
  max-width: 480px; margin-bottom: 36px; line-height: 1.7;
}
.hero-sub em { color: #34D399; font-style: normal; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats { display: flex; gap: 32px; align-items: center; }
.stat-num { display: block; font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: #34D399; line-height: 1; }
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }
.hero-stat-divider { width: 1px; height: 40px; background: rgba(52, 211, 153, 0.3); }
.hero-right { position: relative; }
.hero-img-main {
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
  aspect-ratio: 520/680;
}
.hero-img-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-float {
  position: absolute; bottom: -30px; left: -40px;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  border: 4px solid #0A1628;
}
.hero-float-badge {
  position: absolute; bottom: 12px; left: 12px;
  background: #0A1628; color: #34D399;
  font-size: 0.75rem; font-weight: 600; padding: 6px 12px;
  border-radius: 8px; display: flex; align-items: center; gap: 6px;
}
.hero-shape { position: absolute; z-index: 1; }
.hero-shape-circle {
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(52,211,153,0.15) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.hero-shape-dots {
  width: 120px; height: 120px; bottom: 60px; right: -30px;
  background-image: radial-gradient(rgba(52,211,153,0.4) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
}
.hero-accent-bar {
  display: flex; margin-top: 0; position: relative; z-index: 2;
}
.hero-accent-stripe {
  height: 6px; border-radius: 0;
}
.hero-accent-stripe:nth-child(odd) { background: #34D399; }
.hero-accent-stripe:nth-child(even) { background: #132240; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 100px; font-weight: 600;
  font-size: 0.9375rem; transition: all 0.25s; cursor: pointer; border: none;
  font-family: 'Inter', sans-serif;
}
.btn-mint { background: #34D399; color: #0A1628; }
.btn-mint:hover { background: #2FC48A; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(52,211,153,0.35); }
.btn-outline {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { border-color: #34D399; color: #34D399; }
.btn-outline-white {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.btn-white { background: #fff; color: #0A1628; }
.btn-white:hover { background: #f0fdf4; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,255,255,0.2); }
.btn-full { width: 100%; justify-content: center; }

/* ── Section shared ── */
.section-label {
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: #34D399; margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px;
}
.section-sub {
  font-size: 1.0625rem; color: #4A5568; max-width: 560px; line-height: 1.7;
}

/* ── Services ── */
.services { padding: 120px 0; background: #fff; }
.services .container { text-align: center; }
.services .section-sub { margin: 0 auto 64px; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-card {
  background: #fff; border: 1px solid #E2E8F0;
  border-radius: 20px; padding: 40px 32px; text-align: left;
  position: relative; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(10,22,40,0.1);
  border-color: #34D399;
}
.service-card-accent {
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, #34D399, #6EE7B7);
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.service-card:hover .service-card-accent { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: #ECFDF5; display: flex; align-items: center; justify-content: center;
  color: #059669; margin-bottom: 20px;
  transition: background 0.3s, color 0.3s;
}
.service-card:hover .service-icon { background: #34D399; color: #0A1628; }
.service-name { font-size: 1.25rem; margin-bottom: 10px; }
.service-desc { font-size: 0.9375rem; color: #4A5568; line-height: 1.65; }

/* ── About ── */
.about { padding: 120px 0; background: #F8FAFC; position: relative; overflow: hidden; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { position: relative; }
.about-img-block { border-radius: 20px; overflow: hidden; box-shadow: 0 20px 50px rgba(10,22,40,0.12); }
.about-img-main { aspect-ratio: 480/600; }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-accent {
  position: absolute; bottom: -40px; right: -30px;
  width: 260px; border-radius: 16px; overflow: hidden;
  border: 5px solid #F8FAFC; box-shadow: 0 16px 40px rgba(10,22,40,0.15);
}
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.about-deco-shape {
  position: absolute; top: -30px; left: -20px; width: 120px; height: 120px;
  background: #34D399; border-radius: 24px; z-index: -1; opacity: 0.2;
}
.about-content .section-title { margin-bottom: 24px; }
.about-text { font-size: 1.0625rem; color: #4A5568; line-height: 1.75; margin-bottom: 16px; }
.about-values { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.about-value { display: flex; gap: 16px; align-items: flex-start; }
.about-value-dot { width: 10px; height: 10px; border-radius: 50%; background: #34D399; flex-shrink: 0; margin-top: 6px; }
.about-value strong { display: block; font-size: 1rem; margin-bottom: 2px; }
.about-value span { font-size: 0.875rem; color: #4A5568; line-height: 1.5; }
.mt-8 { margin-top: 32px; }

/* ── Gallery ── */
.gallery { padding: 120px 0; background: #0A1628; }
.gallery-header { text-align: center; margin-bottom: 64px; }
.gallery-header .section-sub { color: rgba(255,255,255,0.6); margin: 0 auto; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.gallery-item {
  border-radius: 16px; overflow: hidden; position: relative;
  cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
  position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,22,40,0.7) 0%, transparent 60%);
  display: flex; align-items: flex-end; padding: 20px;
  opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span { color: #fff; font-family: 'Playfair Display', serif; font-size: 1.125rem; }
.gallery-item--tall { grid-column: span 4; grid-row: span 2; }
.gallery-item--tall img { height: 100%; }
.gallery-item--wide { grid-column: span 5; }
.gallery-item:not(.gallery-item--tall):not(.gallery-item--wide) { grid-column: span 3.5; }

/* ── Testimonials ── */
.testimonials { padding: 120px 0; background: #ECFDF5; }
.testimonials .container { text-align: center; }
.testimonials-track { margin-top: 56px; position: relative; overflow: hidden; }
.testimonials-slider { display: flex; transition: transform 0.5s ease; }
.testimonial-card {
  min-width: 100%; padding: 0 40px;
}
.testimonial-stars { display: flex; justify-content: center; gap: 4px; margin-bottom: 24px; }
.testimonial-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-style: italic; color: #0A1628; line-height: 1.6;
  max-width: 720px; margin: 0 auto 32px;
}
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 12px; }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; overflow: hidden; }
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-author span { font-weight: 600; font-size: 0.9375rem; color: #0A1628; }
.testimonials-nav { display: flex; justify-content: center; gap: 12px; margin-top: 40px; }
.testimonial-btn {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1.5px solid #0A1628; background: transparent;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.2s; color: #0A1628;
}
.testimonial-btn:hover { background: #0A1628; color: #34D399; }

/* ── CTA Banner ── */
.cta-banner {
  padding: 100px 0; background: #0A1628; position: relative; overflow: hidden;
}
.cta-shape { position: absolute; border-radius: 50%; }
.cta-shape-1 { width: 500px; height: 500px; background: rgba(52,211,153,0.08); top: -200px; left: -100px; }
.cta-shape-2 { width: 300px; height: 300px; background: rgba(52,211,153,0.06); bottom: -100px; right: 50px; }
.cta-inner {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.cta-headline { font-size: clamp(2rem, 4vw, 3rem); color: #fff; margin-bottom: 8px; }
.cta-text p { color: rgba(255,255,255,0.6); font-size: 1.0625rem; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── Contact ── */
.contact { padding: 120px 0; background: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.contact-sub { font-size: 1.0625rem; color: #4A5568; margin-bottom: 40px; line-height: 1.7; }
.contact-details { display: flex; flex-direction: column; gap: 28px; margin-bottom: 32px; }
.contact-detail { display: flex; gap: 16px; align-items: flex-start; }
.contact-detail-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: #ECFDF5; display: flex; align-items: center; justify-content: center;
  color: #059669; flex-shrink: 0;
}
.contact-detail strong { display: block; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.06em; color: #0A1628; margin-bottom: 4px; }
.contact-detail span, .contact-detail a { font-size: 0.9375rem; color: #4A5568; line-height: 1.6; }
.contact-detail a:hover { color: #34D399; }
.contact-form-wrap { background: #F8FAFC; border-radius: 24px; padding: 48px; border: 1px solid #E2E8F0; }
.contact-form-title { font-size: 1.5rem; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.8125rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: #0A1628; margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border-radius: 12px;
  border: 1.5px solid #E2E8F0; font-size: 0.9375rem;
  font-family: 'Inter', sans-serif; color: #0A1628;
  background: #fff; transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: #34D399; box-shadow: 0 0 0 3px rgba(52,211,153,0.15);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  display: none; align-items: center; gap: 12px;
  margin-top: 16px; padding: 16px 20px; border-radius: 12px;
  background: #ECFDF5; color: #059669; font-weight: 500;
}
.form-success.show { display: flex; }

/* ── Footer ── */
.footer { background: #0A1628; padding: 80px 0 0; color: rgba(255,255,255,0.6); }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px;
  padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { display: flex; align-items: center; gap: 10px; font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.25rem; color: #fff; margin-bottom: 16px; }
.footer-tagline { font-size: 0.9375rem; line-height: 1.6; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.footer-social a:hover { background: #34D399; color: #0A1628; }
.footer-col h4 {
  font-family: 'Inter', sans-serif; font-size: 0.8125rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; color: #34D399; margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.9375rem; transition: color 0.2s; }
.footer-col a:hover { color: #34D399; }
.footer-address { font-size: 0.9375rem; line-height: 1.7; font-style: normal; }
.footer-address a:hover { color: #34D399; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; font-size: 0.8125rem;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { max-width: 480px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-visual { max-width: 480px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(6, 1fr); grid-template-rows: auto auto; }
  .gallery-item--tall { grid-column: span 3; grid-row: span 1; }
  .gallery-item--wide { grid-column: span 4; }
  .gallery-item:not(.gallery-item--tall):not(.gallery-item--wide) { grid-column: span 3; }
}
@media (max-width: 768px) {
  .nav-links { 
    display: none; position: absolute; top: 72px; left: 0; right: 0;
    background: rgba(10,22,40,0.97); backdrop-filter: blur(12px);
    flex-direction: column; padding: 24px; gap: 20px;
    border-bottom: 1px solid rgba(52,211,153,0.15);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero { padding: 100px 0 60px; }
  .hero-headline { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-img-float { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item--tall, .gallery-item--wide, .gallery-item:not(.gallery-item--tall):not(.gallery-item--wide) { grid-column: span 1; }
  .gallery-item--tall { grid-row: span 1; }
  .cta-inner { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 480px) {
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero-stat-divider { display: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
