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

:root {
  /* Darker gold palette with reduced yellow */
  --primary: #926f34; /* Darker gold */
  --primary-light: #a87d42; /* Slightly lighter darker gold */
  --secondary: #7a5d2d; /* Dark brown-gold */
  --accent: #926f34; /* Same darker gold for accent */
  --dark: #000000; /* Pure black */
  --darker: #000000; /* Pure black */
  --surface: #1a1a1a; /* Very dark gray */
  --surface-light: #2a2a2a; /* Dark gray */
  --text-primary: #ffffff; /* Pure white */
  --text-secondary: #f5f5f5; /* Off-white */
  --text-muted: #cccccc; /* Light gray */
  --border: rgba(146, 111, 52, 0.3); /* Darker gold border with transparency */
  --gradient-primary: linear-gradient(
    135deg,
    #926f34 0%,
    #7a5d2d 100%
  ); /* Darker gold gradient */
  --gradient-accent: linear-gradient(
    135deg,
    #a87d42 0%,
    #926f34 100%
  ); /* Darker gold accent gradient */
  --gradient-surface: linear-gradient(
    135deg,
    #1a1a1a 0%,
    #2a2a2a 100%
  ); /* Dark surface gradient */
  --shadow-glow: 0 0 50px rgba(146, 111, 52, 0.4); /* Darker golden glow */
  --shadow-card: 0 25px 50px -12px rgba(0, 0, 0, 0.8); /* Deep black shadows */
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Cormorant Garamond", serif;
  background: var(--dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: default; /* Default cursor */
}

/* Logo Intro Animation Overlay */
.logo-intro-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  animation: logoIntroSequence 4s ease-in-out forwards;
}

.logo-intro-container {
  position: relative;
  animation: logoScale 4s ease-in-out forwards;
}

.logo-intro-img {
  width: 300px;
  height: 300px;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(146, 111, 52, 0.6));
  animation: logoGlow 2s ease-in-out infinite alternate;
}

@keyframes logoIntroSequence {
  0% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    pointer-events: none;
  }
}

@keyframes logoScale {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  20% {
    transform: scale(1);
    opacity: 1;
  }
  70% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.2);
    opacity: 0;
  }
}

@keyframes logoGlow {
  0% {
    filter: drop-shadow(0 0 20px rgba(146, 111, 52, 0.4));
  }
  100% {
    filter: drop-shadow(0 0 40px rgba(146, 111, 52, 0.8));
  }
}

/* Hide page content initially */
.page-content {
  opacity: 0;
  animation: fadeInContent 1s ease-out 3.5s forwards;
}

@keyframes fadeInContent {
  to {
    opacity: 1;
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--darker);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-primary);
  border-radius: 3px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  padding: 0.2rem 1.5rem;
  background: transparent;
  backdrop-filter: blur(10px);
  border: 0.1px solid var(--border);
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
  box-shadow: var(--shadow-glow);
  transform: translateX(-50%) scale(0.95);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding: 1px;
}

.logo {
  font-size: 1rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  transition: all 0.3s ease;
}

.logo img {
  width: 110px;
  height: 110px;
  transition: all 0.3s ease;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  position: relative;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 25px;
}

.nav-links a:hover {
  color: var(--text-primary);
  background: rgba(146, 111, 52, 0.1);
}

.nav-links a.active {
  background: var(--gradient-primary);
  color: var(--dark);
  font-weight: 600;
}

.mobile-menu {
  display: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu img {
  width: 80px;
  height: 80px;
}

.mobile-nav-close img {
  width: 80px;
  height: 80px;
}

.mobile-menu:hover {
  transform: scale(1.1);
}

/* Mobile Navigation Menu */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 3rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(146, 111, 52, 0.1);
}

.mobile-nav-close img {
  height: 75px;
  width: 75px;
}

.mobile-nav-close:hover {
  background: rgba(146, 111, 52, 0.2);
  transform: rotate(180deg);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

.mobile-nav-links a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 2rem;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mobile-nav-links a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  transition: left 0.3s ease;
  z-index: -1;
}

.mobile-nav-links a:hover::before,
.mobile-nav-links a.active::before {
  left: 0;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  color: var(--dark);
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.6) 50%,
      rgba(0, 0, 0, 0.9) 100%
    ),
    linear-gradient(45deg, rgba(146, 111, 52, 0.06) 0%, transparent 50%),
    url("images/home/home.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      ellipse at 30% 70%,
      rgba(146, 111, 52, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 70% 30%,
      rgba(168, 125, 66, 0.04) 0%,
      transparent 50%
    );
  animation: float 25s ease-in-out infinite;
  mix-blend-mode: overlay;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.6) 100%
  );
  pointer-events: none;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }
  25% {
    transform: translateY(-10px) rotate(45deg) scale(1.05);
  }
  50% {
    transform: translateY(-20px) rotate(90deg) scale(1.1);
  }
  75% {
    transform: translateY(-15px) rotate(135deg) scale(1.05);
  }
}

.hero-content {
  text-align: center;
  z-index: 3;
  max-width: 900px;
  padding: 0 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(146, 111, 52, 0.4);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease 0.3s both;
}

.hero-title {
  font-size: clamp(2.5rem, 7vw, 4rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  animation: fadeInUp 1s ease 0.5s both;
  letter-spacing: 2px;
  text-shadow: 0 0 30px rgba(146, 111, 52, 0.3);
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
  background-color: #fff;
  letter-spacing: 1px;
}

.hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.3rem);
  color: var(--text-secondary);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  animation: fadeInUp 1s ease 0.7s both;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
  font-weight: 500;
}

.hero-cta {
  display: flex;
  gap: 1.8rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.9s both;
  font-family: "Cormorant Garamond", serif;
}

.btn {
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--dark);
  box-shadow: 0 4px 15px rgba(146, 111, 52, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(146, 111, 52, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(146, 111, 52, 0.1);
  border-color: var(--primary);
  transform: translateY(-3px);
}

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

/* About Section */
.about {
  padding: 10rem 5% 8rem;
  background: var(--darker);
  position: relative;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-primary);
}

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

.about-image {
  position: relative;
}

.about-image::before {
  content: "";
  position: absolute;
  top: -1rem;
  left: -1rem;
  right: 1rem;
  bottom: 1rem;
  background: var(--gradient-primary);
  border-radius: 30px;
  z-index: -1;
  opacity: 0.15;
}

.about-image img {
  width: 100%;
  border-radius: 25px;
  box-shadow: var(--shadow-card);
  transition: transform 0.4s ease;
}

.about-image:hover img {
  transform: scale(1.03) rotate(1deg);
}

.about-content h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 2rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-content p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.5;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.stat {
  text-align: center;
  padding: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.stat:hover::before {
  transform: scaleX(1);
}

.stat:hover {
  transform: translateY(-8px);
  background: var(--surface-light);
  box-shadow: var(--shadow-card);
  cursor: pointer;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Services Section */
.services {
  padding: 10rem 5%;
  background: var(--dark);
  position: relative;
}

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

.section-header {
  text-align: center;
  margin-bottom: 6rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(146, 111, 52, 0.4);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.section-title {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #926f34 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px;
}

.section-subtitle {
  font-size: 1.3rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2.5rem;
  margin-top: 6rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 25px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

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

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-glow);
  border-color: rgba(146, 111, 52, 0.4);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  transition: all 0.4s ease;
}

.service-icon img {
  width: 90%;
  height: 90%;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotateY(180deg);
  box-shadow: 0 10px 30px rgba(146, 111, 52, 0.4);
}

.service-title {
  font-size: 1.8rem;
  font-weight: bolder;
  margin-bottom: 1rem;
  color: var(--text-primary);
  /* letter-spacing: 0.5px; */
}

.service-description {
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  font-size: 1rem;
}

.service-features {
  list-style: none;
  margin-bottom: 2.5rem;
}

.service-features li {
  padding: 0.5rem 0;
  color: var(--text-muted);
  position: relative;
  padding-left: 1.5rem;
}

.service-features li::before {
  content: "♪";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.service-price {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2rem;
  padding: 1rem;
  background: rgba(146, 111, 52, 0.1);
  border-radius: 15px;
  text-align: center;
}

/* Contact Section */
.contact {
  padding: 10rem 5%;
  background: var(--darker);
  position: relative;
}

.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-primary);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin: 4rem 0;
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 3rem;
  border-radius: 25px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.contact-card:hover::before {
  transform: scaleX(1);
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
  background: var(--surface-light);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.contact-icon img {
  width: 100%;
  height: 100%;
}

.contact-card:hover .contact-icon {
  transform: scale(1.1);
}

.contact-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.contact-info {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info:hover {
  color: var(--primary);
}

/* Footer */
.footer {
  background: var(--darker);
  padding: 4rem 5% 2rem;
  text-align: center;
  border-top: 1px solid var(--border);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px;
}

.footer-logo img {
  width: 225px;
  height: 225px;
}

.footer-text {
  color: var(--text-muted);
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  margin-top: 3rem;
  color: var(--text-muted);
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
  .navbar {
    top: 1rem;
    left: 1rem;
    right: 1rem;
    transform: none;
    width: auto;
  }

  .navbar.scrolled {
    transform: none;
  }

  .hero {
    background-attachment: scroll;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero::before {
    animation: float 30s ease-in-out infinite;
  }

  .hero-content::before {
    border-radius: 20px;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .logo-intro-img {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 480px) {
  .services,
  .contact,
  .about {
    padding: 6rem 1rem;
  }

  .service-card,
  .contact-card {
    padding: 2rem;
  }

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

  .logo-intro-img {
    width: 150px;
    height: 150px;
  }

  .logo img {
    height: 90px;
    width: 90px;
  }

  .mobile-nav-close img {
    height: 65px;
    width: 65px;
  }

  .mobile-menu img {
    width: 65px;
    height: 65px;
  }

  .footer-logo img {
    height: 200px;
    width: 200px;
  }
}

/* Hover effects for interactive elements */
@media (hover: hover) {
  .service-card:hover .service-title {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
}

/* Calendly */
.btn.btn-primary,
.btn.btn-secondary {
  font-family: 'Cormorant Garamond', sans-serif; /* Or whatever font you want */
  font-weight: bolder;
}