/* ==========================================================================
   DESIGN SYSTEM - Zinguería Zarza
   ==========================================================================
   Table of Contents:
   1. Design Tokens (CSS Custom Properties)
   2. Reset & Base
   3. Typography
   4. Layout & Spacing
   5. Navbar
   6. Hero
   7. Metrics
   8. Services
   9. About + Gallery
   10. CTA Banner + Buttons
   11. FAQs
   12. Quote
   13. Reviews
   14. Banner
   15. Contact / Form
   16. Footer
   17. Utilities
   18. Responsive Overrides
   ========================================================================== */

/* ==========================================================================
   1. DESIGN TOKENS
   ========================================================================== */
:root {
  /* Colors - Brand */
  --color-accent: #c8a96e;
  --color-accent-hover: #b8964e;
  --color-navbar: rgba(0, 0, 0, 1);

  /* Colors - Neutrals */
  --color-black: #111;
  --color-white: #fff;
  --color-bg-dark: #0a0a0a;
  --color-bg-dark-2: #111;
  --color-bg-dark-3: #1a1a1a;
  --color-bg-light: #f7f7f7;
  --color-bg-light-2: #eaeaea;
  --color-text-primary: #222;
  --color-text-secondary: #666;
  --color-text-muted: #aaa;
  --color-text-icon: #888;
  --color-border: #333;
  --color-border-light: #555;
  --color-border-input: #ccc;

  /* Colors - Semantic */
  --color-success: #198754;
  --color-review: #007bff;

  /* Typography */
  --font-primary: "Open Sans", sans-serif;
  --font-display: "PlateGtFourMtStdBd", serif;

  /* Font Sizes */
  --text-xs: 12px;
  --text-sm: 13px;
  --text-base: 15px;
  --text-md: 16px;
  --text-lg: 17px;
  --text-xl: 18px;
  --text-2xl: 22px;
  --text-3xl: 24px;
  --text-4xl: 28px;
  --text-5xl: 32px;
  --text-6xl: 34px;
  --text-7xl: 36px;
  --text-8xl: 42px;
  --text-hero: 72px;
  --text-hero-md: 44px;
  --text-hero-sm: 32px;

  /* Font Weights */
  --fw-regular: 400;
  --fw-semibold: 600;
  --fw-bold: 700;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 10px;
  --space-lg: 15px;
  --space-xl: 20px;
  --space-2xl: 30px;
  --space-3xl: 40px;
  --space-4xl: 50px;
  --space-5xl: 60px;
  --space-6xl: 80px;
  --space-7xl: 100px;
  --space-8xl: 120px;

  /* Section Padding */
  --section-padding-sm: 60px 0;
  --section-padding-md: 80px 0;
  --section-padding-lg: 100px 0;
  --section-padding-xl: 100px 0;
  --section-padding-x: 10%;
  --section-padding-x-mobile: 20px;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 25px;
  --radius-full: 50%;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.5);
  --shadow-btn: 0 10px 30px rgba(0, 0, 0, 0.3);
  --shadow-btn-pressed: 0 4px 12px rgba(0, 0, 0, 0.3);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.4s ease;
  --transition-gallery: 0.5s ease-in-out;

  /* Z-Index */
  --z-navbar: 1000;
  --z-overlay: 1;
  --z-gallery-nav: 2;
  --z-reviews-nav: 100;

  /* Breakpoints (for reference, used in @media) */
  /* --bp-mobile: 576px */
  /* --bp-tablet: 768px */
  /* --bp-desktop-sm: 992px */
  /* --bp-desktop: 1024px */
}

/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */
* {
  font-family: var(--font-primary);
}

/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */
h1 {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: var(--fw-bold);
  color: var(--color-white);
  line-height: 1.1;
}

h2 {
  font-size: var(--text-5xl);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  line-height: 1.2;
}

h3 {
  font-size: var(--text-2xl);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  line-height: 1.3;
}

h4 {
  font-size: var(--text-md);
  font-weight: var(--fw-semibold);
  color: var(--color-white);
  line-height: 1.4;
}

p {
  font-size: var(--text-md);
  line-height: 1.7;
}

/* ==========================================================================
   4. LAYOUT & SPACING
   ========================================================================== */
.section-dark {
  background: var(--color-bg-dark-2);
}

.section-light {
  background: var(--color-bg-light);
}

/* ==========================================================================
   5. NAVBAR
   ========================================================================== */
nav {
  min-height: 100px;
}

.navbar {
  background-color: var(--color-navbar, rgba(0, 0, 0, 1));
}

.navbar li {
  font-size: var(--text-md);
  font-weight: var(--fw-semibold);
}

.navbar-collapse .navbar-nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: auto;
}

.navbar-collapse .cta {
  display: flex;
  justify-content: center;
  text-decoration: none;
  margin: var(--space-2xl);
}

.navbar-collapse .cta .btn-cta {
  padding: 8px 24px;
  font-size: var(--text-sm);
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: var(--z-overlay);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  color: var(--color-white);
  text-decoration: none;
}

@media (max-width: 992px) {
  .navbar-collapse .navbar-nav .nav-item {
    margin: auto;
  }
  .navbar-collapse form {
    display: flex;
    justify-content: center;
    padding: var(--space-md) 0;
  }
}

/* ==========================================================================
   6. HERO
   ========================================================================== */
#hero {
  background-image:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0.2) 80%,
      rgba(0, 0, 0, 0.2) 100%
    ),
    url("../images/cover.jpeg");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 0 var(--section-padding-x);
}

.hero-content {
  margin: var(--space-7xl) 0;
  min-height: 800px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-content h1 {
  font-size: var(--text-hero);
  color: var(--color-white);
  margin-bottom: var(--space-2xl);
  text-align: center;
}

.lead {
  font-weight: var(--fw-regular);
}

.hero-content h2 {
  font-size: var(--text-3xl);
  color: var(--color-white);
  margin-bottom: var(--space-2xl);
  text-align: center;
}

.hero-content p {
  font-size: var(--text-md);
  color: var(--color-white);
  text-align: center;
}

/* ==========================================================================
   7. METRICS
   ========================================================================== */
#metrics {
  background: var(--color-bg-dark);
  padding: var(--space-5xl) 0;
  border-bottom: 1px solid var(--color-border);
}

.metrics-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.metric-item {
  text-align: center;
  flex: 1;
  padding: var(--space-xl) var(--space-3xl);
}

.metric-number {
  display: block;
  font-size: 56px;
  font-weight: var(--fw-bold);
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: var(--space-md);
  font-family: var(--font-primary);
}

.metric-label {
  display: block;
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  color: var(--color-text-secondary);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.metric-divider {
  width: 1px;
  height: 70px;
  background: linear-gradient(to bottom, transparent, var(--color-border), transparent);
}

/* ==========================================================================
   8. SERVICES
   ========================================================================== */
#services {
  padding: 100px var(--section-padding-x);
}

#services h2 {
  text-align: center;
  padding: 0 0 var(--space-4xl);
}

#services .card {
  border: none;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-slow);
  background: var(--color-white);
}

#services .card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

#services .card-img-top {
  object-fit: cover;
  height: 250px;
  transition: transform 0.5s ease;
}

#services .card:hover .card-img-top {
  transform: scale(1.05);
}

#services .card-body {
  padding: 50px 25px;
  text-align: center;
}

#services .card-title {
  font-size: var(--text-2xl);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
}

#services .card-text {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ==========================================================================
   9. ABOUT + GALLERY
   ========================================================================== */
#about {
  background: var(--color-bg-dark-2);
  padding: 100px 0;
  margin: 0;
}

#about .container {
  max-width: 1140px;
}

#about h2 {
  font-family: var(--font-primary);
  margin-bottom: 35px;
  color: var(--color-white);
  letter-spacing: 0.5px;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-list li {
  font-size: var(--text-lg);
  line-height: 2;
  margin-bottom: var(--space-lg);
  padding-left: 28px;
  position: relative;
  color: var(--color-text-muted);
}

.about-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: var(--fw-bold);
  font-size: var(--text-base);
}

.about-gallery {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-gallery .item img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-md);
}

.about-gallery .slick-prev,
.about-gallery .slick-next {
  z-index: var(--z-gallery-nav);
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: var(--radius-full);
  transition: background var(--transition-base);
}

.about-gallery .slick-prev:hover,
.about-gallery .slick-next:hover {
  background: rgba(0, 0, 0, 0.8);
}

.about-gallery .slick-prev {
  left: var(--space-lg);
}

.about-gallery .slick-next {
  right: var(--space-lg);
}

.about-gallery .slick-prev:before,
.about-gallery .slick-next:before {
  color: var(--color-white);
  font-size: var(--text-xl);
  opacity: 1;
}

.about-gallery .slick-dots {
  bottom: var(--space-lg);
}

.about-gallery .slick-dots li button:before {
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
}

.about-gallery .slick-dots li.slick-active button:before {
  color: var(--color-accent);
}

/* Gallery items */
.item {
  transition: var(--transition-gallery);
}

.item:hover {
  filter: brightness(80%);
}

.item img {
  object-fit: cover;
}

/* ==========================================================================
   10. CTA BANNER + BUTTONS
   ========================================================================== */
#cta-banner {
  position: relative;
  background-image: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.8) 0%,
      rgba(0, 0, 0, 0.6) 100%
    ),
    url("../images/WhatsApp Image 2026-02-03 at 17.02.27 (2).jpeg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: var(--section-padding-xl);
  text-align: center;
  overflow: hidden;
}

#cta-banner .container {
  position: relative;
  z-index: var(--z-overlay);
}

#cta-banner h2 {
  font-size: var(--text-8xl);
  color: var(--color-white);
  margin-bottom: var(--space-xl);
  letter-spacing: 0.5px;
}

#cta-banner p {
  font-size: var(--text-xl);
  color: var(--color-text-muted);
  margin-bottom: var(--space-3xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

/* Base CTA button */
.btn-cta {
  --btn-bg: transparent;
  --btn-color: var(--color-white);
  --btn-border-color: rgba(255, 255, 255, 0.5);
  --btn-bg-hover: var(--color-white);
  --btn-color-hover: var(--color-black);
  --btn-border-hover: var(--color-white);
  display: inline-block;
  padding: 16px 40px;
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  line-height: 1;
  letter-spacing: 2px;
  border: 2px solid var(--btn-border-color);
  border-radius: var(--radius-sm);
  background: var(--btn-bg);
  color: var(--btn-color);
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-base);
  -webkit-user-select: none;
  user-select: none;
}

.btn-cta:hover {
  background: var(--btn-bg-hover);
  color: var(--btn-color-hover);
  border-color: var(--btn-border-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-btn);
}

.btn-cta:focus-visible {
  outline: 3px solid var(--color-white);
  outline-offset: 3px;
}

.btn-cta:active {
  transform: translateY(0);
  box-shadow: var(--shadow-btn-pressed);
}

.btn-cta:disabled,
.btn-cta[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Primary - filled gold */
.btn-cta-primary {
  --btn-bg: var(--color-accent);
  --btn-color: var(--color-black);
  --btn-border-color: var(--color-accent);
  --btn-bg-hover: var(--color-white);
  --btn-color-hover: var(--color-black);
  --btn-border-hover: var(--color-white);
}

/* Secondary - outlined white */
.btn-cta-secondary {
  --btn-bg: transparent;
  --btn-color: var(--color-white);
  --btn-border-color: rgba(255, 255, 255, 0.5);
  --btn-bg-hover: var(--color-white);
  --btn-color-hover: var(--color-black);
  --btn-border-hover: var(--color-white);
}


/* ==========================================================================
   11. FAQs
   ========================================================================== */
#faqs {
  padding: 100px var(--section-padding-x);
  margin: 0;
}

#faqs h2 {
  text-align: center;
  margin: var(--space-2xl) 0;
}

#faqs h3 {
  font-size: var(--text-3xl);
  font-weight: var(--fw-semibold);
}

/* Accordion - Corporate Colors */
#faqs .accordion-item {
  border: 1px solid var(--color-border-light);
  margin-bottom: var(--space-sm);
}

#faqs .accordion-button {
  color: var(--color-text-primary);
  background-color: var(--color-white);
  font-weight: var(--fw-semibold);
  padding: var(--space-lg) var(--space-xl);
  transition: all var(--transition-base);
}

#faqs .accordion-button:not(.collapsed) {
  color: var(--color-accent);
  background-color: var(--color-bg-light);
  box-shadow: none;
}

#faqs .accordion-button::after {
  filter: invert(40%);
  transition: filter var(--transition-base);
}

#faqs .accordion-button:not(.collapsed)::after {
  filter: invert(60%) sepia(40%) saturate(500%) hue-rotate(10deg);
}

#faqs .accordion-button:hover {
  background-color: var(--color-bg-light);
}

#faqs .accordion-button:focus {
  box-shadow: none;
  border-color: var(--color-accent);
}

#faqs .accordion-body {
  padding: var(--space-xl) var(--space-2xl);
  color: var(--color-text-secondary);
  line-height: 1.8;
}

/* ==========================================================================
   12. QUOTE
   ========================================================================== */
#quote {
  padding: 0;
  margin: 0;
  text-align: center;
}

#quote h2 {
  margin: var(--space-2xl) 0;
}

/* ==========================================================================
   13. REVIEWS
   ========================================================================== */
#reviews {
  padding: 0 var(--section-padding-x);
  margin: 0;
}

.review-slide .card {
  display: flex;
  flex-direction: row;
  justify-content: center;
  min-height: 320px;
  border: none;
  box-shadow: var(--shadow-sm);
}

.review-slide .card-body {
  max-width: 420px;
  margin: var(--space-2xl) 0;
}

.review-slide .card-body img {
  display: block;
  margin: auto;
}

.reviews-slider .slick-prev,
.reviews-slider .slick-next {
  width: 40px;
  height: 40px;
  z-index: var(--z-reviews-nav);
}

.reviews-slider .slick-prev {
  left: -50px;
}

.reviews-slider .slick-next {
  right: -50px;
}

.reviews-slider .slick-prev:before,
.reviews-slider .slick-next:before {
  font-size: 40px;
  color: var(--color-review);
}

.reviews-slider .slick-dots {
  bottom: -40px;
}

.reviews-slider .slick-dots li button:before {
  font-size: var(--text-xs);
  color: var(--color-review);
}

/* ==========================================================================
   14. BANNER
   ========================================================================== */
#banner {
  padding: 0;
  margin: 0;
  text-align: center;
}

#banner .col-lg-6 {
  margin: var(--space-2xl) 0;
}

/* ==========================================================================
   15. CONTACT / FORM
   ========================================================================== */
#contact {
  margin: 0;
  padding: 0;
}

#contact .container-fluid {
  padding: 0;
}

#contact .row {
  margin: 0;
}

#contact .col-lg-6 {
  margin: 0 !important;
  padding: 0 !important;
}

@media (min-width: 992px) {
  #contact .col-lg-6 {
    max-width: 50% !important;
    flex: 0 0 50% !important;
  }
}

@media (max-width: 991.98px) {
  #contact .col-lg-6 {
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
}

.btn-submit {
  background-color: var(--color-accent);
  color: var(--color-black);
  font-weight: var(--fw-bold);
  width: 100%;
  height: 50px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  font-size: var(--text-md);
  margin-top: var(--space-md);
}

.btn-submit:hover {
  background-color: var(--color-accent-hover);
}

.form-container {
  background-image:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0.2) 80%,
      rgba(0, 0, 0, 0.2) 100%
    ),
    url("../images/cover.jpeg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.form-container h2 {
  font-size: var(--text-7xl);
  font-weight: var(--fw-semibold);
  color: var(--color-white);
  text-align: center;
}

.form-container h3 {
  font-size: var(--text-3xl);
  font-weight: var(--fw-semibold);
  color: var(--color-white);
  text-align: center;
}

.form-container p {
  font-size: var(--text-md);
  font-weight: var(--fw-regular);
  color: var(--color-white);
  text-align: center;
}

.form-container h4 {
  font-size: var(--text-md);
  font-weight: var(--fw-semibold);
  color: var(--color-white);
  text-align: center;
}

.form-container form {
  max-width: 420px;
  margin: var(--space-2xl);
}

.form-container form .field {
  width: 100%;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.85);
  font-size: var(--text-md);
  font-weight: var(--fw-semibold);
  padding: var(--space-md) var(--space-xl);
  margin: var(--space-xs) 0;
  border: 1px solid var(--color-border-input);
  outline: none;
  transition: var(--transition-fast);
}

.form-container form .field:hover {
  background-color: var(--color-white);
}

.form-container .radio-inputs {
  padding: var(--space-xl) 0;
}

.form-container .radio-inputs input[type="radio"] {
  height: 18px;
  width: 18px;
  margin: 0 var(--space-lg) 0 0;
}

.form-container .radio-inputs label {
  font-size: var(--text-3xl);
  color: var(--color-white);
  margin: 0 var(--space-lg) 0 0;
}

.form-container textarea {
  min-height: 150px;
  resize: none;
}

/* ==========================================================================
   16. FOOTER
   ========================================================================== */
.site-footer {
  background: var(--color-bg-dark-3);
  color: var(--color-text-muted);
  padding: var(--space-5xl) 0 0;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: var(--space-3xl);
  padding-bottom: var(--space-3xl);
}

.footer-logo {
  width: 140px;
  margin-bottom: var(--space-lg);
  filter: brightness(0) invert(1);
}

.footer-about p {
  font-size: var(--text-sm);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  color: var(--color-text-muted);
}

.footer-social {
  display: flex;
  gap: var(--space-lg);
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border-light);
  color: var(--color-text-muted);
  text-decoration: none;
  transition: all var(--transition-base);
}

.footer-social a:hover {
  background: var(--color-white);
  color: var(--color-bg-dark-3);
  border-color: var(--color-white);
}

.footer-col h4 {
  color: var(--color-white);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 2px;
  margin-bottom: var(--space-xl);
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: var(--space-md);
}

.footer-links a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: var(--text-base);
  transition: color var(--transition-base);
}

.footer-links a:hover {
  color: var(--color-white);
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  margin-bottom: var(--space-lg);
  font-size: var(--text-base);
  color: var(--color-text-muted);
}

.footer-contact i {
  width: 20px;
  margin-right: var(--space-md);
  color: var(--color-text-icon);
}

.footer-contact a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition-base);
}

.footer-contact a:hover {
  color: var(--color-white);
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding: var(--space-xl) 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-xs);
  color: var(--color-text-secondary);
}

.footer-bottom a {
  color: var(--color-text-muted);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--color-white);
}

.scroll-top {
  position: absolute;
  right: var(--space-2xl);
  bottom: 70px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--color-border);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: var(--text-md);
  transition: background var(--transition-base);
}

.scroll-top:hover {
  background: var(--color-border-light);
  color: var(--color-white);
}

/* ==========================================================================
   17. UTILITIES
   ========================================================================== */

/* ==========================================================================
   18. RESPONSIVE OVERRIDES
   ========================================================================== */

/* Desktop small / Tablet landscape (max 1024px) */
@media screen and (max-width: 1024px) {
  #hero {
    padding: 0 var(--section-padding-x-mobile);
  }
  #services {
    padding: 100px var(--section-padding-x-mobile);
  }
  #about {
    padding: 100px 0;
  }
  #faqs {
    padding: 100px var(--section-padding-x-mobile);
  }
  #reviews {
    padding: 0 var(--section-padding-x-mobile);
  }
  #banner {
    padding: 0 var(--section-padding-x-mobile);
  }
}

/* Tablet (max 992px) */
@media (max-width: 992px) {
  .navbar-collapse .navbar-nav .nav-item {
    margin: auto;
  }
  .navbar-collapse form {
    display: flex;
    justify-content: center;
    padding: var(--space-md) 0;
  }
}

/* h1 responsive */
@media (max-width: 991.98px) {
  h1,
  .hero-content h1 {
    font-size: var(--text-hero-md) !important;
  }
}

/* Tablet portrait (max 768px) */
@media screen and (max-width: 768px) {
  /* Metrics */
  .metrics-grid {
    flex-direction: column;
    gap: var(--space-md);
  }
  .metric-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-border), transparent);
  }
  .metric-number {
    font-size: 40px;
  }
  .metric-item {
    padding: var(--space-lg) var(--space-xl);
  }

  /* About */
  #about {
    padding: var(--space-5xl) 0;
  }
  #about h2 {
    font-size: var(--text-4xl);
    text-align: center;
  }
  .about-gallery .item img {
    height: 300px;
  }

  /* CTA */
  #cta-banner {
    padding: var(--space-6xl) 0;
  }
  #cta-banner h2 {
    font-size: var(--text-4xl);
  }
  #cta-banner p {
    font-size: var(--text-md);
  }
  .btn-cta {
    padding: 14px 30px;
    font-size: var(--text-xs);
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-social {
    justify-content: center;
  }
  .footer-bottom .container {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
  .scroll-top {
    right: var(--space-lg);
    bottom: 80px;
  }

  /* Reviews nav */
  .reviews-slider .slick-prev {
    left: 0;
  }
  .reviews-slider .slick-next {
    right: 0;
  }
}

/* h1 mobile */
@media (max-width: 767.98px) {
  h1,
  .hero-content h1 {
    font-size: 36px !important;
  }
  #services {
    padding: 100px var(--section-padding-x-mobile);
  }
  #services .row {
    display: flex;
    flex-direction: column;
  }
  #about {
    padding: 100px 0;
  }
  #faqs {
    padding: 100px var(--section-padding-x-mobile);
  }
  #cta-banner {
    padding: 100px 0;
  }
  #hero,
  #cta-banner,
  .form-container {
    background-attachment: scroll !important;
  }
  #hero .hero-content {
    min-height: 500px;
  }
  #hero {
    background-position: top center;
    object-fit: cover;
  }
}

/* Mobile small (max 576px) */
@media screen and (max-width: 576px) {
  #faqs {
    padding: 50px var(--section-padding-x-mobile);
  }
}

/* ==========================================================================
   FONT FACE
   ========================================================================== */
@font-face {
  font-family: "PlateGtFourMtStdBd";
  src: url("../fonts/PlateGtFourMtStdBd.otf") format("opentype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

/* ==========================================================================
   CLOUDFLARE TURNSTILE
   ========================================================================== */
.cf-turnstile {
  margin: var(--space-xl) 0;
  display: flex;
  justify-content: center;
}
