/* ===================== */
/* RESET */
/* ===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===================== */
/* BRAND COLORS */
/* ===================== */
:root {
  --primary: #e30613;   /* brighter brand red */
  --primary-dark: #b8040f;
  --accent: #ffb300;    /* golden yellow */
  --accent-light: #ffd54f;

  --cream: #fff7f2;
  --dark: #1f2933;
  --gray: #6b7280;
}

/* ===================== */
/* GLOBAL */
/* ===================== */

body {
  margin: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--dark);
  line-height: 1.6;
}


h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

section {
  padding: 50px 20px;
}

/* ===================== */
/* NAVIGATION */
/* ===================== */
.site-header {
  background: #fff;
  border-bottom: 2px solid var(--primary);
  position: sticky;
  top: 0;
  z-index: 1000;
  margin: 0;
}

.hero-slider {
  padding: 0 
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1s ease-in-out, transform 6s ease;
}

.slide.active {
  opacity: 1;
  transform: scale(1.05);
}



.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 70px;
}

.nav-menu {
  display: flex;
  align-items: center;
  margin-left: 25px;
  gap: 25px;
}

/* NAVBAR BASE */
.nav-menu a {
  margin-left: 25px;
  text-decoration: none;
  color: var(--primary);
  font-weight: 600;
  transition: 0.3s;
}

.nav-menu a:hover {
  color: var(--accent);
  text-decoration: underline;
}

/* NAVBAR BASE */
/* .nav-menu {
  display: flex;
  align-items: center;
  gap: 25px;
} */

/* NAV LINKS */
.nav-menu a,
.dropbtn {
  position: relative;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  padding: 5px 0;
  transition: 0.3s;
}

/* UNDERLINE ANIMATION */
.nav-menu a::after,
.dropbtn::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -3px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.dropbtn:hover::after {
  width: 100%;
}

/* ===================== */
/* DROPDOWN */
/* ===================== */
.dropdown {
  position: relative;
}

.dropbtn {
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: #fff;
  min-width: 180px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  border-radius: 8px;
  overflow: hidden;
}

.dropdown-content a {
  display: block;
  padding: 12px;
  color: #111;
}

.dropdown-content a:hover {
  background: #f3f4f6;
}

.dropdown:hover .dropdown-content,
.dropdown.open .dropdown-content {
  display: block;
}

.image-grid-section {
  padding: 30px 20px;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 1100px;
  margin: auto;
}

.image-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  background: #fff;
  padding: 10px;
  margin-top: 30px;
}


section {
  padding: 80px 20px;
}

h2 {
  font-size: 3rem;
  letter-spacing: -1px;
}

h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.cta-btn {
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.serve-card:hover {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  transform: translateY(-6px);
}

.hero-overlay h1 {
  font-size: 3rem;
}

.hero-overlay h1,
.hero-overlay p,
.cta-btn {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease forwards;
}

.hero-overlay p {
  animation-delay: 0.3s;
}

.cta-btn {
  animation-delay: 0.6s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .logo img {
    height: 50px;
  }

  .hero-overlay h1 {
    font-size: 2rem;
  }
}

html {
  scroll-behavior: smooth;
}

/* ===================== */
/* HERO */
/* ===================== */
.hero-image {
  height: 75vh;
  background: url("images/hero.png") center/cover no-repeat;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0.6),
    rgba(227,6,19,0.3)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.hero-overlay h1 {
  font-size: 2.8rem;
  color: #fff;
}

.hero-overlay p {
  color: #eee;
  margin-top: 10px;
}

.hero-slider {
  position: relative;
  height: 75vh;
  overflow: hidden;
  margin: 0;
}
.hero-slider {
  padding: 0;
}

/* ===================== */
/* BUTTON */
/* ===================== */
.cta-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.cta-btn:hover {
  background: var(--primary-dark);
}

/* ===================== */
/* LAYOUT */
/* ===================== */
.center {
  text-align: center;
  max-width: 800px;
  margin: auto;
}

/* ===================== */
/* GRID */
/* ===================== */
.serve-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  max-width: 800px;
  margin: auto;
}

.serve-card {
  background: #fff;
  padding: 18px;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  box-shadow: 0 5px 12px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.serve-card:hover {
  background: var(--accent);
  color: #fff;
}

.fade-in {
  opacity: 0;
  transform: translateY(25px);
  transition: 0.5s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* STAGGER EFFECT */
.fade-in:nth-child(1) { transition-delay: 0.1s; }
.fade-in:nth-child(2) { transition-delay: 0.2s; }
.fade-in:nth-child(3) { transition-delay: 0.3s; }
.fade-in:nth-child(4) { transition-delay: 0.4s; }

/* ===================== */
/* PRODUCTS HERO */
/* ===================== */

.products-hero {
  text-align: center;
  max-width: 1000px;
  margin: 50px auto 30px;
  padding: 0 20px;
}

.products-hero h1 {
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: 3px;
  margin-bottom: 25px;
  text-transform: uppercase;
  color: #000;
}

.products-hero p {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #000;
  max-width: 850px;
  margin: auto;
}


/* ===================== */
/* PRODUCT SHOWCASE */
/* ===================== */

.product-showcase {
  display: flex;
  align-items: center;
  gap: 50px;

  max-width: 1000px;

  margin: 100px auto;

  padding: 0 20px;
}

.product-showcase.reverse {
  flex-direction: row-reverse;
}

.product-image {
  flex: 1;
}

.product-image img {
  width: 100%;
  height: 350px;

  object-fit: cover;

  border-radius: 28px;

  transition: transform 0.5s ease;
}

.product-image img:hover {
  transform: scale(1.02);
}

.product-details {
  flex: 1;
}

.product-details h2 {
  font-size: 2rem;

  color: red;

  margin-bottom: 15px;

  text-transform: uppercase;

  line-height: 1;
}

.product-details p {
  font-size: 1rem;

  line-height: 1.9;

  color: #000;

  margin-bottom: 30px;

  max-width: 500px;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;

  gap: 12px;

  margin-bottom: 30px;
}

.product-tags span {
  background: #f3f4f6;

  padding: 10px 18px;

  border-radius: 40px;

  font-size: 13px;

  font-weight: 600;

  color: #555;
}


/* ===================== */
/* PRODUCT BUTTON */
/* ===================== */

.cta-btn {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  padding: 12px 24px;

  border-radius: 10px;

  background: var(--primary);

  color: #fff;

  text-decoration: none;

  font-weight: 400;

  transition: 0.3s ease;
}

.cta-btn:hover {
  background: var(--primary-dark);

  transform: translateY(-2px);
}


/* ===================== */
/* MOBILE */
/* ===================== */

@media (max-width: 768px) {

  .products-hero {
    margin: 60px auto 40px;
  }

  .products-hero h1 {
    font-size: 2.8rem;
  }

  .products-hero p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .product-showcase,
  .product-showcase.reverse {
    flex-direction: column;

    gap: 35px;

    margin: 70px auto;
  }

  .product-image img {
    height: 320px;
  }

  .product-details {
    text-align: center;
  }

  .product-details h2 {
    font-size: 2.5rem;
  }

  .product-details p {
    font-size: 1rem;

    max-width: 100%;
  }

  .product-tags {
    justify-content: center;
  }

}

.mini-card {
  background: #fff;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 13px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.05);
}

/* ===================== */
/* ABOUT */
/* ===================== */
.about-grid {
  display: flex;
  gap: 25px;
  max-width: 1000px;
  margin: auto;
}

.about-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  flex: 1;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.about-card:hover {
  transform: translateY(-4px);
}

.about-block {
  margin-bottom: 30px;
}

.about-section {
  max-width: 800px;
  margin: auto;
}


.about-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;

  max-width: 1200px;
  margin: 80px auto;

  padding: 60px 30px;

  background: linear-gradient(
    180deg,
    #fff7f2 0%,
    #ffffff 100%
  );

  border-radius: 30px;

  position: relative;
  overflow: hidden;
}

.about-block {
  position: relative;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(10px);

  padding: 40px 30px;
  border-radius: 24px;

  border: 1px solid rgba(255,255,255,0.3);

  box-shadow:
    0 10px 30px rgba(0,0,0,0.06),
    0 1px 8px rgba(0,0,0,0.03);

  transition: all 0.4s ease;

  overflow: hidden;
}

.about-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 5px;

  background: linear-gradient(
    90deg,
    var(--primary),
    var(--accent)
  );
}

.about-block:hover {
  transform: translateY(-10px);
  box-shadow:
    0 18px 40px rgba(0,0,0,0.1),
    0 8px 16px rgba(227,6,19,0.08);
}

.about-icon {
  width: 70px;
  height: 70px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 18px;

  background: linear-gradient(
    135deg,
    var(--primary),
    var(--accent)
  );

  color: #fff;
  font-size: 30px;

  margin-bottom: 25px;

  box-shadow: 0 8px 18px rgba(227,6,19,0.2);
}

.about-block h2 {
  font-size: 1.7rem;
  margin-bottom: 15px;
  color: var(--dark);
}

.about-block p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.2px;
}

/* Mobile view */
@media (max-width: 768px) {

  .about-content {
    grid-template-columns: 1fr;

    gap: 20px;

    margin: 50px 16px;

    padding: 30px 18px;

    border-radius: 22px;
  }

  .about-block {
    padding: 30px 22px;

    border-radius: 20px;
  }

  .about-icon {
    width: 58px;
    height: 58px;

    font-size: 24px;

    margin-bottom: 18px;

    border-radius: 14px;
  }

  .about-block h2 {
    font-size: 1.4rem;

    margin-bottom: 10px;
  }

  .about-block p {
    font-size: 14px;

    line-height: 1.8;
  }

  .about-block {
  min-height: 100%;
}

}

@media (max-width: 768px) {

  .hero-image {
    height: 45vh;
  }

}

/* =========================
   BUSINESS PAGE
========================= */

/* =========================
   BUSINESS HERO
========================= */

.biz-hero {
  min-height: 85vh;
  padding: 120px 8%;
  display: flex;
  align-items: center;

  background:
    linear-gradient(rgba(31,41,51,0.72),
    rgba(31,41,51,0.72)),
    url("images/office.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: white;
}

.biz-hero__content {
  max-width: 620px;
}

.biz-hero__tag,
.biz-section-label {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 100px;

  background: rgba(255,179,0,0.15);
  color: var(--accent);

  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.biz-hero__title {
  font-size: clamp(3.5rem, 7vw, 6rem);
  line-height: 0.95;
  margin: 24px 0;
  letter-spacing: -2px;

  color: white;
}

.biz-hero__text {
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: 38px;
  max-width: 520px;

  color: rgba(255,255,255,0.88);
}


/* =========================
   BUTTONS
========================= */

.biz-hero__btn,
.biz-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 16px 36px;
  border-radius: 14px;

  background: var(--primary);
  color: white;

  text-decoration: none;
  font-weight: 700;

  box-shadow: 0 12px 30px rgba(227,6,19,0.25);

  transition: all 0.3s ease;
}

.biz-hero__btn:hover,
.biz-cta__btn:hover {
  transform: translateY(-4px);

  background: var(--primary-dark);

  box-shadow: 0 18px 40px rgba(227,6,19,0.35);
}


/* =========================
   INTRO
========================= */

.biz-intro {
  padding: 110px 8%;
  background: var(--cream);
}

.biz-intro__container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}

.biz-intro h2 {
  font-size: clamp(2.3rem, 4vw, 3.7rem);
  line-height: 1.1;
  margin-bottom: 24px;

  color: var(--dark);
}

.biz-intro p {
  font-size: 1.05rem;
  line-height: 1.9;

  color: #5c6470;
}

.biz-highlight-card {
  background: white;

  padding: 45px;
  border-radius: 28px;

  border-top: 5px solid var(--primary);

  box-shadow: 0 18px 45px rgba(31,41,51,0.08);
}

.biz-highlight-card h3 {
  color: var(--primary);
  margin-bottom: 12px;
}


/* =========================
   SEGMENTS
========================= */

.biz-segments {
  padding: 80px 8% 130px;

  display: flex;
  flex-direction: column;
  gap: 120px;

  background: white;
}

.biz-segment {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.biz-segment__image {
  overflow: hidden;
  border-radius: 30px;

  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.biz-segment__image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;

  transition: transform 0.6s ease;
}

.biz-segment:hover .biz-segment__image img {
  transform: scale(1.05);
}

.biz-segment__label {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;

  color: var(--accent);
}

.biz-segment__content h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;

  margin: 18px 0 24px;

  color: var(--dark);
}

.biz-segment__content p {
  font-size: 1.05rem;
  line-height: 1.9;

  color: #5c6470;
}


/* REVERSE */

.biz-segment--reverse .biz-segment__image {
  order: 2;
}

.biz-segment--reverse .biz-segment__content {
  order: 1;
}


/* =========================
   ADVANTAGES
========================= */

/* =========================
   ADVANTAGES
========================= */

.biz-advantages {
  padding: 120px 8%;

  background: var(--cream);

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.biz-advantages h1 {
  grid-column: 1 / -1;

  font-size: 3rem;
  margin-bottom: 20px;

  color: var(--dark);
}

.biz-advantage-card {
  background: white;

  padding: 45px 35px;
  border-radius: 28px;

  border-top: 5px solid var(--primary);

  box-shadow: 0 18px 40px rgba(31,41,51,0.08);

  transition: all 0.3s ease;
}

.biz-advantage-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 25px 50px rgba(227,6,19,0.12);
}

.biz-advantage-card h3 {
  font-size: 1.4rem;
  margin-bottom: 18px;

  color: var(--primary);
}

.biz-advantage-card p {
  line-height: 1.9;

  color: #5c6470;
}


/* =========================
   CTA
========================= */

.biz-cta {
  padding: 130px 8%;

  background: var(--cream);
}

.biz-cta__content {
  background:
    linear-gradient(135deg,
    var(--primary),
    var(--primary-dark));

  color: white;

  padding: 75px 50px;
  border-radius: 38px;

  text-align: center;

  box-shadow: 0 25px 60px rgba(227,6,19,0.25);
}

.biz-cta__content h2 {
  font-size: clamp(1.5rem, 4vw, 3rem);

  margin: 20px 0;
}

.biz-cta__content p {
  max-width: 500px;

  margin: auto;
  margin-bottom: 38px;

  line-height: 1.9;

  color: rgba(255,255,255,0.9);
}


/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {

  .biz-hero {
    min-height: auto;
    padding: 100px 7% 80px;
  }

  .biz-intro__container,
  .biz-segment,
  .biz-advantages {
    grid-template-columns: 1fr;
  }

  .biz-segment--reverse .biz-segment__image,
  .biz-segment--reverse .biz-segment__content {
    order: unset;
  }

  .biz-segment__image img {
    height: 350px;
  }

  .biz-cta__content {
    padding: 60px 30px;
  }

  .biz-advantages h1 {
    font-size: 2.3rem;
  }

}

/* ===================== */
/* TESTIMONIALS */
/* ===================== */
.testimonial-section {
  background: #fff;
  text-align: center;
}

.testimonial-grid {
  display: flex;
  gap: 15px;
  max-width: 1000px;
  margin: 30px auto;
}

.testimonial-card {
  background: var(--cream);
  padding: 18px;
  border-radius: 10px;
  flex: 1;
}

/* ===================== */
/* CONTACT FORM */
/* ===================== */
.form-section {
  display: flex;
  justify-content: center;
}

/* .contact-form {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 12px;
} */

.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.contact-form button {
  padding: 10px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 25px;
  cursor: pointer;
}

.contact-section {
  text-align: center;
}

.contact-section {
  max-width: 800px;
  margin: auto;
}

.contact-form {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 30px auto 0;
}


/* ===================== */
/* FOOTER */
/* ===================== */
.site-footer {
  background: var(--primary);
  color: #fff;
  padding: 50px 20px 20px;
  margin-top: 60px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-column h4 {
  margin-bottom: 10px;
  color: var(--accent);
}

.footer-column a {
  display: block;
  color: #fff;
  margin-bottom: 6px;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--accent);
}

.footer-column p {
  color: #fff;
  font-size: 13px;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #fff;
  padding-top: 10px;
  font-size: 12px;
}

/* ===================== */
/* WHATSAPP */
/* ===================== */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  padding: 10px 16px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 13px;
  box-shadow: 0 4px 10px rgba(251, 249, 249, 0.897);
}

/* ===================== */
/* MOBILE */
/* ===================== */
.menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--primary);
}

@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #fff;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu a {
    padding: 10px;
    margin: 0;
  }

  .about-grid {
    flex-direction: column;
  }

  .serve-grid {
    grid-template-columns: 1fr;
  }

  .product-content {
    flex-direction: column;
    text-align: center;
  }

  .testimonial-grid {
    flex-direction: column;
  }

  .hero-overlay h1 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {

  .menu-toggle {
    display: block;
    font-size: 2rem;
    background: none;
    border: none;
    color: var(--primary);
  }

  .nav-menu {
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;

    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .nav-menu.active {
    max-height: 400px;
  }

  .nav-menu a,
  .dropbtn {
    width: 100%;
    padding: 12px 0;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
    transform: none;
    opacity: 1;
    display: none;
  }

  .dropdown.open .dropdown-content {
    display: block;
  }
}