:root {
  --bg-dark: #07090e;
  --card-bg: rgba(18, 24, 38, 0.5);
  --card-border: rgba(255, 255, 255, 0.08);
  --accent-cyan: #00f2fe;
  --accent-blue: #4facfe;
  --accent-gradient: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
  --brand-white: linear-gradient(135deg, #fff 0%, grey 100%);
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --glass-blur: blur(5px);
  --radius: 26px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  min-width: 320px;
  -webkit-tap-highlight-color: transparent;
}

img {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.gallery-card {
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.gallery-card.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.gallery-card.hide {
  opacity: 0;
  transform: translateY(20px) scale(0.98);
}

h1,
h2,
h3,
h4 {
  font-family: "Syne", sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.3px;
}

.background {
  position: fixed;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 700px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(0, 242, 254, 0.12) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  z-index: -1;
  pointer-events: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0 48px;
  width: 100%;
  scroll-margin-top: 90px;
}

header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: calc(100% - 32px);
  background: rgba(10, 14, 23, 0.85);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--card-border);
  border-radius: 100px;
  padding: 16px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

.brand,
.brand-white {
  font-size: 17px !important;
  font-weight: 800;
  white-space: nowrap;
  letter-spacing: 0.8px;
  flex-shrink: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  text-transform: uppercase;
}

.brand {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-white {
  background: var(--brand-white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  right: 100%;
}

.brand-text {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}

nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.3s ease;
}

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

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 20px;
  cursor: pointer;
  z-index: 1001;
  background: transparent;
  border: none;
}

.hamburger span {
  width: 100%;
  height: 2.5px;
  background: var(--text-main);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

.section-head {
  margin-bottom: 32px;
}

.section-head h2 {
  font-size: 35px;
  margin-bottom: 6px;
}

.section-head p {
  color: var(--text-muted);
  font-size: 15px;
}

.hero {
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 112px;
  text-align: center;
}

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

.tag {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(0, 242, 254, 0.06);
  border: 1px solid rgba(0, 242, 254, 0.25);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-cyan);
  margin-bottom: 20px;
}

.tag.mb,
.tag .mb {
  margin-bottom: 13px;
}

.hero h1 {
  font-size: 56px;
  line-height: 1.15;
  margin-bottom: 20px;
  font-weight: 800;
  word-break: normal;
  overflow-wrap: break-word;
}

.gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero p {
  color: var(--text-muted);
  font-size: 18px;
  max-width: 650px;
  margin: 0 auto 32px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 32px;
  background: var(--accent-gradient);
  color: #07090e;
  font-weight: 800;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 5px 10px rgba(0, 242, 254, 0.25);
  transition: all 0.3s ease;
}

.cta-btn.wh,
.cta-btn .wh {
  background: #25d366;
  color: #fff;
  width: 100%;
  text-align: center;
  box-shadow: 0 5px 10px rgba(37, 211, 102, 1);
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px rgba(0, 242, 254, 0.4);
}

.wh:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px rgba(37, 211, 102, 1);
}

.btn-outline {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 29px;
  border: 1px solid var(--card-border);
  border-radius: 50px;
  color: var(--text-main);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
}

.btn-outline:hover {
  background: var(--text-main);
  color: var(--bg-dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  width: 100%;
}

.gallery-card {
  height: 260px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--card-border);
  background: #000;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0.88;
}

.gallery-card:hover img {
  transform: scale(1.05);
  opacity: 1;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(7, 9, 14, 0.95));
}

.gallery-overlay h4 {
  font-size: 14px;
  color: var(--text-main);
  font-weight: 600;
}

.expand-box {
  text-align: center;
  margin-top: 40px;
}

.floating-close-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  padding: 12px 21px;
  background: rgba(10, 14, 23, 0.7);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  color: var(--accent-cyan);
  border: 1px solid rgba(0, 242, 254, 0.4);
  border-radius: 50px;
  backdrop-filter: blur(12px);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  z-index: 999;
  display: none;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.floating-close-btn:hover {
  background: var(--accent-cyan);
  color: #07090e;
  transform: translateY(-2px);
}

.floating-close-btn.visible {
  display: flex;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}

.bento-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.3s ease;
  position: relative;
}

.bento-card:hover {
  border-color: rgba(0, 242, 254, 0.3);
  transform: translateY(-3px);
}

.bento-card.span-2 {
  grid-column: span 2;
}

.bento-card.span-3 {
  grid-column: span 3;
}

.bento-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--text-main);
}

.bento-card p {
  color: var(--text-muted);
  font-size: 14px;
}

.pill-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.pill {
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--card-border);
  border-radius: 50px;
  font-size: 12px;
  color: var(--accent-cyan);
  font-weight: 500;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  width: 100%;
}

.step-num {
  font-family: "Syne", sans-serif;
  font-size: 35px;
  font-weight: 800;
  opacity: 0.25;
  margin-bottom: -3px;
  color: var(--accent-cyan);
}

.contact-wrapper {
  background: linear-gradient(
    145deg,
    rgba(18, 24, 38, 0.7) 0%,
    rgba(7, 9, 14, 0.9) 100%
  );
  border: 1px solid rgba(0, 242, 254, 0.2);
  border-radius: 30px !important;
  padding: 56px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
  top: -60px;
}

.contact-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-gradient);
}

.contact-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 32px;
  align-items: center;
}

.contact-info h2 {
  font-size: 35px;
  margin-bottom: 10px;
}

.contact-info p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 19px;
}

.person-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 16px;
}

.person-badge i {
  font-size: 56px;
  color: var(--accent-color);
  flex-shrink: 0;
}

.person-info {
  display: flex;
  flex-direction: column;
}

.person-name {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
}

.person-role {
  margin-top: 6px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  color: var(--text-main);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  word-break: break-word;
}

.contact-item:hover {
  border-color: var(--accent-cyan);
  background: rgba(0, 242, 254, 0.05);
  transform: translateX(4px);
}

.contact-action-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 242, 254, 0.03);
  border: 1px dashed rgba(0, 242, 254, 0.25);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  height: 100%;
}

.contact-action-box h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.contact-action-box p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

footer {
  text-align: center;
  padding: 40px 16px;
  color: var(--text-muted);
  font-size: 13px;
  border-top: 1px solid var(--card-border);
  margin-top: 20px;
}

@media (max-width: 900px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-card.span-2,
  .bento-card.span-3 {
    grid-column: span 1;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hamburger {
    display: flex;
    margin-left: auto;
  }

  nav ul {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: rgba(7, 9, 14, 1);
    border-radius: var(--radius);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    transition: right 0.4s ease;
    z-index: 1000;
    padding: 32px;
  }

  nav ul.active {
    right: 0;
  }

  nav a {
    font-size: 18px;
  }
}

@media (max-width: 640px) {
  header {
    width: calc(100% - 24px);
    top: 12px;
    padding: 14px 20px;
    border-radius: 50px;
  }

  .brand {
    font-size: 14px;
  }

  .container {
    padding: 0 16px;
  }

  section {
    padding: 64px 0 32px;
  }

  .section-head h2 {
    font-size: 24px;
  }

  .hero {
    padding-top: 104px;
    min-height: auto;
  }

  .hero h1 {
    font-size: 32px;
    line-height: 1.2;
  }

  .hero p {
    font-size: 15px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .contact-wrapper {
    padding: 20px;
    border-radius: 16px;
  }

  .contact-info h2 {
    font-size: 24px;
  }

  .floating-close-btn {
    bottom: 16px;
    right: 16px;
    font-size: 12px;
    padding: 10px 16px;
  }
}

@media (max-width: 380px) {
  .brand {
    font-size: 13px;
  }

  .hero h1 {
    font-size: 23px;
  }
}
