/* Made by AlpinePages.com */

:root {
  --deep-night:    #0a0808;
  --navy:          #160e0e; /* Deep mahogany-black */
  --midnight:      #1a1010; /* Dark wine-charcoal */
  
  --slate:         #241818;
  --slate-light:   #332222;
  
  --accent:        #e0d5d5;
  --accent-warm:   #c97474; /* Muted holiday red */
  --accent-glow:   #2e0d0d; /* Subtle dark red glow */
  
  --red:           #b33030; /* Deep brick red */
  --red-soft:      #d64545;
  
  --white:         #fcf6f6;
  --text-main:     #e8e0e0;
  --text-muted:    #a38c8c; /* Warm, shadowed grey */
  --text-dim:      #6e5a5a;
  
  --card-bg:       #ffffff05;
  --card-border:   #6b2c2c33; /* Dark red-tinted border */
  
  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     22px;
  --transition:    0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --font-display: 'Poppins', sans-serif;
  --font-body:    'Poppins', sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background: var(--deep-night);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  background: none;
}

::selection {
  background: var(--accent);
  color: var(--deep-night);
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: var(--deep-night);
  box-shadow: 0 0 15px var(--accent-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.2);
}

.btn-full {
  width: 100%;
}

.btn-spinner {
  display: inline-flex;
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 2rem;
}

.nav.scrolled {
  background: rgba(6, 9, 19, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.75rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  letter-spacing: 0.01em;
}

.nav-logo-icon {
  font-size: 1.1rem;
  color: var(--accent);
  filter: drop-shadow(0 0 8px rgba(179, 48, 48, 0.65));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
}


.nav-cta {
  background: var(--accent) !important;
  color: var(--deep-night) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-weight: 600 !important;
}

.nav-cta::after {
  display: none !important;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 101;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

/* Drawer */
.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 75vw;
  max-width: 320px;
  height: 100dvh;
  background: var(--navy);
  z-index: 200;
  padding: 5rem 2rem 2rem;
  border-left: 1px solid var(--card-border);
}

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

.nav-drawer ul {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.nav-drawer a {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-main);
}


.nav-drawer-close {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  font-size: 1.8rem;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
}

.nav-overlay.visible {
  opacity: 1;
  pointer-events: all;
}

/* ============================================
   SECTION BASE
   ============================================ */
.section {
  padding: 6rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.section-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--slate);
  border-top: 1px solid rgba(255, 0, 0, 0.12);
  border-bottom: 1px solid rgba(255, 0, 0, 0.12);
  padding: 2rem 0;
  position: relative;
  z-index: 2;
}

.trust-bar-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.trust-item {
  text-align: center;
  flex: 1 1 120px;
}

.trust-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--accent);
  line-height: 1;
  text-shadow: 0 0 12px var(--accent-glow);
}

.trust-suffix {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent);
}

.trust-item p {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

.trust-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.08);
}

/* ============================================
   SERVICES
   ============================================ */
.services-section {
  background: var(--midnight);
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.25), transparent);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  /* No opacity/transform here — GSAP owns the entrance */
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 0%, rgba(0, 229, 255, 0.04), transparent 70%);
  pointer-events: none;
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
  color: var(--accent);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.6rem;
}

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

.service-price {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--card-border);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.service-price strong {
  color: var(--accent);
  font-size: 1.1rem;
}

.services-cta {
  text-align: center;
  margin-top: 3rem;
  /* No opacity/transform here — GSAP owns the entrance */
}

/* ============================================
   PORTFOLIO
   ============================================ */
.portfolio-section {
  background: var(--deep-night);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.portfolio-item {
  cursor: pointer;
}

.portfolio-img-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--slate);
}

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

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,9,19,0.9) 0%, rgba(6,9,19,0.1) 60%, transparent 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}


.portfolio-zoom {
  background: var(--accent);
  color: var(--deep-night);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 15px rgba(0, 229, 255, 0.25);
}

.portfolio-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.65rem;
  padding: 0 0.25rem;
}

/* Lightbox */
.lightbox-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(8px);
  z-index: 500;
  opacity: 0;
  pointer-events: none;
}

.lightbox-backdrop.visible {
  opacity: 1;
  pointer-events: all;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
}

.lightbox.visible {
  opacity: 1;
  pointer-events: all;
}

.lightbox-inner {
  max-width: 90vw;
  max-height: 90vh;
  text-align: center;
  transform: scale(0.92);
}


.lightbox-inner img {
  max-width: 90vw;
  max-height: 78vh;
  border-radius: var(--radius-md);
  object-fit: contain;
  background: var(--slate);
  min-width: 300px;
  min-height: 200px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.lightbox-caption {
  margin-top: 1rem;
  color: var(--text-main);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 1.5rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lightbox-close { top: 1.5rem; right: 1.5rem; font-size: 1.8rem; }
.lightbox-prev  { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 1.5rem; top: 50%; transform: translateY(-50%); }


/* ============================================
   ABOUT
   ============================================ */
.about-section {
  background: var(--navy);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-img-block {
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  background: var(--slate);
  overflow: hidden;
  border: 1px solid var(--card-border);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.about-img-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-badge {
  position: absolute;
  bottom: -1.2rem;
  right: -1.2rem;
  background: var(--accent);
  color: var(--deep-night);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  text-align: center;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.about-badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 700;
}

.about-badge-text {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.3;
  margin-top: 0.2rem;
}

.about-text .section-title {
  text-align: left;
  margin-bottom: 1.25rem;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-badge {
    bottom: -0.8rem;
    right: -0.8rem;
    padding: 1rem 1.25rem;
  }

  .about-badge-num {
    font-size: 1.8rem;
  }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-track-wrap {
  position: relative;
  cursor: grab;
  user-select: none;
  overflow: hidden;
  touch-action: pan-y;
}

.testimonials-track-wrap:active {
  cursor: grabbing;
}

.testimonials-track {
  display: flex;
  gap: 1.25rem;
  will-change: transform;
  width: max-content;
}

.testimonial-card {
  flex: 0 0 360px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 2rem;
}


.testimonial-stars {
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  text-shadow: 0 0 8px var(--accent-glow);
}

.testimonial-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
  min-height: 120px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--slate);
  border: 1.5px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.2);
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--white);
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ============================================
   FAQ
   ============================================ */
.faq-section {
  background: var(--deep-night);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--card-border);
}

.faq-q {
  width: 100%;
  text-align: left;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
}


.faq-icon {
  font-size: 1.4rem;
  line-height: 1;
  color: var(--accent);
  flex-shrink: 0;
}

.faq-q[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

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

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy);
  padding: 4rem 0 0;
  position: relative;
  overflow: hidden;
}

.footer-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.6), transparent);
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 1rem;
  max-width: 280px;
  line-height: 1.6;
}

.footer-logo {
  font-size: 1.25rem;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.95rem;
  color: var(--text-muted);
  display: inline-block;
}


.footer-contact p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.footer-contact a {
  color: var(--text-muted);
}


.footer-socials {
  display: flex;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-size: 0.85rem;
}


.footer-bottom {
  border-top: 1px solid var(--card-border);
  padding: 1.5rem 0;
  text-align: center;
}

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

.footer-bottom a {
  color: var(--text-dim);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .section { padding: 4.5rem 0; }
  .services-grid { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: 1fr; }
  .area-map-placeholder { aspect-ratio: 16/7; }
  .trust-divider { display: none; }
  .trust-bar-inner { gap: 1rem; }
  .testimonial-card p { min-height: 0; }
}

@media (max-width: 520px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
  }
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px; 
  text-decoration: none;
}

.nav-logo-img {
  height: 36px; 
  width: auto;  
  display: block;
  object-fit: contain;
}