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

body, html {
  height: 100%;
  font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #050510;
  color: #f0f0f3;
  overflow-x: hidden;
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0; left: 0;
  width: 220px;
  height: 100%;
  background: linear-gradient(160deg, #0d0d14, #1a1a28);
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
  box-shadow: 5px 0 15px rgba(20,20,50,0.7);
  display: flex;
  flex-direction: column;
  padding: 48px 24px;
  z-index: 20;
}

.logo {
  font-weight: 900;
  font-size: 36px;
  letter-spacing: 4px;
  line-height: 1.05;
  margin-bottom: 50px;
  cursor: default;
}

.logo span {
  display: block;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 2px;
  margin-top: 6px;
  color: #6f6f85;
}

/* Follow Us Section */
.follow-us h4 {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 3px;
  color: #6f6f85;
  margin-bottom: 16px;
}

.follow-us p {
  font-size: 14px;
  line-height: 1.5;
  color: #8c8caa;
  margin-bottom: 28px;
  user-select: text;
}

.social-icons {
  display: flex;
  gap: 18px;
}

.social-icons a {
  font-size: 20px;
  color: #71718d;
  transition: color 0.25s ease;
}

.social-icons a:hover {
  color: #82ffc4;
}

/* Main Content */
.main-content {
  margin-left: 220px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  background: transparent;
}

/* Top Navigation */
.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 48px;
  z-index: 15;
}

.menu {
  list-style: none;
  display: flex;
  gap: 32px;
}

.menu li a {
  font-weight: 600;
  font-size: 16px;
  padding: 8px 18px;
  border-radius: 28px;
  color: #a1a1b7;
  transition: all 0.3s ease;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  user-select: none;
  display: inline-block;
}

.menu li.active a,
.menu li a:hover {
  color: #82ffc4;
  background: rgba(130, 255, 196, 0.15);
  box-shadow: 0 0 10px #82ffc4;
}

/* Contact Button */
.contact-btn {
  padding: 10px 28px;
  border-radius: 30px;
  border: 2px solid #82ffc4;
  background: transparent;
  color: #82ffc4;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1.3px;
  transition: all 0.3s ease;
  user-select: none;
}

.contact-btn:hover {
  background: #82ffc4;
  color: #050510;
  box-shadow: 0 0 10px #82ffc4;
}

/* Hero Section */
.hero {
  flex-grow: 1;
  position: relative;
  margin: 0 48px 40px 48px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow:
    0 0 60px rgba(130, 255, 196, 0.3),
    inset 0 0 80px rgba(130, 255, 196, 0.15);
  background: rgba(15, 15, 20, 0.5);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  padding: 48px;
  z-index: 10;
}

/* Background Blur */
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1920&q=80') center center / cover no-repeat;
  filter: blur(24px) brightness(0.4);
  z-index: 0;
  border-radius: 32px;
  transition: filter 0.4s ease;
}

/* Hero Content */
.hero-content {
  position: relative;
  max-width: 600px;
  color: #d7f1e9;
  z-index: 1;
  user-select: text;
}

.hero-content h1 {
  font-weight: 900;
  font-size: 6vw;
  line-height: 1.05;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: #82ffc4;
}

.hero-content p {
  font-weight: 400;
  font-size: 1.1rem;
  max-width: 420px;
  line-height: 1.5;
  margin-bottom: 44px;
  color: #b1c7b7;
}

/* Info row */
.info-row {
  display: flex;
  gap: 32px;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  color: #82ffc4;
  user-select: none;
}

.clock-icon {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  background: rgba(130, 255, 196, 0.15);
  border-radius: 30px;
  box-shadow: 0 0 8px rgba(130, 255, 196, 0.3);
}

.clock-icon i {
  font-size: 18px;
  color: #82ffc4;
}

/* Team avatars */
.team-avatars {
  display: flex;
  gap: 14px;
}

.team-avatars img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #82ffc4;
  box-shadow: 0 0 12px #82ffc4;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.team-avatars img:hover {
  transform: scale(1.15);
  box-shadow: 0 0 20px #82ffc4;
}

/* Footer CTA */
.cta-footer {
  padding: 32px 48px;
  background: #050510;
  border-top: 1px solid #2c2c2c;
  display: flex;
  justify-content: center;
}

.cta-button {
  background: #82ffc4;
  color: #050510;
  font-weight: 700;
  font-size: 1.15rem;
  border-radius: 34px;
  padding: 16px 52px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: none;
  box-shadow: 0 10px 30px rgba(130, 255, 196, 0.6);
  transition: background 0.3s ease;
  user-select: none;
}

.cta-button:hover {
  background: #61cca9;
  box-shadow: 0 15px 40px rgba(97, 204, 169, 0.8);
}

.cta-button i {
  font-size: 20px;
}

/* Responsive */
@media (max-width: 900px) {
  .sidebar {
    display: none;
  }
  .main-content {
    margin-left: 0;
  }
  .hero {
    margin: 0 24px 24px 24px;
    padding: 36px 24px;
    border-radius: 24px;
  }
  .hero-content h1 {
    font-size: 10vw;
  }
  .top-nav {
    padding: 24px;
  }
}
