
:root {
  --color-bg:        #F7F4EE;  
  --color-dark:       #16181D;  
  --color-dark-2:     #1F2229;  
  --color-yellow:      #F4B93E;   
  --color-yellow-dark:  #D89A1E;   
  --color-text:        #2B2A28;   
  --color-text-light:  #FFFFFF;
  --color-muted:       #6B6B66;   
  --color-border:      #E5E0D4;

  --radius: 14px;
  --shadow: 0 10px 30px rgba(22, 24, 29, 0.08);

  --font-title: 'Poppins', 'Segoe UI', Arial, sans-serif;
  --font-body:  'Inter', 'Segoe UI', Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: var(--font-title);
  font-weight: 700;
  margin: 0;
}

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

a {
  text-decoration: none;
}

.site-header {
  background-color: var(--color-dark);
}

.navbar {
  padding: 14px 0;
}

.navbar-brand {
  color: var(--color-text-light) !important;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar-brand i {
  color: var(--color-yellow);
  font-size: 1.35rem;
}

.btn-call {
  background-color: var(--color-yellow);
  color: var(--color-dark) !important;
  font-weight: 600;
  border-radius: 50px;
  padding: 8px 18px;
  border: none;
}

.btn-call:hover {
  background-color: var(--color-yellow-dark);
}

.hero {
  background-color: var(--color-dark);
  background-image:
    radial-gradient(circle at 15% 20%, rgba(244, 185, 62, 0.10) 0%, transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(244, 185, 62, 0.08) 0%, transparent 45%);
  color: var(--color-text-light);
  padding: 48px 16px 64px;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background-color: rgba(244, 185, 62, 0.15);
  color: var(--color-yellow);
  border: 1px solid rgba(244, 185, 62, 0.4);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 12px;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
}


.section-info {
  padding: 48px 16px;
}

.info-card {
  background-color: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 22px;
}

.section-info h2,
.section-contact h2,
.section-map h2 {
  font-size: 1.5rem;
  margin-bottom: 14px;
  position: relative;
  padding-bottom: 10px;
}

.section-info h2::after,
.section-contact h2::after,
.section-map h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 46px;
  height: 4px;
  background-color: var(--color-yellow);
  border-radius: 4px;
}

.section-contact h2::after,
.section-map h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.info-card p {
  color: var(--color-muted);
  margin-bottom: 22px;
}

.info-details {
  --bs-gutter-y: 18px;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background-color: var(--color-bg);
  border-radius: 10px;
  padding: 14px;
  height: 100%;
}

.detail-item i {
  color: var(--color-yellow-dark);
  font-size: 1.3rem;
  margin-top: 2px;
}

.detail-label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-muted);
  margin-bottom: 3px;
}

.detail-value {
  display: block;
  font-weight: 600;
  color: var(--color-text);
  font-size: 0.92rem;
}


.section-contact {
  padding: 48px 16px;
  text-align: center;
  background-color: var(--color-dark-2);
  color: var(--color-text-light);
}

.section-contact h2 {
  color: var(--color-text-light);
}

.contact-sub {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 28px;
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 420px;
  margin: 0 auto;
}

.btn-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-contact:active {
  transform: scale(0.98);
}

.btn-email {
  background-color: transparent;
  color: var(--color-text-light) !important;
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.btn-email:hover {
  border-color: var(--color-yellow);
  color: var(--color-yellow) !important;
}

.btn-phone {
  background-color: var(--color-yellow);
  color: var(--color-dark) !important;
  box-shadow: 0 8px 20px rgba(244, 185, 62, 0.25);
}

.btn-phone:hover {
  background-color: var(--color-yellow-dark);
}

.section-map {
  padding: 48px 16px;
}

.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
}

.map-placeholder {
  background-color: #EDE9DD;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--color-muted);
  text-align: center;
  padding: 20px;
}

.map-placeholder i {
  font-size: 2.4rem;
  color: var(--color-yellow-dark);
}

.map-wrapper iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

.site-footer {
  background-color: var(--color-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 40px 16px 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  text-align: center;
}

.footer-col h3 {
  color: var(--color-text-light);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}

.footer-col h3 i {
  color: var(--color-yellow);
}

.footer-col h4 {
  color: var(--color-text-light);
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.footer-col p {
  margin: 4px 0;
  font-size: 0.9rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.75);
}

.footer-col a:hover {
  color: var(--color-yellow);
}

.site-footer hr {
  border-color: rgba(255, 255, 255, 0.12);
  margin: 24px 0 16px;
}

.footer-bottom {
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.fab-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fab-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.fab-btn:active {
  transform: scale(0.92);
}

.fab-phone {
  background-color: var(--color-yellow-dark);
}

.fab-phone:hover {
  background-color: var(--color-yellow);
  transform: translateY(-2px);
}

.fab-email {
  background-color: var(--color-dark);
}

.fab-email:hover {
  background-color: var(--color-dark-2);
  transform: translateY(-2px);
}

.section-gallery {
  padding: 48px 16px;
}

.gallery-sub {
  color: var(--color-muted);
  margin-bottom: 24px;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(22, 24, 29, 0.92);
  z-index: 1050;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-overlay img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
}
.section-services {
  padding: 48px 16px;
  background-color: #FFFFFF;
}

.services-sub {
  color: var(--color-muted);
  margin-bottom: 30px;
}

.service-card {
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 30px 24px;
  height: 100%;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: rgba(244, 185, 62, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.service-icon i {
  font-size: 1.7rem;
  color: var(--color-yellow-dark);
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

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

@media (min-width: 768px) {
  .hero {
    padding: 64px 16px 84px;
  }

  .hero h1 {
    font-size: 2.6rem;
  }

  .hero-sub {
    font-size: 1.1rem;
  }

  .contact-buttons {
    flex-direction: row;
    max-width: 640px;
  }

  .btn-contact {
    flex: 1;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    text-align: left;
  }

  .footer-col h3,
  .footer-col h4 {
    justify-content: flex-start;
  }
  .fab-container {
    bottom: 16px;
    right: 16px;
  }
  .fab-btn {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  .gallery-item {
    aspect-ratio: 4 / 3;
  }
}

@media (min-width: 992px) {
  .hero h1 {
    font-size: 3.2rem;
  }

  .info-card {
    padding: 40px 44px;
  }

  .section-info h2,
  .section-contact h2,
  .section-map h2 {
    font-size: 1.8rem;
  }

  .map-wrapper iframe {
    height: 420px;
  }
  .service-card {
    padding: 36px 28px;
  }
}