/* ============================================
   ANCHOR RENOVATIONS AND REPAIRS
   Premium Dark Luxury Theme
   Midnight Blue + Mint + Gold
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: #050d1a;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

/* --- Section Base --- */
.section {
  padding: 100px 0;
  position: relative;
}

@media (min-width: 768px) {
  .section {
    padding: 120px 0;
  }
}

/* --- Section Header --- */
.section-header {
  margin-bottom: 0;
}

.section-eyebrow {
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
}

.section-subtitle {
  margin-top: 0;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled {
  background: rgba(5, 13, 26, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.3);
}

.nav-link {
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #c9a84c;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: #c9a84c !important;
}

/* Mobile Menu */
.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(5, 13, 26, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  animation: menuSlideDown 0.3s ease forwards;
}

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

.mobile-menu.hidden {
  animation: menuSlideUp 0.25s ease forwards;
}

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

.mobile-menu-link {
  display: block;
}

.menu-line {
  transition: all 0.3s ease;
}

#menu-toggle.active .menu-line:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

#menu-toggle.active .menu-line:nth-child(2) {
  opacity: 0;
}

#menu-toggle.active .menu-line:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
  width: 5px;
  margin-left: 0;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(5, 13, 26, 0.95) 0%,
    rgba(10, 22, 40, 0.88) 40%,
    rgba(10, 22, 40, 0.70) 70%,
    rgba(10, 22, 40, 0.85) 100%
  );
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5, 13, 26, 0.4) 0%,
    transparent 30%,
    transparent 60%,
    rgba(5, 13, 26, 0.8) 100%
  );
}

/* Decorative Elements */
.hero-deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-deco-1 {
  width: 400px;
  height: 400px;
  top: 10%;
  right: -5%;
  background: radial-gradient(circle, rgba(126, 207, 192, 0.06) 0%, transparent 70%);
  animation: floatDeco 8s ease-in-out infinite;
}

.hero-deco-2 {
  width: 250px;
  height: 250px;
  bottom: 20%;
  right: 15%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
  animation: floatDeco 6s ease-in-out infinite reverse;
}

.hero-deco-3 {
  width: 150px;
  height: 150px;
  top: 30%;
  left: 5%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.04) 0%, transparent 70%);
  animation: floatDeco 10s ease-in-out infinite;
}

@keyframes floatDeco {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -20px) scale(1.05); }
}

/* Hero Content */
.hero-eyebrow {
  opacity: 0;
  animation: heroFadeUp 0.8s ease forwards;
  animation-delay: 0.2s;
}

.hero-headline {
  opacity: 0;
  animation: heroFadeUp 0.8s ease forwards;
  animation-delay: 0.4s;
}

.hero-sub {
  opacity: 0;
  animation: heroFadeUp 0.8s ease forwards;
  animation-delay: 0.6s;
}

.hero-ctas {
  opacity: 0;
  animation: heroFadeUp 0.8s ease forwards;
  animation-delay: 0.8s;
}

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

/* Scroll Indicator */
.hero-scroll {
  opacity: 0;
  animation: heroFadeUp 0.8s ease forwards;
  animation-delay: 1.2s;
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(201, 168, 76, 0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.7); }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #c9a84c 0%, #dfc072 50%, #a8872e 100%);
  color: #050d1a;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 60px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.25);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #dfc072 0%, #c9a84c 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary span,
.btn-primary svg {
  position: relative;
  z-index: 1;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #ffffff;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 60px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary:hover {
  border-color: rgba(201, 168, 76, 0.5);
  color: #c9a84c;
  background: rgba(201, 168, 76, 0.05);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #ffffff;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 60px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-outline:hover {
  border-color: rgba(126, 207, 192, 0.5);
  color: #7ecfc0;
  background: rgba(126, 207, 192, 0.05);
  transform: translateY(-2px);
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  position: relative;
  z-index: 10;
}

.trust-item {
  transition: background 0.3s ease;
}

.trust-item:hover {
  background: rgba(255, 255, 255, 0.02);
}

/* ============================================
   SERVICES
   ============================================ */
.services-section {
  background: #050d1a;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-card-glow {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.service-card:nth-child(odd) .service-card-glow {
  background: radial-gradient(ellipse at top left, rgba(201, 168, 76, 0.08) 0%, transparent 60%);
}

.service-card:nth-child(even) .service-card-glow {
  background: radial-gradient(ellipse at top right, rgba(126, 207, 192, 0.08) 0%, transparent 60%);
}

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

.service-card-inner {
  background: linear-gradient(135deg, rgba(15, 31, 56, 0.8) 0%, rgba(10, 22, 40, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 32px;
  height: 100%;
  position: relative;
  z-index: 1;
  transition: border-color 0.3s ease;
}

.service-card:hover .service-card-inner {
  border-color: rgba(255, 255, 255, 0.1);
}

.service-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
}

.service-desc {
  min-height: 60px;
}

.service-link {
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.service-link:hover {
  opacity: 1;
}

/* ============================================
   ABOUT
   ============================================ */
.about-section {
  background: #0a1628;
}

.about-img-main {
  position: relative;
}

.about-img-main-frame {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  border: 1
