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

body {
  font-family: "Georgia", "Times New Roman", serif;
  line-height: 1.6;
  color: #2c2c2c;
  overflow-x: hidden;
}

/* Topbar */
.topbar {
  background: linear-gradient(135deg, #0a0e27 0%, #1a1a3e 100%);
  color: #fff;
  padding: 12px 0;
  font-size: 14px;
  border-bottom: 2px solid #d4af37;
}

.topbar .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 30px;
}

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

.topbar-contact a {
  color: #d4af37;
  text-decoration: none;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.topbar-contact a:hover {
  color: #fff;
  transform: translateY(-2px);
}

/* Header */
header {
  background: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(10px);
  padding: 0;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 32px;
  font-weight: bold;
  color: #d4af37;
  text-shadow: 2px 2px 8px rgba(212, 175, 55, 0.3);
}

.logo-icon {
  font-size: 40px;
  animation: rotate 20s linear infinite;
}

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

nav ul {
  display: flex;
  list-style: none;
  gap: 40px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s;
  position: relative;
  padding: 5px 0;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #d4af37;
  transition: width 0.3s;
}

nav a:hover::after {
  width: 100%;
}

nav a:hover {
  color: #d4af37;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  z-index: 1001;
}

.hamburger span {
  width: 30px;
  height: 3px;
  background: #d4af37;
  border-radius: 3px;
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(9px, 9px);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(9px, -9px);
}

/* Hero Section */
.hero {
  background: linear-gradient(
      135deg,
      rgba(10, 14, 39, 0.95),
      rgba(26, 26, 62, 0.9)
    ),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><circle cx="600" cy="300" r="200" fill="%23d4af37" opacity="0.05"/><circle cx="600" cy="300" r="150" fill="%23d4af37" opacity="0.05"/><circle cx="600" cy="300" r="100" fill="%23d4af37" opacity="0.05"/></svg>');
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 150px 40px 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 50%,
    transparent 0%,
    rgba(10, 14, 39, 0.8) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
}

.hero-subtitle {
  color: #d4af37;
  font-size: 18px;
  letter-spacing: 3px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 600;
}

.hero h1 {
  font-size: 64px;
  margin-bottom: 25px;
  color: #fff;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
  font-weight: 700;
}

.hero-highlight {
  color: #d4af37;
}

.hero p {
  font-size: 22px;
  margin-bottom: 40px;
  line-height: 1.8;
  color: #e0e0e0;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
  color: #0a0e27;
  padding: 18px 45px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.4s;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
}

.cta-button-secondary {
  background: transparent;
  border: 2px solid #d4af37;
  color: #d4af37;
}

.cta-button-secondary:hover {
  background: #d4af37;
  color: #0a0e27;
}

/* Floating Stars Animation */
.stars {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.star {
  position: absolute;
  color: #d4af37;
  animation: twinkle 3s ease-in-out infinite;
  opacity: 0.6;
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

/* Zodiac Signs Section */
.zodiac-section {
  padding: 100px 40px;
  background: linear-gradient(180deg, #0a0e27 0%, #1a1a3e 100%);
  position: relative;
  overflow: hidden;
}

.zodiac-section::before {
  content: "☽";
  position: absolute;
  font-size: 400px;
  color: rgba(212, 175, 55, 0.05);
  top: -100px;
  right: -100px;
}

.zodiac-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section-title {
  text-align: center;
  margin-bottom: 70px;
}

.section-title h2 {
  font-size: 48px;
  color: #d4af37;
  margin-bottom: 15px;
  font-weight: 700;
}

.section-title p {
  font-size: 20px;
  color: #b8b8b8;
}

.zodiac-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
}

.zodiac-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 35px 20px;
  text-align: center;
  transition: all 0.4s;
  cursor: pointer;
}

.zodiac-card:hover {
  transform: translateY(-10px) scale(1.05);
  border-color: #d4af37;
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.zodiac-icon {
  font-size: 60px;
  margin-bottom: 15px;
  display: block;
}

.zodiac-card h3 {
  color: #d4af37;
  font-size: 20px;
  margin-bottom: 8px;
}

.zodiac-card p {
  color: #b8b8b8;
  font-size: 14px;
}

/* About Section */
.about {
  padding: 100px 40px;
  background: #f8f5f0;
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image-main {
  font-size: 300px;
  color: #d4af37;
  opacity: 0.3;
  animation: float 6s ease-in-out infinite;
  text-align: center;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-30px);
  }
}

.about-text h2 {
  font-size: 48px;
  color: #0a0e27;
  margin-bottom: 25px;
  line-height: 1.2;
}

.about-text p {
  font-size: 18px;
  line-height: 1.9;
  margin-bottom: 20px;
  color: #4a4a4a;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-top: 40px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.feature-icon {
  font-size: 32px;
  color: #d4af37;
}

.feature-text h4 {
  color: #0a0e27;
  margin-bottom: 5px;
  font-size: 18px;
}

.feature-text p {
  color: #6a6a6a;
  font-size: 15px;
  margin: 0;
}

/* Services Section */
.services {
  padding: 100px 40px;
  background: linear-gradient(180deg, #0a0e27 0%, #1a1a3e 100%);
  position: relative;
}

.services::before {
  content: "✦";
  position: absolute;
  font-size: 500px;
  color: rgba(212, 175, 55, 0.03);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.services-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(212, 175, 55, 0.2);
  padding: 45px;
  border-radius: 20px;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.1) 0%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: #d4af37;
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
}

.service-icon {
  font-size: 60px;
  margin-bottom: 25px;
  display: block;
}

.service-card h3 {
  color: #d4af37;
  margin-bottom: 18px;
  font-size: 26px;
}

.service-card p {
  color: #b8b8b8;
  line-height: 1.8;
  font-size: 16px;
}

/* Planetary Section */
.planetary {
  padding: 100px 40px;
  background: #f8f5f0;
}

.planetary-container {
  max-width: 1400px;
  margin: 0 auto;
}

.planets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 35px;
}

.planet-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
  border: 3px solid transparent;
}

.planet-card:hover {
  transform: translateY(-10px) rotate(2deg);
  border-color: #d4af37;
  box-shadow: 0 15px 45px rgba(212, 175, 55, 0.2);
}

.planet-icon {
  font-size: 70px;
  margin-bottom: 20px;
  display: block;
}

.planet-card h3 {
  color: #0a0e27;
  font-size: 24px;
  margin-bottom: 10px;
}

.planet-card p {
  color: #6a6a6a;
  font-size: 15px;
  line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
  padding: 100px 40px;
  background: linear-gradient(135deg, #0a0e27 0%, #1a1a3e 100%);
  position: relative;
}

.testimonials-container {
  max-width: 1400px;
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(212, 175, 55, 0.2);
  padding: 40px;
  border-radius: 20px;
  position: relative;
}

.testimonial-quote {
  font-size: 60px;
  color: #d4af37;
  opacity: 0.3;
  position: absolute;
  top: 20px;
  left: 30px;
}

.testimonial-stars {
  color: #d4af37;
  margin-bottom: 20px;
  font-size: 20px;
}

.testimonial-card p {
  color: #e0e0e0;
  font-style: italic;
  margin-bottom: 25px;
  line-height: 1.8;
  font-size: 17px;
  position: relative;
  z-index: 2;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #d4af37, #f4d03f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.author-info h4 {
  color: #d4af37;
  margin-bottom: 3px;
  font-size: 18px;
}

.author-info p {
  color: #b8b8b8;
  font-size: 14px;
  margin: 0;
  font-style: normal;
}

/* CTA Section */
.cta-section {
  padding: 100px 40px;
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
  text-align: center;
}

.cta-content h2 {
  font-size: 48px;
  color: #0a0e27;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 20px;
  color: #2c2c2c;
  margin-bottom: 40px;
}

.cta-section .cta-button {
  background: #0a0e27;
  color: #d4af37;
}

.cta-section .cta-button:hover {
  background: #1a1a3e;
}

/* Footer */
footer {
  background: #0a0e27;
  color: #b8b8b8;
  padding: 80px 40px 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  max-width: 1400px;
  margin: 0 auto 50px;
}

.footer-section h3 {
  color: #d4af37;
  margin-bottom: 25px;
  font-size: 22px;
}

.footer-section p {
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section a {
  color: #b8b8b8;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
  cursor: pointer;
}

.footer-section a:hover {
  color: #d4af37;
  transform: translateX(5px);
}

.contact-info {
  margin-top: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 16px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  color: #808080;
}

/* Legal Sections */
.legal-section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 14, 39, 0.95);
  z-index: 10000;
  overflow-y: auto;
  padding: 40px 20px;
}

.legal-container {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  padding: 60px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.legal-container h2 {
  color: #0a0e27;
  font-size: 42px;
  margin-bottom: 15px;
  border-bottom: 3px solid #d4af37;
  padding-bottom: 15px;
}

.legal-update {
  color: #808080;
  font-size: 14px;
  margin-bottom: 35px;
  font-style: italic;
}

.legal-container h3 {
  color: #d4af37;
  font-size: 22px;
  margin-top: 35px;
  margin-bottom: 15px;
  font-weight: 600;
}

.legal-container p {
  color: #4a4a4a;
  line-height: 1.9;
  margin-bottom: 20px;
  font-size: 16px;
}

.legal-close {
  display: block;
  margin: 50px auto 0;
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
  color: #0a0e27;
  padding: 15px 50px;
  border: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.legal-close:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
}

/* Responsive */
@media (max-width: 1024px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .hero h1 {
    font-size: 36px;
  }

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

  nav ul {
    flex-direction: column;
    gap: 15px;
  }

  header .container {
    flex-direction: column;
    gap: 20px;
  }

  .topbar .container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .zodiac-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
  }

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

  .section-title h2 {
    font-size: 36px;
  }

  .about-text h2,
  .cta-content h2 {
    font-size: 36px;
  }

  .legal-container {
    padding: 40px 30px;
  }

  .legal-container h2 {
    font-size: 32px;
  }

  .legal-container h3 {
    font-size: 20px;
  }

  .legal-container p {
    font-size: 15px;
  }
}
