:root {
  --gold: #e0973a;
  --gold-light: #ffdd7a;
  --gold-dark: #b8621e;
  --dark: #14110f;
  --dark-2: #1a1512;
  --dark-3: #201a15;
  --cream: #f6f1e7;
  --muted: #b9b2a4;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--dark);
  color: var(--cream);
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  overflow-x: hidden;
}

h1, h2, h3, h4, .brand-font {
  font-family: 'Playfair Display', Georgia, serif;
}

a {
  text-decoration: none;
}

.text-gold {
  color: var(--gold) !important;
}

.bg-dark-2 {
  background-color: var(--dark-2);
}

.bg-dark-3 {
  background-color: var(--dark-3);
}

.section-padding {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.eyebrow {
  letter-spacing: .25em;
  text-transform: uppercase;
  font-size: .78rem;
  color: var(--gold);
  font-weight: 600;
}

.section-title {
  font-weight: 700;
  color: var(--cream);
}

.section-lead {
  color: var(--muted);
  max-width: 640px;
}

.divider-ornament {
  height: 24px;
  width: 200px;
  max-width: 100%;
}

/* Navbar */
.navbar-phibrod {
  background-color: rgba(20, 17, 15, 0.92);
  backdrop-filter: blur(6px);
  transition: all .3s ease;
  border-bottom: 1px solid rgba(224, 151, 58, 0.15);
}

.navbar-phibrod .navbar-brand {
  color: var(--cream);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: .05em;
}

.navbar-phibrod .navbar-brand img {
  width: 38px;
  height: auto;
  margin-right: 10px;
}

.navbar-phibrod .nav-link {
  color: var(--muted) !important;
  font-weight: 500;
  margin: 0 .6rem;
  position: relative;
}

.navbar-phibrod .nav-link:hover,
.navbar-phibrod .nav-link.active {
  color: var(--gold) !important;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #1a1512;
  font-weight: 600;
  border: none;
  padding: .65rem 1.6rem;
  border-radius: 2px;
  letter-spacing: .03em;
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn-gold:hover {
  color: #1a1512;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(224, 151, 58, .25);
}

.btn-outline-gold {
  border: 1px solid var(--gold);
  color: var(--gold);
  font-weight: 600;
  padding: .6rem 1.5rem;
  border-radius: 2px;
  background: transparent;
  transition: all .2s ease;
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: #1a1512;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #14110f url('../img/hero-pattern.svg') center center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,17,15,.4), rgba(20,17,15,.95));
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.15;
}

.hero .lead {
  color: var(--muted);
  font-size: 1.15rem;
  max-width: 560px;
}

.stack-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: 1px solid rgba(224, 151, 58,.35);
  color: var(--gold-light);
  padding: .35rem .9rem;
  border-radius: 30px;
  font-size: .85rem;
  margin: .2rem .3rem .2rem 0;
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  z-index: 2;
  font-size: 1.4rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 10px); }
}

/* About */
.about-card {
  background: var(--dark-3);
  border: 1px solid rgba(224, 151, 58,.15);
  border-radius: 8px;
  padding: 1.4rem;
  height: 100%;
}

.about-card .num {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 2.1rem;
  font-weight: 700;
}

.about-img-wrap {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(224, 151, 58,.2);
}

/* Services */
.service-card {
  background: var(--dark-2);
  border: 1px solid rgba(224, 151, 58,.12);
  border-radius: 10px;
  padding: 2rem 1.6rem;
  height: 100%;
  transition: transform .25s ease, border-color .25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(224, 151, 58,.5);
}

.service-card img {
  width: 56px;
  height: 56px;
  margin-bottom: 1.2rem;
}

.service-card h5 {
  color: var(--cream);
  font-weight: 600;
}

.service-card p {
  color: var(--muted);
  font-size: .95rem;
  margin-bottom: 0;
}

/* Industries */
.industry-card {
  background: var(--dark-3);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(224, 151, 58,.15);
  height: 100%;
  text-align: center;
  padding: 2.2rem 1.4rem;
  transition: transform .25s ease;
}

.industry-card:hover {
  transform: translateY(-6px);
}

.industry-card img {
  width: 100px;
  height: 100px;
  margin-bottom: 1rem;
}

.industry-card h5 {
  color: var(--cream);
  font-weight: 600;
}

.industry-card p {
  color: var(--muted);
  font-size: .92rem;
}

/* Why us */
.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.6rem;
}

.why-item .icon-circle {
  min-width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
}

.why-item h6 {
  color: var(--cream);
  font-weight: 600;
  margin-bottom: .2rem;
}

.why-item p {
  color: var(--muted);
  font-size: .92rem;
  margin-bottom: 0;
}

/* Contact */
.contact-section {
  background: var(--dark-2);
  border-top: 1px solid rgba(224, 151, 58,.15);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  margin-bottom: 1.4rem;
  color: var(--muted);
}

.contact-info-item a {
  color: var(--muted);
  transition: color .2s ease;
}

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

.contact-info-item .icon-circle {
  min-width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(224, 151, 58,.1);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.quick-contact {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
}

.quick-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: 1px solid rgba(224, 151, 58,.35);
  color: var(--gold-light);
  padding: .6rem 1.1rem;
  border-radius: 30px;
  font-size: .9rem;
  font-weight: 500;
  transition: all .2s ease;
}

.quick-contact-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #1a1512;
  transform: translateY(-2px);
}

.quick-contact-whatsapp:hover {
  background: #25D366;
  border-color: #25D366;
  color: #0d2b1a;
}

.quick-contact-viber:hover {
  background: #7360F2;
  border-color: #7360F2;
  color: #fff;
}

.map-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 11;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(224, 151, 58,.25);
  filter: grayscale(.15) contrast(1.05);
}

.map-directions-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: .9rem;
  color: var(--gold-light);
  font-size: .92rem;
  font-weight: 500;
  transition: color .2s ease;
}

.map-directions-link:hover {
  color: var(--gold);
}

/* Footer */
.footer-phibrod {
  background: var(--dark);
  border-top: 1px solid rgba(224, 151, 58,.15);
  padding: 2.5rem 0;
}

.footer-phibrod .social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(224, 151, 58,.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-right: .5rem;
  transition: all .2s ease;
}

.footer-phibrod .social-icon:hover {
  background: var(--gold);
  color: #1a1512;
}

.footer-phibrod p, .footer-phibrod a {
  color: var(--muted);
  font-size: .9rem;
}

.footer-phibrod a:hover {
  color: var(--gold);
}

@media (max-width: 767.98px) {
  .section-padding {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
  .hero {
    min-height: auto;
    padding-top: 7rem;
    padding-bottom: 4rem;
  }
}
