/* RESET */
/* =================== GOOGLE FONTS =================== */
@import url('https://fonts.googleapis.com/css2?family=Playwrite+NO:wght@100..400&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* =================== VARIABBLES CSS =================== */
:root {
  --header-height: 3.5rem;

  /* =================== BRAND COLORS (Fire & Safety) =================== */
  --primary-color: hsl(0, 78%, 34%);       /* Fire red – main brand */
  --primary-dark: hsl(0, 85%, 38%);        /* Darker fire red */
  --primary-light: hsl(0, 75%, 40%);       /* Lighter accent fire red */

  --secondary-color: hsl(25, 100%, 50%);   /* Safety orange */
  --secondary-dark: hsl(25, 100%, 40%);
  --secondary-light: hsl(25, 100%, 62%);

  --accent-color: hsl(45, 100%, 50%);      /* Warning yellow */
  --accent-color-light: hsl(45, 100%, 65%);

  --header-bg:#38000a;

  /* Gradients */
  --gradient-main: linear-gradient(90deg, hsl(0, 85%, 48%), hsl(25, 100%, 50%));
  --gradient-soft: linear-gradient(90deg, hsl(0, 80%, 55%), hsl(25, 100%, 60%));
  --gradient-dark: linear-gradient(90deg, hsl(0, 85%, 35%), hsl(25, 100%, 42%));

  /* =================== SEMANTIC COLORS =================== */
  --success-color: hsl(135, 60%, 38%);  /* Green – success */
  --warning-color: hsl(45, 100%, 50%);  /* Yellow – warning */
  --danger-color: hsl(0, 75%, 45%);     /* Red – alerts */
  --info-color: hsl(210, 85%, 50%);     /* Blue – info messages */

  /* =================== TEXT COLORS =================== */
  --title-color: hsl(220, 25%, 15%);        /* Deep navy for professional look */
  --text-color: hsl(220, 15%, 28%);         /* Technically clean dark gray */
  --text-color-light: hsl(220, 10%, 80%);   /* Light gray for subtitles */
  --text-muted: hsl(220, 10%, 60%);

  /* Text on dark backgrounds */
  --text-on-primary: hsl(0, 0%, 100%);
  --text-on-dark: hsl(0, 0%, 100%);

  /* =================== BACKGROUND COLORS =================== */
  --body-color: hsl(0, 0%, 100%);
  --body-alt: hsl(220, 14%, 96%);             /* Light gray section background */
  --container-color: hsl(0, 0%, 92%);
  --container-dark: hsl(220, 15%, 15%);    /* Dark block for high contrast */

  /* Panels */
  --panel-soft: hsl(0, 0%, 98%);
  --panel-medium: hsl(0, 0%, 92%);
  --panel-strong: hsl(0, 0%, 85%);

  /* Cards */
  --card-bg: hsl(0, 0%, 100%);
  --card-hover: hsl(0, 0%, 96%);

  --white-color: hsl(0, 0%, 100%);
  --black-color: hsl(0, 0%, 0%);

  --black-border: hsl(220, 10%, 25%);
  --gray-border: hsl(220, 10%, 90%);

  /* =================== BORDERS & SHADOWS =================== */
  --border-color-light: hsl(0, 0%, 85%);
  --border-color: hsl(220, 10%, 75%);
  --border-dark: hsl(220, 10%, 30%);

  --shadow-color: hsla(0, 0%, 0%, 0.08);
  --shadow-strong: hsla(0, 0%, 0%, 0.18);

  /* =================== UI ELEMENT COLORS =================== */
  --button-primary-bg: var(--primary-color);
  --button-primary-hover: var(--primary-dark);

  --button-secondary-bg: var(--secondary-color);
  --button-secondary-hover: var(--secondary-dark);

  --input-bg: hsl(0, 0%, 100%);
  --input-border: hsl(0, 0%, 80%);
  --input-focus: hsl(25, 100%, 50%);

  /* =================== FONTS =================== */
  --body-font: "Poppins", sans-serif;
  --Title-font: "Playwrite NO", cursive;
  --big-font-size: 2.3rem;
  --h1-font-size: 1.75rem;
  --h2-font-size: 1.3rem;
  --h3-font-size: 1.1rem;

  --normal-font-size: 0.95rem;
  --small-font-size: 0.82rem;

  --font-light: 300;
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;

  /* =================== Z-INDEX =================== */
  --z-tooltip: 10;
  --z-fixed: 100;
  --z-overlay: 1000;
  --toolbar-height: 40px;
}

/* =================== OPTIONAL DARK MODE =================== */





/* =================== RESPONSIVE TYPOGRAPHY =================== */
@media screen and (min-width: 1150px) {
  :root {
    --big-font-size: 3.5rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
  }
}

/* =================== ALTERNATING SECTION BACKGROUNDS =================== */
section:nth-child(odd) {
  background-color: var(--body-color);       /* White */
  color: var(--text-color);                  /* Dark gray text */
}

section:nth-child(even) {
  background-color: var(--body-alt);  /* Slight gray */
  color: var(--text-color);                  /* Dark gray text for contrast */
}


/* =================== GLOBAL STYLES =================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: background-color .3s ease, color .3s ease, border-color .3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  background: transparent;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
  /* line-height: 1.6; */
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

h1, h2, h3 {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
}

ul {
  list-style: none;
}

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

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


/* =================== RESABLE CSS CLASSES =================== */

.container {
  max-width: 1120px;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

@media screen and (min-width: 1150px){
  .section{
    padding-block: 5rem 2rem;
  }
}

.section__title, .section__subtitle {
  text-align: center;
}

.section__title {
  font-size: var(--h1-font-size);
  font-weight: var(--font-bold);
  margin-bottom: 1.5rem;
}


.section__subtitle {
  font-family: var(--Title-font);
  width: 100%;
  display: inline-block;
  font-size: var(--h3-font-size);
  font-weight: 800;
  color: #ec1313;
  letter-spacing: 1.5px;
  margin-bottom: 2.5rem;
  position: relative;
  text-align: center;
  transition: color 0.3s ease;
}

.section__subtitle::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%) scaleX(1);
  width: 80px;
  height: 3px;
  background: #ec1313;
  border-radius: 3px;
  opacity: 1;
  transition: transform 0.35s ease, background-color 0.3s ease;
}

.section__subtitle:hover {
  transform: translateY(-3px);
  color: var(--primary-color);
}

.section__subtitle:hover::after {
  transform: translateX(-50%) scaleX(1.2); /* expands smoothly */
  background-color: var(--primary-color-hover); /* optional: stronger tone */                    
}



/* main {
  overflow: hidden;
  padding-top: 120px;
  transition: padding-top 0.3s ease;
} */

/* When navbar becomes fixed */
/* main.navbar-fixed {
  padding-top: 70px;
} */

/* NAVBAR */

/* ===============================
   HEADER TOOLBAR
=============================== */
.header-toolbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #000000;
  color: var(--white-color);
  padding: 0.65rem 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1002;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-toolbar.hide {
  transform: translateY(-100%);
}

.toolbar-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.toolbar-container span i {
  color: var(--primary-color);
  margin-right: 0.4rem;
  font-size: 1rem;
}

.toolbar-left,
.toolbar-right {
  display: flex;
  gap: 2rem;
  font-size: 0.8125rem;
}

.toolbar-left span,
.toolbar-left span a,
.toolbar-right span,
.toolbar-right span a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s ease, opacity 0.2s ease;
}

.toolbar-left span a,
.toolbar-right span a{
  cursor: pointer;
}

.toolbar-left span:hover,
.toolbar-right span:hover {
  color: var(--white-color);
  opacity: 1;
}

/* Toolbar separator */
.toolbar-left::after {
  content: "";
  position: absolute;
  right: 50%;
  top: 50%;
  transform: translateY(-50%);
  height: 16px;
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
}

/* ===============================
   LANGUAGE SWITCHER
============================== */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: 1rem;
  padding-left: 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.lang-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8125rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  transition: color 0.2s ease;
}

.lang-btn:hover {
  color: var(--white-color);
}

.lang-btn.active {
  color: var(--primary-color);
  font-weight: 600;
}

.lang-divider {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8125rem;
}


/* ===============================
   MAIN HEADER / NAVBAR
=============================== */
.navbar {
  width: 100%;
  height: 80px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  padding: 0 2rem;
  position: fixed;
  top: var(--toolbar-height);
  left: 0;
  z-index: 1000;
  background: var(--header-bg);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: top 0.3s ease, backdrop-filter 0.3s ease, background 0.3s ease;
  box-sizing: border-box;
}

.navbar--transparent {
  backdrop-filter: blur(8px);
  background: rgba(56, 0, 10, 0.92);
}

.navbar-fixed {
  top: 0 !important;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.logo:hover {
  opacity: 0.9;
}

.logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo:hover .logo-img {
  transform: scale(1.03);
}

/* NAV LINKS */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  grid-column: 2;
  justify-self: center;
}

/* Contact button - desktop */
.nav-contact {
  grid-column: 3;
}

/* Desktop/mobile visibility - using specific selectors */
.desktop-only.nav-contact {
  display: block;
}

.mobile-only.nav-contact {
  display: none;
}

/* Desktop-only (hidden on mobile) */
.desktop-only {
  display: inline-block;
}

@media (max-width: 991px) {
  .desktop-only {
    display: none;
  }
}

/* Mobile-only (hidden on desktop) */
.mobile-only {
  display: none;
}

@media (max-width: 991px) {
  .mobile-only {
    display: flex;
  }
}

.nav__list {
  display: flex;
  gap: 2.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--white-color);
  text-decoration: none;
  position: relative;
  padding: 0.5rem 0;
  letter-spacing: 0.01em;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
  color: var(--white-color);
  opacity: 0.85;
}

.nav-link:hover::after {
  width: 100%;
}

/* Active link styling */
.nav-link--active {
  color: var(--white-color);
}

.nav-link--active::after {
  width: 100%;
}

/* CONTACT BUTTON */
.nav-contact {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1.5rem;
  background: var(--primary-color);
  color: var(--white-color);
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-contact:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(155, 19, 19, 0.25);
}


/* HAMBURGER */
.hamburger {
  display: none;
  width: 28px;
  height: 20px;
  position: relative;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 0;
  grid-column: 4;
  color: var(--white-color);
}

.hamburger span {
  position: absolute;
  color: var(--white-color);
  height: 2px;
  width: 100%;
  background: var(--white-color);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  left: 0;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger span:nth-child(3) { bottom: 0; }

.hamburger.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  top: 50%;
  bottom: auto;
  transform: translateY(-50%) rotate(-45deg);
}


/* ===============================
   MOBILE NAVIGATION (< 992px)
=============================== */
body.no-scroll {
  overflow: hidden;
}

@media (max-width: 991px) {
  /* Hide toolbar completely on tablet/mobile */
  .header-toolbar {
    display: none;
  }

  /* Navbar adjustments - full top position */
  .navbar {
    top: 0;
    padding: 0 1.5rem;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* Logo */
  .logo-img {
    height: 50px;
  }

  /* Hide desktop contact button on mobile */
  .desktop-only.nav-contact {
    display: none;
  }

  /* Mobile nav - side drawer (hidden by default, shown with .show class) */
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(320px, 85%);
    background: var(--black-color);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    box-shadow: -4px 0 25px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
    display: flex;
  }

  .nav-links.show {
    transform: translateX(0);
  }

  /* Backdrop overlay */
  .nav-links::before {
    content: '';
    position: fixed;
    top: 0;
    left: -100vw;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
  }

  .nav-links.show::before {
    opacity: 1;
    visibility: visible;
  }

  /* Nav list */
  .nav__list {
    flex-direction: column;
    gap: 0;
    width: 100%;
    margin-bottom: 1.5rem;
  }

  .nav__list li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-link {
    display: block;
    padding: 1rem 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white-color);
    opacity: 0.9;
    transition: opacity 0.3s ease, color 0.3s ease;
  }

  .nav-link:hover {
    opacity: 1;
    color: var(--primary-color);
  }

  .nav-link::after {
    display: none;
  }

  /* Contact button mobile */
  .nav-contact {
    width: 100%;
    justify-content: center;
    padding: 1rem;
    font-size: 1rem;
    margin-top: 1rem;
  }

  /* Desktop/mobile visibility - remove from grid on mobile */
  .desktop-only.nav-contact {
    display: none;
  }

  .mobile-only.nav-contact {
    display: block;
  }

  /* Mobile language switch - at top of drawer */
  .mobile-lang-switch {
    display: flex;
    gap: 0.5rem;
    padding: 0.5rem 0;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-lang-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.7);
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .mobile-lang-btn:hover {
    border-color: var(--primary-color);
    color: var(--white-color);
  }

  .mobile-lang-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-on-primary);
  }

  /* Hamburger visible on mobile */
  .hamburger {
    display: block;
    grid-column: auto;
  }

  /* Nav links display for drawer */
  .nav-links {
    display: flex;
  }
}


/* Desktop nav - hamburger hidden */
@media (min-width: 992px) {
  .hamburger {
    display: none;
  }

  /* Desktop visibility - ensure correct display */
  .desktop-only.nav-contact {
    display: block;
  }

  .mobile-only.nav-contact {
    display: none;
  }
}

/* ================= BUTTONS ================= */
.btn {
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  padding: 0.85rem 1.8rem;
  border-radius: 6px;
  border: 2px solid var(--primary-color);
  background: var(--button-primary-bg);
  color: var(--text-on-primary);
  box-shadow: 0 6px 18px var(--shadow-color);
  position: relative;
  overflow: hidden;
}

.btn--primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn--primary:hover {
  background: transparent;
  color: var(--primary-color);
  box-shadow: none;
  transform: translateY(-2px);
}

.btn--primary:hover::before {
  left: 100%;
}

.btn--link {
  position: relative;
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  padding-bottom: 4px;
}


.btn--link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-soft);
  transform: scaleX(0.3);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.btn--link:hover::after {
  transform: scaleX(1);
}

.btn--link:hover::after {
  transform: scaleX(1);
}

/* ================= HERO ================= */
.hero-minimal {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--white-color);
  padding: 140px 0 80px;
}

.hero-grid {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

/* Content Side */
.hero-content {
  max-width: 560px;
}

.hero-label {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.hero-heading {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--title-color);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-accent {
  color: var(--primary-color);
  position: relative;
  display: inline-block;
}

.hero-accent::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary-color);
  opacity: 0.3;
}

.hero-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 480px;
}

/* CTA */
.hero-cta {
  margin-bottom: 3rem;
}

.btn-minimal {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--primary-color);
  color: var(--white-color);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-minimal:hover {
  background: var(--primary-color-hover);
  transform: translateY(-1px);
}

/* Meta Stats */
.hero-meta {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.meta-item {
  display: flex;
  flex-direction: column;
}

.meta-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--title-color);
  line-height: 1;
}

.meta-text {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.meta-divider {
  width: 1px;
  height: 36px;
  background: var(--border-color);
}

/* Visual Side */
.hero-visual {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

.hero-image-caption span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--white-color);
  letter-spacing: 0.02em;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta {
    display: flex;
    justify-content: center;
  }

  .hero-meta {
    justify-content: center;
  }

  .hero-visual {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .hero-minimal {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero-heading {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-meta {
    gap: 1.5rem;
  }

  .meta-divider {
    display: none;
  }
}

/* ================= SWIPER ================= */
.hero-creative {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0d0d0d 100%);
  padding: 120px 0 80px;
}

/* Background Shapes */
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}

.shape-1 {
  width: 600px;
  height: 600px;
  background: var(--primary-color);
  top: -200px;
  right: -100px;
  opacity: 0.15;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: #ff6b35;
  bottom: -100px;
  left: -100px;
  opacity: 0.1;
}

.shape-3 {
  width: 300px;
  height: 300px;
  background: var(--secondary-color);
  top: 50%;
  left: 30%;
  opacity: 0.08;
}

/* Container */
.hero-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Hero Content */
.hero-content {
  animation: slideInLeft 0.8s ease forwards;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--primary-color);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-badge span {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.02em;
}

/* Title */
.hero-title {
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--white-color);
}

.title-line {
  display: block;
}

.title-line.accent {
  color: var(--primary-color);
  position: relative;
}

.title-line.accent::after {
  content: '';
  position: absolute;
  bottom: 0.1em;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), transparent);
  border-radius: 2px;
}

/* Subtitle */
.hero-subtitle {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2rem;
  max-width: 500px;
}

/* Features */
.hero-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateX(8px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  border-radius: 10px;
  font-size: 1.25rem;
  color: var(--white-color);
}

.feature-text {
  display: flex;
  flex-direction: column;
}

.feature-text strong {
  font-size: 1rem;
  color: var(--white-color);
  font-weight: 600;
}

.feature-text span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Actions */
.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-hero--primary {
  background: var(--primary-color);
  color: var(--white-color);
  box-shadow: 0 4px 20px rgba(155, 19, 19, 0.4);
}

.btn-hero--primary:hover {
  background: var(--primary-color-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(155, 19, 19, 0.5);
}

.btn-hero--primary i {
  transition: transform 0.3s ease;
}

.btn-hero--primary:hover i {
  transform: translateX(5px);
}

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

.btn-hero--secondary:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white-color);
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

/* Hero Images */
.hero-images {
  position: relative;
  height: 500px;
  animation: slideInRight 0.8s ease 0.2s forwards;
  opacity: 0;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Main Image */
.image-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 380px;
  height: 450px;
  border-radius: 24px;
  overflow: hidden;
  z-index: 3;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.4) 100%);
}

/* Floating Images */
.image-float {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transition: all 0.4s ease;
}

.image-float:hover {
  transform: translateY(-10px) scale(1.02);
}

.image-float-1 {
  bottom: 30px;
  left: 0;
  width: 200px;
  height: 240px;
  z-index: 4;
  border: 4px solid var(--container-dark);
}

.image-float-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-float-2 {
  top: 50px;
  left: 180px;
  width: 160px;
  height: 180px;
  z-index: 5;
  border: 4px solid var(--container-dark);
}

.image-float-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Float Badges */
.float-badge {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--white-color);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}

.float-badge.warning {
  background: var(--primary-color);
  color: var(--white-color);
}

/* Decorative Elements */
.decoration-circle {
  position: absolute;
  width: 280px;
  height: 280px;
  border: 2px dashed rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  animation: rotate 30s linear infinite;
}

@keyframes rotate {
  from { transform: translateY(-50%) rotate(0deg); }
  to { transform: translateY(-50%) rotate(360deg); }
}

.decoration-line {
  position: absolute;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  bottom: 80px;
  right: 100px;
  opacity: 0.3;
}

/* Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 10;
}

.hero-scroll span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.4);
}

.scroll-arrow {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.6);
  animation: bounce 2s ease infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1100px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-images {
    height: 400px;
    order: -1;
  }

  .image-main {
    width: 300px;
    height: 350px;
    right: 50%;
    transform: translateX(50%);
  }

  .image-float-1 {
    left: 10%;
    width: 160px;
    height: 190px;
  }

  .image-float-2 {
    left: auto;
    right: 10%;
    width: 130px;
    height: 150px;
    top: 30px;
  }

  .decoration-circle {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-creative {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero-container {
    padding: 0 1.5rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-features {
    gap: 0.75rem;
  }

  .feature-item {
    padding: 0.75rem 1rem;
  }

  .feature-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn-hero {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }

  .stat-divider {
    display: none;
  }

  .hero-images {
    height: 320px;
  }

  .image-main {
    width: 250px;
    height: 300px;
  }

  .image-float-1 {
    width: 130px;
    height: 160px;
    left: 5%;
  }

  .image-float-2 {
    width: 110px;
    height: 130px;
    right: 5%;
  }

  .hero-scroll {
    display: none;
  }
}

/* =================== BUTTON =================== */
.button {
  display: inline-flex;
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  font-weight: var(--font-semi-bold);
  box-shadow: 0 4px 6px var(--shadow-color);
  transition: ground-color 0.4s, box-shadow 0.4s;
  transform: 0.3s ease;
}

.button:hover {
  color: var(--white-color);
  background-color: var(--primary-light);
  box-shadow: 0 4px 15px hsla(18, 95%, 55%, 0.3);
  transform: translateY(-0.10rem);
  filter: brightness(1.1);
}

/* =================== HERO SECTION =================== */
.hero {
  position: relative;
  min-height: 100vh;
  background-color: var(--body-alt);
  padding: 7.5rem 0 4rem;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(255, 255, 255, 0.5) 40%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
}

.hero__bg-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(90deg, rgba(0,0,0,0.02) 1px, transparent 1px),
    linear-gradient(rgba(0,0,0,0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.hero__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.hero__badge {
  position: absolute;
  top: 1rem;
  right: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-color);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  z-index: 10;
  animation: fadeSlideDown 0.6s ease forwards;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__content {
  animation: slideUp 0.8s ease forwards;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary-color);
  padding: 0.4rem 0;
  border-bottom: 2px solid var(--primary-color);
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.hero__title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  line-height: 0.95;
  margin-bottom: 1.25rem;
  color: var(--title-color);
}

.hero__title-line {
  display: block;
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  letter-spacing: 0.02em;
  color: var(--title-color);
}

.hero__title-accent {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary-color);
}

.hero__tagline {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-color);
  margin-bottom: 1.5rem;
  padding-left: 1rem;
  border-left: 3px solid var(--secondary-color);
}

.hero__description {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-color);
  opacity: 0.85;
  max-width: 520px;
  margin-bottom: 2rem;
}

.hero__cta-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  border: 2px solid;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero__btn i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.hero__btn:hover i {
  transform: translateX(4px);
}

.hero__btn--primary {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white-color);
}

.hero__btn--primary:hover {
  background: transparent;
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(155, 19, 19, 0.25);
}

.hero__btn--secondary {
  background: transparent;
  border-color: var(--title-color);
  color: var(--title-color);
}

.hero__btn--secondary:hover {
  background: var(--title-color);
  border-color: var(--title-color);
  color: var(--white-color);
  transform: translateY(-2px);
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--white-color);
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-color);
}

.hero__trust-item i {
  font-size: 1.1rem;
  color: var(--primary-color);
}

.hero__trust-divider {
  width: 1px;
  height: 20px;
  background: var(--border-color);
}

.hero__visual {
  position: relative;
  height: 100%;
  min-height: 480px;
  animation: fadeIn 1s ease 0.3s forwards;
  opacity: 0;
}

.hero__visual::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(
    ellipse at center,
    rgba(155, 19, 19, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

.hero__images {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 450px;
}

.hero__image-main {
  position: absolute;
  top: 3%;
  left: 0;
  width: 68%;
  height: 88%;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 
    0 4px 15px rgba(0,0,0,0.08),
    0 15px 40px rgba(0,0,0,0.12),
    0 35px 60px rgba(0,0,0,0.1);
  z-index: 2;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero__image-main:hover .hero__img {
  transform: scale(1.04);
}

.hero__image-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 42%;
  height: 48%;
  overflow: hidden;
  border-radius: 8px;
  border: 4px solid var(--white-color);
  box-shadow: 
    0 8px 25px rgba(0,0,0,0.15),
    0 20px 45px rgba(0,0,0,0.12);
  z-index: 3;
}

.hero__img-secondary {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero__image-secondary:hover .hero__img-secondary {
  transform: scale(1.04);
}

.hero__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.02) 0%,
    rgba(155, 19, 19, 0.1) 100%
  );
  pointer-events: none;
  z-index: 4;
  border-radius: 8px;
}

.hero__stats-card {
  position: absolute;
  bottom: 1rem;
  right: 16rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 1.5rem;
  background: rgba(26, 33, 51, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  border-color: var(--white-color);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white-color);
  z-index: 6;
  box-shadow: 
    0 4px 20px rgba(0,0,0,0.2),
    0 15px 40px rgba(0,0,0,0.25);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
              box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero__stats-card:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 8px 30px rgba(0,0,0,0.25),
    0 20px 50px rgba(0,0,0,0.3);
}

.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__stat-number {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
  color: var(--primary-color);
}

.hero__stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-top: 0.25rem;
}

.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 5;
}

.hero__scroll span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-color);
  opacity: 0.5;
}

.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(
    to bottom,
    var(--primary-color) 0%,
    transparent 100%
  );
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

@media (max-width: 1099px) {
  .hero {
    padding: 8rem 0 4rem;
  }
  
  .hero__container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
    padding-top: 1rem;
  }
  
  .hero__content {
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero__visual {
    order: 2;
    min-height: auto;
    max-width: 550px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  
  .hero__images {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  
  .hero__image-main {
    position: relative;
    top: auto;
    left: auto;
    width: 90%;
    height: auto;
    aspect-ratio: 16/10;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  }
  
  .hero__image-secondary {
    position: relative;
    right: auto;
    bottom: auto;
    width: 70%;
    height: auto;
    aspect-ratio: 16/10;
    border-radius: 10px;
    border: none;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  }
  
  .hero__stats-card {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
    margin: 0.5rem auto;
    padding: 1rem 1.5rem;
    gap: 1.25rem;
  }
  
  .hero__description {
    max-width: 100%;
  }
  
  .hero__scroll {
    display: none;
  }
}

/* Responsive - when toolbar is hidden (< 992px) */
@media (max-width: 991px) {
  .hero {
    padding: 5.5rem 0 3rem;
  }
  
  .hero::before {
    height: 80px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 7rem 0 3rem;
  }
  
  .hero::before {
    height: 100px;
  }
  
  .hero__container {
    padding: 0 1.25rem;
    gap: 2.5rem;
  }
  
  .hero__badge {
    top: 0.5rem;
    right: 1rem;
    font-size: 0.7rem;
    padding: 0.5rem 0.9rem;
  }
  
  .hero__visual::before {
    display: none;
  }
  
  .hero__visual {
    padding-bottom: 1.5rem;
  }
  
  .hero__stats-card {
    padding: 0.65rem 1.25rem;
    gap: 1rem;
    border-radius: 10px;
  }
  
  .hero__stat-number {
    font-size: 1.25rem;
  }
  
  .hero__stat-label {
    font-size: 0.5rem;
  }
  
  .hero__stat-divider {
    height: 30px;
  }
  
  .hero__cta-group {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }
  
  .hero__btn {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
  }
  
  .hero__trust {
    gap: 0.75rem;
    padding: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .hero__trust-item {
    font-size: 0.75rem;
  }
  
  .hero__trust-divider {
    height: 16px;
  }
}

@media (max-width: 650px) {
  .hero__badge{
    display: none;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 7rem 0 2.5rem;
  }
  
  .hero__title-line {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }
  
  .hero__title-accent {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
  }
  
  .hero__tagline {
    font-size: 0.9rem;
  }
  
  .hero__description {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  
  .hero__visual {
    padding-bottom: 1.25rem;
  }
  
  .hero__stats-card {
    padding: 0.85rem 1.25rem;
    gap: 1rem;
  }
  
  .hero__stat-number {
    font-size: 1.25rem;
  }
  
  .hero__stat-label {
    font-size: 0.6rem;
  }
  
  .hero__stat-divider {
    height: 22px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 6.5rem 0 2.5rem;
  }
  
  .hero::before {
    height: 80px;
  }
  
  .hero__title-line {
    font-size: clamp(2.5rem, 11vw, 3.5rem);
  }
  
  .hero__title-accent {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
  
  .hero__tagline {
    font-size: 0.95rem;
    padding-left: 0.75rem;
  }
  
  .hero__description {
    font-size: 0.95rem;
    line-height: 1.65;
  }
  
  .hero__visual {
    padding-bottom: 1rem;
  }
  
  .hero__stats-card {
    flex-direction: row;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
  }
  
  .hero__stat-number {
    font-size: 1.1rem;
  }
  
  .hero__stat-label {
    font-size: 0.55rem;
  }
  
  .hero__stat-divider {
    width: 1px;
    height: 25px;
  }
}

/* =================== ABOUT =================== */
/* ===================== ABOUT2 ===================== */

.about2.section{
  padding-block: 3.5rem 3.5rem;
}

.about2__container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* ---------- TOP ROW: TEXT + SLIDER ---------- */
.about2__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about2__left {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

.about2__left .section__subtitle{
  margin-bottom: 0;
}

.about2__left .section__title{
  margin-bottom: 1rem;
}

.about2__description {
  color: var(--text-color);
  line-height: 1.7;
  max-width: 500px;
}

/* ---------- SLIDER ---------- */
.about2__right {
  width: 100%;
  display: flex;
  justify-content: center;
}

.about2-slider {
  width: 100%;
  max-width: 500px;
  height: 360px;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

/* Fix disappearing images */
.about2-slider .swiper-wrapper,
.about2-slider .swiper-slide {
  height: 100% !important;
}

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

/* Arrows */
.about2-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(0,0,0,0.4);
  color: var(--white-color);
  border-radius: 6px;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
}


.about2-arrow:hover {
  background: var(--primary-color);
}

.about2-prev { left: 12px; }
.about2-next { right: 12px; }

/* ---------- BOTTOM CARDS ---------- */
.about2__bottom {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  gap: 1.5rem;
}

.about2__stat-card {
  background: var(--card-bg);
  border-radius: 1rem;
  padding: 1.5rem 1rem;
  text-align: center;
  border: 1.5px solid rgba(0,0,0,0.08);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  transition: .25s;
}

.about2__stat-card:hover {
  transform: translateY(-6px);
  background-color: var(--card-hover);
}

.about2__stat-card h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
}

.about2__stat-card p {
  color: var(--text-color-light);
  font-size: 0.9rem;
}

.access-btn{
  display: flex;
  justify-content: center;

}

.access-btn a{
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 0.6rem 1.2rem;
  border-radius: 0.5rem;
  font-weight: var(--font-semi-bold);
  transition: 0.4s ease;
}

.access-btn a:hover {
  color: var(--white-color);
  background-color: var(--primary-light);
  transform: translateY(-0.25rem);
  filter: brightness(1.1);
}


@media (max-width: 900px) {

  
.about2__container {
    gap: 2.5rem;
    padding: 0 1rem;
  }

  .about2__top {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  /* Slider above text */
  /* .about2__right {
    margin-top: 2rem;
    order: -1;
  } */

  .about2__left {
    margin-top: 2rem;
    align-items: center;
  }

  .about2__description {
    max-width: 90%;
    text-align: center;
    font-size: 0.95rem;
  }

  .about2-slider {
    /* max-width: 100%; */
    height: 300px;
  }

  .about2__bottom {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .about2.section{
    padding-block: 2rem 2.2rem;
  }

  .about2__top{
    display: block;
  }

  .about2__description{
    max-width: 100%;
    line-height: 1.5;
    margin-bottom: 1.4rem;
  }


  .about2__bottom {
    grid-template-columns: repeat(2, 1fr);
  }

  .about2-slider {
    height: 340px;
  }

  .about2-arrow {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 480px) {

  .about2__container{
    padding: 0 0.5rem;
  }

  .about2__left .section__subtitle{
    margin-bottom: 0.2rem;
  }

  .about2__top{
    display: block;
  }

  .about2__description{
    max-width: 100%;
    line-height: 1.5;
    margin-bottom: 1.4rem;
  }

  .about2-slider{
    height: 300px;
  }

  .about2__left{
    margin-top: 1rem;
  }
}



@media (max-width: 360px) {
  .about2__container{
    padding: 0 0.5rem;
  }

  .about2__top{
    display: block;
  }

  .about2__left .section__subtitle{
    margin-bottom: 0;
  }

  .about2__description{
    max-width: 100%;
    line-height: 1.5;
    margin-bottom: 1.2rem;
  }

  .about2__bottom {
    grid-template-columns: 1fr;
  }

}

/* =================== SERVICES =================== */
.services {
  position: relative;
  padding: 4rem 0;
}

.services__container {
  display: grid;
  justify-items: center;
  row-gap: 2.5rem;
  text-align: center;
  width: 100%;
}

.services .section__subtitle{
  margin-bottom: 1rem;
}


.services__description {
  max-width: 55ch;
  margin: 0 auto 1.5rem;
  color: var(--text-color);
  font-size: 1.05rem;

}

.services__container .button {
  margin-top: 0.5rem;
  justify-content: center;
  align-items: center;
  align-self: center;
}

.services-cards-section{
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);;
  grid-gap: 50px 40px;
  align-items: center;
  justify-content: center;
  justify-items: center;
  padding: 0 4rem;
  margin-bottom: 2rem;
}

.services-cards-section .services-card{
  box-sizing: border-box;
  border: 2px solid var(--border-color);
  box-shadow: 5px 5px 15px var(--shadow-color);
  background-color: var(--card-bg);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.6s ease;
  width: 100%;
  max-width: 420px; 
  padding: 22px 16px;
  min-height: 210px;
}



.services-card i{
  font-size: 27px;
  transition: all 0.6s ease;
}

.services-card h3{
  font-size: 17px;
  margin: 7px 0 5px 0;
  transition: all 0.6s ease;
}

.services-card p{
  font-size: 14px;
  line-height: 25px;
  color: var(--text-color);

}

.services-card:hover{
  /* box-shadow: -10px 15px 34px var(--shadow-color); */
  background-color: var(--card-hover);
  transform: translateY(-2px);
}

.services-card:hover i,
.services-card:hover h3{
  color: var(--primary-color);
}

@media screen and (min-width: 1150px) {

  /* 3 equal columns */
  .services__container {
    display: grid;
    grid-template-columns: 
    minmax(290px, 1fr)  /* left: titles */
    minmax(500px, 1fr)  /* center: description */
    minmax(100px, 1fr); /* right: button */
    align-items: center;
    justify-items: center;
    column-gap: 3rem;
    width: 100%;
    margin: 2rem ;
  }


  .services__container > div {
    grid-column: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  /* CENTER COLUMN = description */
  .services__description {
    grid-column: 2;
    text-align: center;
    justify-self: center;
    max-width: 55ch;
    margin: 0 auto;
  }

  /* RIGHT COLUMN = button */
  .services__container .button {
    grid-column: 3;
    justify-self: center;
    padding-left: 1rem; /* center inside the column */
  }
}



@media (max-width: 900px) {
  .services__container{
    margin: 2rem ;
  }

  .services__container .button {
    min-width: 180px;        /* lock width */
    padding: 0.9rem 2rem;    /* keep comfortable touch size */
    font-size: 1rem;         /* prevent shrinking text */
    align-self: center;      /* stay centered */
  }
}

@media (max-width: 1150px){
  .services-cards-section{
    grid-template-columns: repeat(2, 1fr);
  }

  .services {
    padding: 2.5rem 1rem;
  }

  .services__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 0.5rem;
    margin: 1rem auto 2.5rem;
    text-align: center;
  }

  .services__description {
    line-height: 1.6rem;
  }

  .services-cards-section {
    align-items: center;
    justify-content: center;
    justify-items: center;
    gap: 20px;
    width: 100%;
    padding: 0 2rem;
  }

  
  .services-cards-section .services-card {
    width: 100%;
  max-width: 420px; 
    box-sizing: border-box;
    padding: 22px 16px;
  }
}

@media (max-width: 768px){
  .services-cards-section{
    grid-template-columns: repeat(1, 1fr);
  }

  .services {
    padding: 2.5rem 1rem;
  }

  .services__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 0.5rem;
    margin: 1rem auto 2.5rem;
    text-align: center;
  }


  .services-cards-section {
    align-items: center;
    justify-content: center;
    justify-items: center;
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
    padding: 0 2rem;
  }

  
  .services-cards-section .services-card {
    width: 100%;
  max-width: 420px; 
    box-sizing: border-box;
    padding: 22px 16px;
  }


}

@media (max-width: 480px) {

  .services {
    padding: 2.5rem 1rem;
  }

  .services__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 2rem;
    margin: 1rem auto;
    text-align: center;
  }

  /* Description full width and smaller font */
  .services__description {
    margin-bottom: 0;
    line-height: 1.6rem;
  }

  /* Services cards stacked in one column */
  .services-cards-section {
    align-items: center;
    justify-content: center;
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
    padding: 0 2rem;
  }

  .services-cards-section .services-card {
    width: 100%;
    box-sizing: border-box;
    padding: 22px 16px;
  }


  /* Icons & text inside cards smaller */
  .services-card i {
    font-size: 24px;
  }

  .services-card h3 {
    font-size: 16px;
  }

  .services-card p {
    font-size: 13px;
    line-height: 22px;
  }

  .services__container .button{
    min-width: inherit;
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
  }
}


@media (max-width: 360px) {

}


/* =================== PROJECTS =================== */

.projects .section__title{
  color: var(--title-color);
}

.projects__container {
  max-width: 1400px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  justify-items: center;
  row-gap: 2.5rem;
  padding-block: 1.5rem 3rem;
}

.projects__card {
  background-color: var(--card-bg);
  border: 2px solid var(--border-color);
  background-clip: content-box;
  border-radius: 1rem;
  overflow: hidden;
  max-width: 420px;
  transition: border-color 0.4s;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);

}

.projects__card:hover {
  transform: translateY(-2px);
  background-color: var(--card-hover);
  border-color: var(--primary-color);
}

.projects__data {
  padding: 1.5rem 1rem 2rem;
}

.projects__img {
  width: 100%;
  height: 270px;          /* fixed height for uniformity */
  object-fit: cover;      /* fill while keeping proportions */
  display: block;
}

.projects__title {
  font-size: var(--h2-font-size);
  font-weight: var(--font-bold);
  margin-block: 0.5rem;
}

.projects__date{
  display: block;
  font-weight: var(--font-medium);
  color: var(--title-color);
  margin-bottom: 1.5rem;
}

.projects__description {
  color: var(--text-color-light);
  line-height: 1.6;
}

@media (max-width: 1450px){
  .projects__container {
  max-width: 1450px;
  margin: 0 auto;        /* centers it */
  padding: 0 2rem;       /* space from screen edges */
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  }
}

@media (max-width: 1150px){
  .projects__container {
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  }
  .projects .section__subtitle{
    margin-top: 3rem;
    margin-bottom: 1.5rem;
  }

}

@media (max-width: 768px) {
  .projects .section__subtitle{
    margin-top: 3rem;
    margin-bottom: 1.5rem;
  }
}


@media (max-width: 360px){
  .projects .section__subtitle{
    margin-top: 2rem;
    margin-bottom: 1.2rem;
  }
}


/* =================== CONTACT =================== */

.contact.section {
  padding: 6rem 0 7rem 0;
}

.contact-container{
  /* width: 100%; */
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

form{
  padding: 2.3rem 2.2rem;
  overflow: hidden;
  position: relative;
}



.contact-row{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.contact-location{
  border-radius: 2rem;
  height: 600px;
  border: 2px solid var(--black-border);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.contact-forms{
  width: 100%;
  max-width: 850px;
  height: 600px;
  background-color: var(--container-dark);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 2px solid var(--black-border);
  border-radius: 2rem;
}

.contact-infos{
  background-color: var(--container-dark);
  border-right: 1px solid rgba(255,255,255,0.1);
  padding: 3.5rem 2.5rem;
}

.contact-form{
  background-color: var(--container-color);
  border-radius: 1.5rem;
  backdrop-filter: blur(4px);
  position: relative;
}

.contact-title{
  color: var(--text-color);
  font-weight: var(--font-bold);
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0.7rem;
}

.contact-input-container {
  position: relative;
  margin: 1.25rem 0;
}

.contact-input {
  width: 100%;
  outline: none;
  border: 2px solid var(--gray-border);
  background-color: var(--white-color);
  padding: 0.75rem 1.25rem;
  color: var(--text-color);
  font-weight: var(--font-medium);
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  border-radius: 25px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
  position: relative;
  z-index: 1;
}

.contact-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(155, 19, 19, 0.1);
  background-color: var(--white-color);
}

.contact-input::placeholder {
  color: transparent;
}

.contact-input:focus::placeholder {
  color: var(--text-muted);
}

.contact-input:not(:placeholder-shown) {
  color: var(--text-color);
}

textarea.contact-input::placeholder {
  color: transparent;
}

textarea.contact-input:focus::placeholder {
  color: var(--text-muted);
}

textarea.contact-input:not(:placeholder-shown) {
  color: var(--text-color);
}

textarea.contact-input {
  padding: 1rem 1.25rem;
  min-height: 240px;
  border-radius: 22px;
  resize: vertical;
  overflow-y: auto;
  line-height: 1.5;
}

/* ============================================
   FORM MESSAGES (Success/Error)
   ============================================ */
.form-message {
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-weight: var(--font-medium);
  text-align: center;
}

.form-message--success {
  background-color: hsl(135, 60%, 95%);
  color: hsl(135, 60%, 25%);
  border: 1px solid hsl(135, 60%, 45%);
}

.form-message--error {
  background-color: hsl(0, 60%, 95%);
  color: hsl(0, 60%, 25%);
  border: 1px solid hsl(0, 60%, 45%);
}

.contact-input-container label {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 6px;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: var(--font-medium);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: transparent;
  z-index: 3;
  pointer-events: none;
  border-radius: 4px;
}

.contact-input:focus ~ label,
.contact-input:not(:placeholder-shown) ~ label {
  top: 0;
  transform: translateY(-50%);
  left: 16px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-color);
  background-color: var(--white-color);
  letter-spacing: 0.5px;
}

.contact-input-container.contact-textarea {
  margin-bottom: 0.5rem;
}

.contact-textarea label {
  top: 1.25rem;
  transform: translateY(0);
  background-color: transparent;
} 

.contact-textarea textarea {
  resize: none;
}

.contact-textarea:focus ~ label,
.contact-textarea:not(:placeholder-shown) ~ label {
  top: -8px;
  transform: translateY(0);
  left: 14px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-color);
  background-color: var(--white-color);
}

.contact-send-button{
  padding: 0.6rem 1.3rem;
  background-color: var(--white-color);
  border: 2px solid var(--black-border);
  font-size: 0.95rem;
  color: var(--text-color);
  line-height: 1;
  border-radius: 25px;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  margin: 0;
}

.contact-send-button:hover{
  background-color: var(--container-dark);
  color: var(--white-color);
}

.contact-infos{
  padding: 2.3rem 2.2rem;
  position: relative;
}

.contact-infos .contact-title{
  color: var(--white-color);
}

.contact-text{
  color: var(--text-color-light);
  margin: 1.5rem 0 2.5rem 0;
}

.contact-information{
  display: flex;
  color: var(--text-color-light);
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 1.2rem;
  align-items: center;
}

.contact-information p{
  font-size: 1.05rem;
}

.contact-information .contact-icon{
  font-size: 1.4rem;
  margin-right: 0.5rem;
}

.contact-information a{
  color: var(--text-color-light);
  text-decoration: none;
}

.contact-information a:hover{
  color: var(--primary-color);
}

.toolbar-left a,
.toolbar-right a{
  color: var(--text-color);
  text-decoration: none;
}

.toolbar-left a:hover,
.toolbar-right a:hover{
  color: var(--primary-color);
}

.contact-company-name{
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white-color);
  margin-bottom: 1rem;
}

.contact-social-media{
  padding: 0.1rem 0 0 0;
}

.contact-social-media p{
  color: var(--white-color);
}

.contact-social-icon{
  display: flex;
  margin-top: 0.5rem;
}

.contact-social-link{
  width: 35px;
  height: 35px;
  border-radius: 5px;
  background-color: var(--container-color);
  color: var(--text-color);
  text-align: center;
  line-height: 35px;
  margin-right: 0.5rem;
  transition: 0.25s ease-in-out;
}

.contact-social-link:hover {
  background-color: var(--primary-color);
  color: #fff;
  transform: translateY(-3px);
}

@media (max-width: 1150px) {
  .contact-row {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .contact-location,
  .contact-forms {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
  }


  .contact-location {
    width: 100%;
    height: 380px;
  }

  .contact-forms {
    width: 100%;
    height: auto;
    max-width: 1000px;
  }
}

@media (max-width: 850px){

  .contact-forms {
    grid-template-columns: 1fr;
  }

  .contact-form{
    grid-template-columns: 1fr;
    height: auto;
  }
  .contact-text{
    margin: 1rem 0 1.5rem 0;
  }

  .contact-social-media{
    padding: .5rem 0 0 0;
  }
  .contact-social-link{
    font-size: 1.4rem;
  }

  .contact-infos {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .contact-location {
    height: 340px;
  }
}

@media (max-width: 768px) {
  .contact.section{
    padding: 3rem 0 3rem;
  }

  .contact-container{
    padding: 1rem 0 2rem;
  }

  .contact-row {
    gap: 1.5rem;
  }

  .contact-location {
    height: 300px;
  }

  .contact-forms {
    width: 100%;
  }
}

@media (max-width: 480px) {

  .contact-container{
    padding: 0 0 2rem;
  }

  form{
    padding: 0.8rem 0.5rem;
  }

  .contact-location {
    width: 100%;
    height: 260px;
    border-radius: 1.2rem;
  }

  .contact-forms {
    border-radius: 1.2rem;
  }

  .contact-title{
    margin-bottom: 1rem
  }

  .contact-infos,
  .contact-form {
    padding: 1.4rem;
  }

  .contact-infos{
    padding-top: 1.8rem;
    padding-bottom: 1.5rem;
  }

  .contact-text, .contact-information,
  .contact-social-media{
    font-size: 0.8rem;
  }

  .contact-forms {
    border-radius: 1.2rem;
  }

  .contact-social-icon a{
    width: 30px;
    height: 30px;
    line-height: 30px;
  }

  .contact-input{
    padding: 0.45rem 1.2rem;
    font-size: 0.85rem;
  }

  .contact-send-button{
    padding: 0.45rem 1.2rem;
    width: 100%;
  }
}

@media (max-width: 360px) {

  .contact.section{
    padding: 1rem 0 2rem;
  }

  .contact-forms{
    border-radius: 2rem;
  }

  form{
    padding: 0;
  }

  .contact-text{
    font-size: 0.9rem;
  }


  .contact-information p{
    font-size: 0.95rem;
    font-weight: 600;
  }

  .contact-social-media{
    padding: 0.7rem 0 0 0;
  }

  .contact-social-media p{
    font-size: 0.95rem;
  }

  .contact-social-icon a {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }

  .contact-social-link{
    margin-right: 0.6rem;
  }

  .contact-social-link i{
    font-size: 1.5rem;
  }

  .contact-location {
    height: 220px;
  }

  .contact-input {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }

  .contact-input-container {
    margin: 0.75rem 0;
  }

  .contact-input-container label {
    font-size: 0.85rem;
    left: 14px;
  }

  .contact-input:focus ~ label,
  .contact-input:not(:placeholder-shown) ~ label {
    font-size: 0.7rem;
    left: 12px;
  }

  .contact-textarea label {
    top: 1rem;
  }

  .contact-textarea:focus ~ label,
  .contact-textarea:not(:placeholder-shown) ~ label {
    top: -6px;
    left: 10px;
  }

  .contact-send-button {
    width: 100%;
    text-align: center;
    padding: 0.75rem;
  }
}

/* =================== Footer =================== */

.footer {
  background: var(--black-color);
  padding: 2rem 1.5rem 2rem;
  overflow: hidden;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 7rem;
}

.footer-logo{
  display: flex;
  align-items: center;
  cursor: pointer;
}

.footer-logo-img {
  height: 75px;
  /* transform: scale(1.6); */
  transform-origin: left;
  object-fit: contain;
}

.footer-description {
  margin-top: 1rem;
  color: var(--white-color);
  opacity: 0.85;
  line-height: 1.7;
  line-height: 1.7;
  max-width: 300px;
  font-size: .95rem;
}

.footer-divider {
  height: 1px;
  width: 100%;
  background: rgba(255,255,255,0.2);
  margin-top: 1.5rem;
  display: none;
}

.footer-content {
  display: flex;
  flex-direction: row;
  justify-content: end;
  gap: 2rem;
}


.footer-section{
  padding: 0 1rem;
}

@media (max-width: 600px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-divider {
    display: block;
  }
}

@media screen and (max-width: 768px) {

  .footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }

  .footer-left {
    align-items: center;
  }

  .footer-bottom {
    font-size: 0.85rem;
  }
}

@media (min-width: 600px) and (max-width: 950px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}


.footer-title {
  color: var(--white-color);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: .4rem;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 10px;
}

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

.footer-link {
  display: inline-block;
  margin-bottom: .6rem;
  color: var(--white-color);
  font-size: .95rem;
  opacity: 0.85;
  transition: 0.3s ease;
  position: relative;
}

.footer-link:hover {
  opacity: 1;
  color: var(--primary-color);
  transform: translateX(4px);
}

.footer-info {
  font-style: normal;
  color: var(--white-color);
  opacity: 0.85;
  font-size: .95rem;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-social i {
  font-size: 1.6rem;
  color: var(--white-color);
  opacity: 0.85;
  transition: 0.3s ease;
}

.footer-social i:hover {
  opacity: 1;
  transform: scale(1.15);
  color: var(--primary-color);
}

@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }

  .footer-left {
    margin: 0 auto;
  }

  .footer-description {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-content {
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
  }

  .footer-section {
    text-align: center;
  }

  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-divider {
    display: block;
  }

  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 2.2rem;
  }

  .footer-section {
    width: 100%;
    text-align: center;
  }

  .footer-social{
    justify-content: center;
  }
}

@media (min-width: 950px) {
  .footer-content {
    display: grid;
    grid-template-columns: repeat(3, 0.3fr);
    gap: 2rem;
  }
}



/* =================== SCROLL BAR =================== */
::-webkit-scrollbar {
  width: 8px;
  background-color: hsl(255,5%,75%);
}

::-webkit-scrollbar-thumb {
  background-color: hsl(255,5%,65%);
}

::-webkit-scrollbar-thumb:hover {
  background-color: hsl(255,5%,55%);
}

/* =================== SCROLL UP =================== */
.scrollup {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--primary-color);
  color: var(--white-color);
  box-shadow: 0 4px 16px var(--shadow-color);
  border-radius: 0.5rem;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  z-index: var(--z-tooptip);
  opacity: 0;
  visibility: hidden;
  transition: background-color 0.4s, box-shadow 0.4s, opacity 0.4s, visibility 0.4s, transform 0.4s;
}

.scrollup:hover {
  background-color: hsl(42, 100%, 46%);
  box-shadow: 0 8px 32px hsla(18, 95%, 55%, 0.3);
  transform: translateY(-0.25rem);
}
.scrollup.show-scroll {
  opacity: 1;
  visibility: visible;
}
.scrollup__icon {
  transition: transform 0.4s;
}


/* =================== ANIMATIONS =================== */
@keyframes float {
  0%, 100% {
    transform: translateY(0rem);
  }
  50% {
    transform: translateY(-1rem);
  }
}

/* Breakpoints */
/* for smaller devices */ 

@media screen and (max-width: 340px) {

  .section__title {
    font-size: 1.25rem;
  }

}

/* for meduim devices */








@media screen and (max-width: 1150px) {


}

/* for larger devices */
@media screen and (min-width: 1150px){

  .container{
    margin-inline: auto;
  }

  .section{
    padding-block: 2.8rem 2rem;
  }



  .button,
  .button:hover{
    color: var(--white-color);
  }

  .projects__card{
    border-width: 3px;
  }

  .projects__data{
    padding: 2rem 1.5rem 4rem;
  }

  
}

@media print {
  body{
    display: none;
  }
}
