/* ============================================
   Preconstruction.VIP - Static CSS
   ============================================ */

/* CSS Variables / Design Tokens */
:root {
  --color-navy-deep: hsl(220, 30%, 8%);
  --color-navy: hsl(220, 50%, 15%);
  --color-navy-light: hsl(220, 30%, 25%);
  --color-gold: hsl(40, 60%, 55%);
  --color-gold-light: hsl(40, 50%, 70%);
  --color-gold-dark: hsl(40, 70%, 40%);
  --color-cream: hsl(40, 20%, 95%);
  --color-cream-muted: hsl(40, 15%, 75%);
  --color-muted: hsl(220, 15%, 50%);
  --color-border: hsl(220, 20%, 20%);
  --color-card: hsl(220, 28%, 12%);
  
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --shadow-gold: 0 4px 30px hsla(40, 60%, 55%, 0.15);
  --shadow-card: 0 25px 60px hsla(220, 30%, 5%, 0.5);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-navy-deep);
  color: var(--color-cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

@media (min-width: 1024px) {
  .container {
    padding: 0 80px;
  }
}

/* Utility Classes */
.text-gold {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 50%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tagline {
  display: block;
  color: var(--color-gold);
  font-size: 0.75rem;
  font-family: var(--font-sans);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 16px;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--color-cream);
}

.section-description {
  color: var(--color-cream-muted);
  font-size: 1.125rem;
  font-weight: 300;
  max-width: 640px;
  margin: 0 auto;
  margin-top: 24px;
}

@media (min-width: 768px) {
  .section-header h2 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .section-header h2 {
    font-size: 3.75rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 40px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-gold {
  background: var(--color-gold);
  color: var(--color-navy-deep);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  background: var(--color-gold-light);
  box-shadow: 0 8px 40px hsla(40, 60%, 55%, 0.25);
}

.btn-outline-gold {
  background: transparent;
  color: var(--color-gold);
  border: 1px solid hsla(40, 60%, 55%, 0.5);
}

.btn-outline-gold:hover {
  background: hsla(40, 60%, 55%, 0.1);
}

.btn-lg {
  padding: 16px 48px;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

.fade-up {
  animation: fadeUp 0.8s ease-out forwards;
  opacity: 0;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 1s; }

/* ============================================
   Navigation
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 24px;
  background: linear-gradient(180deg, var(--color-navy-deep) 0%, transparent 100%);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: none;
  gap: 40px;
}

.nav-links a {
  color: var(--color-cream-muted);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

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

@media (min-width: 768px) {
    .navbar {
        padding: 0px 10px 0px 85px;
    }
}
  
  
@media (min-width: 768px) {
    @media (min-width: 768px) {
        .logo img {
            height: 270px;
            margin-top: -65px;
        }
    }
}
  
  .nav-links {
    display: flex;
  }
}

@media (min-width: 1024px) {
  .navbar {
    padding: 16px 50p;
  }
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, 
    hsla(220, 30%, 8%, 0.7) 0%, 
    hsla(220, 30%, 8%, 0.5) 50%, 
    var(--color-navy-deep) 100%
  );
}

.hero-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, hsla(220, 30%, 8%, 0.6) 0%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  padding: 120px 24px 80px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 32px;
}

.hero-description {
  color: var(--color-cream-muted);
  font-size: 1.125rem;
  font-weight: 300;
  max-width: 600px;
  margin-bottom: 48px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .hero-content {
    padding: 120px 48px 80px;
  }
  
  .hero-content h1 {
    font-size: 4.5rem;
  }
  
  .hero-description {
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .hero-content {
    padding: 120px 80px 80px;
  }
  
  .hero-content h1 {
    font-size: 6rem;
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scroll-indicator span {
  color: var(--color-cream-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--color-gold) 0%, transparent 100%);
  animation: bounce 2s ease-in-out infinite;
}

/* ============================================
   Services Section
   ============================================ */
.services {
  padding: 128px 0;
  background: var(--color-navy-deep);
  position: relative;
}

.services-grid {
  display: grid;
  gap: 32px;
}

.service-card {
  background: hsla(220, 28%, 12%, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid hsla(40, 60%, 55%, 0.1);
  padding: 40px;
  transition: all 0.5s ease;
}

.service-card:hover {
  border-color: hsla(40, 60%, 55%, 0.3);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: hsla(40, 60%, 55%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--color-gold);
  transition: background 0.3s ease;
}

.service-card:hover .service-icon {
  background: hsla(40, 60%, 55%, 0.2);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.service-card p {
  color: var(--color-cream-muted);
  font-weight: 300;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  
  .service-card h3 {
    font-size: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .services-grid {
    gap: 48px;
  }
  
  .service-card {
    padding: 48px;
  }
}

/* ============================================
   About Section
   ============================================ */
.about {
  padding: 128px 0;
  background: var(--color-card);
}

.about-grid {
  display: grid;
  gap: 64px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, hsla(220, 30%, 8%, 0.6) 0%, transparent 100%);
}

.about-decor-1 {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 128px;
  height: 128px;
  border: 1px solid hsla(40, 60%, 55%, 0.3);
}

.about-decor-2 {
  position: absolute;
  top: -24px;
  left: -24px;
  width: 96px;
  height: 96px;
  background: hsla(40, 60%, 55%, 0.1);
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 32px;
}

.about-content p {
  color: var(--color-cream-muted);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 24px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--color-border);
}

.stat-value {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--color-gold);
  margin-bottom: 4px;
}

.stat-label {
  color: var(--color-cream-muted);
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .about-content h2 {
    font-size: 3rem;
  }
  
  .stat-value {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 96px;
  }
}

/* ============================================
   Clients Section
   ============================================ */
.clients {
  padding: 128px 0;
  background: var(--color-navy-deep);
  position: relative;
  overflow: hidden;
}

.clients::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: radial-gradient(circle at 1px 1px, var(--color-gold) 1px, transparent 0);
  background-size: 60px 60px;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  position: relative;
  z-index: 10;
}

.client-card {
  background: hsla(220, 28%, 12%, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid hsla(40, 60%, 55%, 0.1);
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.client-card:hover {
  border-color: hsla(40, 60%, 55%, 0.3);
}

.client-icon {
  width: 48px;
  height: 48px;
  background: hsla(40, 60%, 55%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--color-gold);
  transition: background 0.3s ease;
}

.client-card:hover .client-icon {
  background: hsla(40, 60%, 55%, 0.2);
}

.client-card span {
  font-size: 0.875rem;
}

.clients-quote {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  text-align: center;
  max-width: 800px;
  margin: 80px auto 0;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .clients-quote {
    font-size: 1.75rem;
  }
}

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

/* ============================================
   Contact Section
   ============================================ */
.contact {
  padding: 128px 0;
  background: var(--color-card);
  position: relative;
  overflow: hidden;
}

.contact-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: hsla(40, 60%, 55%, 0.05);
  border-radius: 50%;
  filter: blur(100px);
}

.contact-content {
  position: relative;
  z-index: 10;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.contact-content h2 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: center;
  margin: 48px 0;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: color 0.3s ease;
}

.contact-item:hover {
  color: var(--color-gold);
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: hsla(40, 60%, 55%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  transition: background 0.3s ease;
}

.contact-item:hover .contact-icon {
  background: hsla(40, 60%, 55%, 0.2);
}

.disclaimer {
  margin-top: 48px;
  color: var(--color-muted);
  font-size: 0.875rem;
}

@media (min-width: 640px) {
  .contact-info {
    flex-direction: row;
    gap: 48px;
  }
}

@media (min-width: 768px) {
  .contact-content h2 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .contact-content h2 {
    font-size: 3.75rem;
  }
}

/* ============================================
   Footer
   ============================================ */
.footer {
  padding: 64px 0;
  background: var(--color-navy-deep);
  border-top: 1px solid var(--color-border);
}

.footer-grid {
  display: grid;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
    height: 250px;
    margin-top: -72PX;
}

.footer-brand p {
  color: var(--color-cream-muted);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-top: -48px;
}

.footer-nav h4,
.footer-contact h4 {
  color: var(--color-gold);
  font-size: 0.75rem;
  font-family: var(--font-sans);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 16px;
}

.footer-nav a,
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-cream-muted);
  font-size: 0.875rem;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}

.footer-bottom p {
  color: var(--color-muted);
  font-size: 0.875rem;
}

.footer-disclaimer {
  font-size: 0.75rem !important;
  max-width: 500px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
  
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  
  .footer-disclaimer {
    margin: 0;
    text-align: right;
  }
  
  /* Contact Form Styling */
.contact-form {
  max-width: 600px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group input, 
.form-group textarea {
  width: 100%;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05); /* Dark subtle background */
  border: 1px solid rgba(197, 168, 114, 0.3); /* Gold border with low opacity */
  color: #fff;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-group input:focus, 
.form-group textarea:focus {
  border-color: #c5a872; /* Solid gold on focus */
}

.form-group input::placeholder, 
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact-form .btn {
  cursor: pointer;
  border: none;
  justify-content: center;
}
}