/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --citrine:        #E4A010;
  --citrine-light:  #F5C842;
  --citrine-pale:   #FFF8E1;
  --amber-dark:     #B8860B;
  --charcoal:       #1A1A2E;
  --dark-surface:   #16213E;
  --slate:          #2C2C44;
  --text-light:     #F0F0F0;
  --text-muted:     #B0B0C0;
  --white:          #FFFFFF;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--charcoal);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 5%;
  background: rgba(26, 26, 46, 0.92);
  backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid rgba(228, 160, 16, 0.15);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo svg {
  height: 40px;
  width: auto;
}

.nav-logo span {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--citrine-light);
}

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

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--citrine);
  transition: width 0.3s;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--citrine-light);
  border-radius: 2px;
  transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 5% 4rem;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(228, 160, 16, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(245, 200, 66, 0.08) 0%, transparent 60%),
    var(--charcoal);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(228, 160, 16, 0.07), transparent 70%);
  border-radius: 50%;
}

.hero-logo {
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out;
}

.hero-logo svg {
  height: 120px;
  width: auto;
  filter: drop-shadow(0 4px 24px rgba(228, 160, 16, 0.25));
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--citrine-light), var(--citrine), var(--amber-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero .tagline {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--text-muted);
  max-width: 680px;
  font-weight: 300;
  letter-spacing: 0.5px;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-cta {
  margin-top: 2.5rem;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2.4rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--citrine), var(--amber-dark));
  color: var(--charcoal);
  box-shadow: 0 4px 20px rgba(228, 160, 16, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(228, 160, 16, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--citrine-light);
  border: 2px solid var(--citrine);
  margin-left: 1rem;
}

.btn-outline:hover {
  background: rgba(228, 160, 16, 0.1);
  transform: translateY(-2px);
}

/* ===== SECTION COMMON ===== */
section {
  padding: 5rem 5%;
}

.section-title {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-title h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.section-title .accent-line {
  display: block;
  width: 60px;
  height: 3px;
  background: var(--citrine);
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

/* ===== SERVICES ===== */
.services {
  background: var(--dark-surface);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--slate);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid rgba(228, 160, 16, 0.08);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(228, 160, 16, 0.3);
}

.service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(228, 160, 16, 0.1);
}

.service-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--citrine-light);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--citrine-light);
}

.service-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== ABOUT ===== */
.about {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.about p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.about p strong {
  color: var(--citrine-light);
}

/* ===== CONTACT PAGE HERO ===== */
.page-hero {
  padding: 9rem 5% 4rem;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(228, 160, 16, 0.1) 0%, transparent 60%),
    var(--charcoal);
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--citrine-light), var(--citrine));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero p {
  color: var(--text-muted);
  margin-top: 0.75rem;
  font-size: 1.1rem;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 5% 5rem;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.contact-card {
  background: var(--slate);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid rgba(228, 160, 16, 0.1);
  transition: border-color 0.3s;
}

.contact-card:hover {
  border-color: rgba(228, 160, 16, 0.35);
}

.contact-card .card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(228, 160, 16, 0.1);
}

.contact-card .card-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--citrine-light);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--citrine-light);
  margin-bottom: 0.75rem;
}

.contact-card p,
.contact-card a {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.contact-card a {
  transition: color 0.3s;
}

.contact-card a:hover {
  color: var(--citrine-light);
}

/* ===== MAP EMBED ===== */
.map-container {
  max-width: 900px;
  margin: 0 auto 4rem;
  padding: 0 5%;
}

.map-container iframe {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: 16px;
  filter: grayscale(0.3) brightness(0.85);
  transition: filter 0.3s;
}

.map-container iframe:hover {
  filter: grayscale(0) brightness(1);
}

/* ===== FOOTER ===== */
.footer {
  text-align: center;
  padding: 2.5rem 5%;
  border-top: 1px solid rgba(228, 160, 16, 0.1);
  background: var(--dark-surface);
}

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

.footer a {
  color: var(--citrine);
  transition: color 0.3s;
}

.footer a:hover {
  color: var(--citrine-light);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    flex-direction: column;
    background: var(--dark-surface);
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    transition: right 0.35s ease;
    border-left: 1px solid rgba(228, 160, 16, 0.15);
  }

  .nav-links.open {
    right: 0;
  }

  .hero-cta .btn-outline {
    margin-left: 0;
    margin-top: 1rem;
    display: block;
  }

  .hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
}
