:root {
  --dark-bg: #0a1f1a;
  --dark-green: #0d2b22;
  --green: #10b981;
  --green-bright: #34d399;
  --green-light: #6ee7b7;
  --cyan-green: #14b8a6;
  --white: #ffffff;
  --gray: #94a3b8;
  --gray-dark: #1e293b;

  --cream: #f5f0e8;
  --dark: #1a1612;
  --gold: #c9a96e;
  --gold-light: #e8d5b0;
  --muted: #8c7b6b;
  --accent: #7d5a3c;
}

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

body {
  font-family: "Exo 2", sans-serif;
  overflow-x: hidden;
  background: var(--dark-bg);
  color: var(--white);
}

.grecaptcha-badge { display:none !important; }

.recaptcha-notice a {
  color: #096e4c;
}

.recaptcha-notice a:hover {
  color: #10b981;
}

/* Hero Container */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(
    ellipse at center,
    var(--dark-green) 0%,
    var(--dark-bg) 100%
  );
}

/* Animated Background with Gears */
.gears-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.12;
  z-index: 1;
}

/* SVG Gear Icon - Similar to uploaded image */
.gear-icon {
  position: absolute;
  fill: var(--green);
  filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.4));
}

.gear-1 {
  width: 280px;
  height: 280px;
  top: 8%;
  left: 5%;
  animation: rotateClockwise 25s linear infinite;
  fill: var(--green-bright);
}

.gear-2 {
  width: 200px;
  height: 200px;
  top: 12%;
  right: 8%;
  animation: rotateCounterClockwise 18s linear infinite;
  fill: var(--cyan-green);
}

.gear-3 {
  width: 240px;
  height: 240px;
  bottom: 10%;
  left: 12%;
  animation: rotateClockwise 30s linear infinite;
  fill: var(--green);
}

.gear-4 {
  width: 180px;
  height: 180px;
  bottom: 15%;
  right: 10%;
  animation: rotateCounterClockwise 20s linear infinite;
  fill: var(--green-light);
}

.gear-5 {
  width: 160px;
  height: 160px;
  top: 45%;
  left: 8%;
  animation: rotateClockwise 15s linear infinite;
  fill: var(--green-bright);
}

.gear-6 {
  width: 140px;
  height: 140px;
  top: 60%;
  right: 15%;
  animation: rotateCounterClockwise 22s linear infinite;
  fill: var(--cyan-green);
}

.gear-7 {
  width: 120px;
  height: 120px;
  top: 35%;
  right: 35%;
  animation: rotateClockwise 12s linear infinite;
  fill: var(--green-light);
}

/* Glowing particles */
.glow-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--green-bright);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--green-bright);
  opacity: 0.6;
  animation: floatParticle 20s linear infinite;
}

.particle-1 {
  top: 10%;
  left: 15%;
  animation-delay: 0s;
}
.particle-2 {
  top: 30%;
  left: 75%;
  animation-delay: 4s;
}
.particle-3 {
  top: 50%;
  left: 25%;
  animation-delay: 8s;
  background: var(--cyan-green);
  box-shadow: 0 0 15px var(--cyan-green);
}
.particle-4 {
  top: 70%;
  left: 65%;
  animation-delay: 12s;
}
.particle-5 {
  top: 85%;
  left: 40%;
  animation-delay: 16s;
  background: var(--green-light);
  box-shadow: 0 0 15px var(--green-light);
}
.particle-6 {
  top: 25%;
  left: 50%;
  animation-delay: 6s;
}
.particle-7 {
  top: 55%;
  left: 80%;
  animation-delay: 10s;
  background: var(--cyan-green);
  box-shadow: 0 0 15px var(--cyan-green);
}

/* Grid pattern overlay */
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(16, 185, 129, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 185, 129, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

/* Scan line effect */
.scan-line {
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--green-bright),
    transparent
  );
  box-shadow: 0 0 20px var(--green-bright);
  animation: scanMove 8s linear infinite;
  opacity: 0.3;
}

/* Content Container */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 1100px;
  padding: 3rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(16, 185, 129, 0.1);
  border: 2px solid var(--green);
  padding: 0.6rem 2rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-bottom: 2rem;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  animation:
    fadeInDown 0.8s ease-out 0.2s backwards,
    glowPulse 3s ease-in-out infinite;
}

.badge-icon {
  width: 20px;
  height: 20px;
  fill: var(--green-bright);
  animation: rotateClockwise 8s linear infinite;
}

.hero-title {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(
    135deg,
    var(--white) 0%,
    var(--green-bright) 40%,
    var(--cyan-green) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
  position: relative;
  text-shadow: 0 0 80px rgba(16, 185, 129, 0.5);
}

.hero-title::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 250px;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--green-bright),
    var(--cyan-green),
    transparent
  );
  box-shadow: 0 0 20px var(--green-bright);
  animation: expandWidth 1.2s ease-out 0.8s backwards;
}

.hero-subtitle {
  font-size: clamp(1.3rem, 3vw, 2.2rem);
  font-weight: 300;
  margin-bottom: 2.5rem;
  color: var(--green-light);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.9;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s ease-out 0.8s backwards;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 5rem;
  margin-bottom: 3.5rem;
  animation: fadeInUp 0.8s ease-out 1s backwards;
}

.stat-item {
  text-align: center;
  position: relative;
  padding: 1.5rem;
  background: rgba(16, 185, 129, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  border-color: var(--green-bright);
  box-shadow: 0 10px 40px rgba(16, 185, 129, 0.3);
}

.stat-item::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 2px;
  background: var(--green-bright);
  box-shadow: 0 0 10px var(--green-bright);
}

.stat-number {
  font-family: "Orbitron", sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    var(--green-bright) 0%,
    var(--cyan-green) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 1.2s backwards;
}

.btn {
  padding: 1.3rem 3.5rem;
  font-family: "Orbitron", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s ease;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition:
    width 0.6s ease,
    height 0.6s ease;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--green) 0%,
    var(--green-bright) 100%
  );
  color: var(--white);
  box-shadow: 0 10px 40px rgba(16, 185, 129, 0.4);
  border: 2px solid transparent;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 60px rgba(16, 185, 129, 0.6);
}

.btn-outline {
  background: transparent;
  color: var(--green-bright);
  border: 2px solid var(--green-bright);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.btn-outline:hover {
  background: var(--green-bright);
  color: var(--dark-bg);
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(16, 185, 129, 0.6);
}

/* Tech features icons */
.tech-features {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 4rem;
  animation: fadeInUp 0.8s ease-out 1.4s backwards;
}

.tech-icon {
  width: 50px;
  height: 50px;
  fill: var(--green);
  opacity: 0.6;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.3));
}

.tech-icon:hover {
  fill: var(--green-bright);
  opacity: 1;
  transform: scale(1.2) rotate(180deg);
  filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.8));
}

/* Responsive Hero */
@media (max-width: 968px) {
  .gear-icon {
    width: 150px !important;
    height: 150px !important;
  }

  .hero-stats {
    gap: 2rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .tech-features {
    gap: 2rem;
  }

  .tech-icon {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 640px) {
  .hero-content {
    padding: 2rem 1.5rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .gear-icon {
    width: 100px !important;
    height: 100px !important;
  }

  .tech-features {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
}

/* ── MARQUEE ── */
.marquee-wrap {
  background: var(--dark-bg);
  padding: 0.9rem 0;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 18s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.marquee-item::after {
  content: "✦";
  font-size: 0.5rem;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ── SERVICES ── */
.services {
  padding: 8rem 8rem;
  position: relative;
  background-color: var(--dark-green);
  background-image: url(./images/Hero.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.section-header {
  display: block;
  justify-content: space-between;
  margin-bottom: 5rem;
  gap: 2rem;
}

.section-kicker {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 200;
  line-height: 1.1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1px;
  background: var(--dark-green);
}

.service-card {
  background: rgb(21, 83, 61);
  padding: 3rem 2.5rem;
  transition: 0.3s;
  transform: 0.3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  animation-range: 200px;
  animation: fadeLeft 0.8s ease-out backwards;
}
.service-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--cyan-green);
  transition: width 0.4s ease;
}
.service-card:hover::before {
  width: 100%;
}
.service-card:hover {
  background: rgb(8, 80, 68);
}

.service-num {
  font-size: 3rem;
  font-weight: 300;
  color: rgb(239, 255, 252);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.service-name {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--cream);
}

.service-desc {
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 500;
  color: var(--gray);
  margin-bottom: 1.5rem;
}

/* ── ABOUT ── */
.about {
  padding: 8rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
  background: rgb(249, 255, 254);
  color: var(--cream);
}

.about-image {
  aspect-ratio: 4/4;
  position: relative;
}

.about-img-bg {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 0.2rem;
}

.about-img-bg img {
  width: 100%;
}

.about-img-bg::after {
  content: "";
  position: absolute;
  inset: 2rem;
  border: 1px solid var(--gold);
}

.about-content .section-kicker {
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: lighter;
}

.about-content .section-title {
  color: rgb(8, 80, 68);
  font-weight: 500;
}

.about-text {
  font-size: 1rem;
  line-height: 2;
  font-weight: 500;
  color: rgb(4, 76, 77);
  margin: 1.5rem 0 2.5rem;
}

/* ── GALLERY ── */
.gallery {
  padding: 8rem;
  background-color: rgb(5, 63, 52);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 0.8rem;
  margin-top: 4rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  margin: 0%;
  padding: 0%;
  align-items: center;
}

.gallery-item:first-child {
  grid-row: 1 / 3;
}

.gallery-item {
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
  box-shadow: 5px 5px 3px rgb(0, 0, 0);
  border-radius: 0.1rem;
}

.gallery-item img {
  width: 100%;
  height: 100%;
}

.gallery-item:hover {
  transform: scale(1.06);
}

/* ── BOOKING ── */
.booking {
  padding: 8rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  background: rgba(3, 71, 66, 0.567);
  color: rgb(72, 72, 72);
}

.booking-info .section-kicker {
  color: var(--gold);
  font-size: 0.9rem;
}
.booking-info .section-title {
  color: white;
  font-size: 3rem;
}

.booking-details {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.booking-detail {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 255, 213, 0.415);
}

.detail-icon {
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.detail-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244, 232, 245, 0.4);
  margin-bottom: 0.3rem;
}

.detail-val {
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.8);
  line-height: 1.6;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.4);
}

.form-input,
.form-select,
.form-textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 213, 0.415);
  color: var(--cream);
  padding: 0.85rem 1rem;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
  border-radius: 0.3rem;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--green);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-submit {
  background: var(--green);
  color: var(--dark);
  border: none;
  border-radius: 0.3rem;
  padding: 1.1rem 3rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    0.3s,
    transform 0.3s;
  margin-top: 0.5rem;
  align-self: flex-start;
}

.form-submit:hover {
  background: var(--green-bright);
  transform: translateY(-2px);
  box-shadow: 2px 2px 5px black;
}

/* ── FOOTER ── */
footer {
  background: var(--dark-bg);
  padding: 4rem 8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(245, 240, 232, 0.25);
}

.footer-copy a {
  color: rgb(186, 7, 115);
  text-decoration: none;
  font-weight: bold;
}

.footer-copy a:hover {
  color: rgb(213, 6, 130);
  text-decoration: underline;
}

/* ── ANIMATIONS ──*/

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

@keyframes rotateClockwise {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes rotateCounterClockwise {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes expandWidth {
  from {
    width: 0;
  }
  to {
    width: 250px;
  }
}

@keyframes glowPulse {
  0%,
  100% {
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
  }
  50% {
    box-shadow: 0 0 25px rgba(16, 185, 129, 0.6);
  }
}

@keyframes floatParticle {
  0% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-100vh) translateX(100px) scale(0.5);
    opacity: 0;
  }
}

@keyframes scanMove {
  0% {
    top: 0;
  }
  100% {
    top: 100%;
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ── RESPONSIVE ──*/

@media (max-width: 1024px) {
  .services {
    padding: 5rem 3rem;
  }

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

  .about {
    grid-template-columns: 1fr;
    padding: 5rem 3rem;
    gap: 3rem;
  }

  .gallery {
    padding: 5rem 3rem;
  }

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

  .gallery-item:first-child {
    grid-row: auto;
    grid-column: 1 / -1;
    height: auto;
  }

  .booking {
    grid-template-columns: 1fr;
    padding: 5rem 3rem;
    gap: 4rem;
  }

  footer {
    padding: 3rem 2.5rem;
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  .services {
    padding: 4rem 2rem;
  }

  .about {
    grid-template-columns: 1fr;
    padding: 4rem 2rem;
    gap: 3rem;
  }

  .gallery {
    padding: 4rem 2rem;
  }

  .booking {
    grid-template-columns: 1fr;
    padding: 4rem 2rem;
    gap: 4rem;
  }

  footer {
    padding: 3rem 2.5rem;
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
}

@media (max-width: 390px) {
  .about-content .section-title {
    font-size: 2rem;
  }

  .booking-info .section-title {
    font-size: 2rem;
  }
}
