/* 1:1 Precise Pixel-Perfect Rebuild of webclever.com styles */

:root {
  --primary-color: #000000;
  --surface-color: rgba(255, 255, 255, 0.03); /* Used for dark boxes */
  --accent-color: #C1FF72;
  --accent-secondary: rgba(193, 255, 114, 0.1);
  --text-primary: #FFFFFF;
  --text-secondary: #aaaaaa;
  
  --font-family: 'Plus Jakarta Sans', sans-serif;
  --divider-color: rgba(255, 255, 255, 0.1);
  
  --nav-height: 100px;
}

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

body {
  font-family: var(--font-family);
  background-color: var(--primary-color);
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

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

/* Base Typo */
h1 {
  font-size: 50px;
  font-weight: 300;
  line-height: 1.2;
}

h2 {
  font-size: 45px;
  font-weight: 300;
  line-height: 1.2;
}

h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

p {
  color: var(--text-secondary);
  font-weight: 400;
}

/* Setup generic section wrapper classes */
.setup-bg {
  background-repeat: no-repeat;
}

/* Button Component */
.btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 100px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--accent-color);
  color: var(--primary-color);
  border: 1px solid var(--accent-color);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--accent-color);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid var(--divider-color);
}

/* Nav */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding-top: 30px;
  border-bottom: 1px solid var(--divider-color);
  padding-bottom: 30px;
}

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

.nav-links {
  display: flex;
  gap: 35px;
}

.nav-links a {
  font-size: 16px;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--accent-color);
}

.nav-contact {
  display: flex;
  align-items: center;
  gap: 30px;
}

.phone-link {
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.phone-link i {
  color: var(--accent-color);
}

/* Hero Component */
.hero {
  padding-top: 220px;
  padding-bottom: 120px;
  background-position: center;
  background-size: cover;
  position: relative;
}

.hero-layout {
  display: flex;
  align-items: stretch;
  gap: 40px;
}

.hero-content {
  flex: 0 0 53%;
  padding-right: 50px;
}

.hero-title {
  font-size: 41px;
  margin-bottom: 25px;
}

.hero-subtitle {
  font-size: 22px;
  color: var(--text-primary);
  margin-bottom: 15px;
}

.hero-desc {
  font-size: 18px;
  margin-bottom: 45px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 60px;
}

.play-btn-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-size: 20%;
  background-position: center left 20px;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding-left: 55px;
}
.play-btn-circle .center-text {
  font-weight: 400;
  letter-spacing: 0.1em;
  font-size: 14px;
}

.hero-stats {
  display: flex;
  border-top: 1px solid var(--divider-color);
  padding-top: 30px;
  gap: 50px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
  color: var(--text-primary);
}

.stat-text {
  font-size: 16px;
  margin-top: 5px;
}

/* Floating photo collage logic */
.hero-collage {
  flex: 0 0 47%;
  position: relative;
  min-height: 600px;
}

.collage-img {
  position: absolute;
  object-fit: cover;
}

.main-img {
  top: 0;
  left: 50px;
  width: 350px;
  height: 450px;
  z-index: 2;
}

.sub-img1 {
  top: 40px;
  right: 0;
  width: 250px;
  height: 250px;
  z-index: 1;
}

.sub-img2 {
  bottom: 0;
  right: 20px;
  width: 300px;
  height: 350px;
  z-index: 3;
}

/* Animation utilities */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.spin-ring {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 160px;
  height: 160px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  z-index: 10;
  animation: spin 8s linear infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ring-icon {
  font-size: 25px;
  color: var(--accent-color);
  transform: rotate(0); /* Avoid inner spin if necessary */
  animation: spin 8s linear infinite reverse; /* counter rotate icon to stay upright */
}

/* Features Grid */
.features {
  padding: 160px 0 80px;
  background-position: bottom right;
  background-size: auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.feature-box {
  background: transparent;
  border-bottom: 1px solid var(--divider-color);
  padding-bottom: 40px;
  transition: all 0.3s ease;
}

.feature-icon-wrapper {
  width: 60px;
  height: 60px;
  border: 1px solid var(--accent-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  color: var(--accent-color);
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.feature-box:hover .feature-icon-wrapper {
  background: var(--accent-color);
  color: var(--primary-color);
  border-color: var(--accent-secondary);
}

.feature-box h3 {
  margin-bottom: 15px;
  font-size: 22px;
}

/* About Layout */
.about {
  padding: 10px 0 160px;
}

.about-layout {
  display: flex;
  align-items: center;
  gap: 80px;
}

.about-collage {
  flex: 0 0 50%;
  position: relative;
  min-height: 600px;
}

.about-img {
  position: absolute;
}
.about-collage .main-img {
  top: 0;
  left: 0;
  width: 80%;
  height: auto;
  z-index: 2;
}
.about-collage .sub-img {
  bottom: 0;
  right: 0;
  width: 60%;
  height: auto;
  z-index: 1;
}

.support-box {
  position: absolute;
  bottom: 40px;
  left: -40px;
  background-color: var(--accent-color);
  border-radius: 100px;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 3;
}
.support-box .icon-circle {
  background-color: var(--primary-color);
  color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.support-text .title {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 16px;
}
.support-text .detail {
  color: var(--primary-color);
  font-size: 14px;
}

.about-content {
  flex: 0 0 50%;
}

.badge {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.about-content h2 {
  font-size: 45px;
  margin-bottom: 20px;
}

.check-list {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.check-list li {
  display: flex;
  gap: 20px;
}

.check-icon {
  width: 30px;
  height: 30px;
  min-width: 30px;
  background: var(--accent-color);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5px;
}

/* Global Stats Layout */
.stats-flex {
  display: flex;
  justify-content: space-between;
}
.stat-block {
  flex: 1;
  border-right: 1px solid var(--divider-color);
  padding-left: 40px;
}
.stat-block:last-child {
  border-right: none;
}
.stat-block h2 {
  font-size: 50px;
  color: var(--accent-color);
  font-weight: 700;
  margin-bottom: 5px;
}

/* Footer & specific fixes */
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer-col ul li {
  margin-bottom: 15px;
}
.footer-col ul li a {
  color: var(--text-secondary);
}
.footer-col ul li a:hover {
  color: var(--accent-color);
}

.socials {
  display: flex;
  gap: 15px;
}

.socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--divider-color);
  border-radius: 50%;
  color: var(--text-primary);
}
.socials a:hover {
  background-color: var(--accent-color);
  color: var(--primary-color);
  border-color: var(--accent-color);
}

/* Utilities */
.small-spin-left {
  animation: spin 10s linear infinite;
}
.small-spin-right {
  animation: spin 10s linear infinite reverse;
}
