/* ===== VARIABLES & BASE ===== */
:root {
  /* Brand palette */
  --clr-dark: #2e2631;
  --clr-red: #d10d1a;
  --clr-gray: #acacac;
  --clr-green: #6aa589;
  --clr-white: #ffffff;
  --clr-light-bg: #f5f4f6;
  --clr-dark-bg: #1e1a21;

  /* Fonts */
  --font-accent: 'Oswald', sans-serif;
  --font-main: 'Commissioner', sans-serif;
}

/* ===== RESET & GLOBAL ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  font-weight: 300;
  color: var(--clr-dark);
  background-color: var(--clr-dark);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 76px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-accent);
  font-weight: 400;
  line-height: 1.2;
  color: var(--clr-dark);
}

h1 { font-weight: 400; }
h2 { font-weight: 400; }
h3 { font-family: var(--font-main); font-weight: 700; }

p {
  font-family: var(--font-main);
  font-weight: 300;
}

a {
  text-decoration: none;
  transition: color 0.2s ease;
}

img {
  max-width: 100%;
  height: auto;
}

/* ===== NAVBAR ===== */
.navbar {
  background-color: var(--clr-dark) !important;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--clr-white) !important;
}

.navbar-brand span {
  color: var(--clr-red);
}

.navbar-nav .nav-link {
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75) !important;
  padding: 0.5rem 1rem;
  transition: color 0.2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--clr-white) !important;
}

.btn-nav-cta {
  background-color: var(--clr-red);
  color: var(--clr-white);
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 0.9rem;
  border: none;
  border-radius: 4px;
  padding: 0.5rem 1.25rem;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-nav-cta:hover {
  background-color: #b00a16;
  color: var(--clr-white);
  transform: translateY(-1px);
}

/* ===== HERO ===== */
.hero {
  background-image:
    linear-gradient(135deg, rgba(46, 38, 49, 0.85) 0%, rgba(26, 21, 37, 0.85) 60%, rgba(21, 16, 32, 0.85) 100%),
    url("images/fonzav.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(209, 13, 26, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero h1 {
  font-family: var(--font-accent);
  font-weight: 400;
  font-size: 2.75rem;
  color: var(--clr-white);
  margin-bottom: 1.25rem;
}

.hero h1 span {
  color: var(--clr-red);
}

.hero .lead {
  font-family: var(--font-main);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
  margin-bottom: 2rem;
  max-width: 520px;
}

.btn-hero-primary {
  background-color: var(--clr-red);
  color: var(--clr-white);
  font-family: var(--font-main);
  font-weight: 500;
  border: none;
  border-radius: 4px;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-hero-primary:hover {
  background-color: #b00a16;
  color: var(--clr-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(209, 13, 26, 0.35);
}

.btn-hero-outline {
  background-color: transparent;
  color: var(--clr-white);
  font-family: var(--font-main);
  font-weight: 500;
  border: 2px solid var(--clr-gray);
  border-radius: 4px;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn-hero-outline:hover {
  border-color: var(--clr-white);
  color: var(--clr-white);
  transform: translateY(-2px);
}

.hero-illustration {
  background-color: rgba(255, 255, 255, 0.05);
  border: 2px dashed rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.35);
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 1.1rem;
  text-align: center;
  padding: 2rem;
}

/* ===== SECTION COMMON ===== */
.section-title {
  font-family: var(--font-accent);
  font-weight: 400;
  font-size: 2.25rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-family: var(--font-main);
  font-weight: 300;
  color: var(--clr-gray);
  font-size: 1.05rem;
  max-width: 600px;
}

.section-subtitle.centered {
  margin-left: auto;
  margin-right: auto;
}

/* ===== OBJECTS SECTION ===== */
#objects {
  background-color: var(--clr-light-bg);
}

.object-card {
  background: var(--clr-white);
  border: none;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}

.object-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(46, 38, 49, 0.12);
}

.object-card .card-icon {
  width: 64px;
  height: 64px;
  background-color: rgba(209, 13, 26, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.6rem;
  color: var(--clr-red);
  transition: background-color 0.2s ease;
}

.object-card:hover .card-icon {
  background-color: rgba(209, 13, 26, 0.15);
}

.object-card .card-title {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--clr-dark);
}

.object-card .card-text {
  font-size: 0.92rem;
  color: #666;
}

/* ===== PROJECTS SECTION ===== */
#projects {
  background-color: var(--clr-white);
}

.project-card {
  border: none;
  border-radius: 14px;
  overflow: hidden;
  background: var(--clr-white);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 24px rgba(46, 38, 49, 0.08);
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(46, 38, 49, 0.15);
}

.project-image {
  position: relative;
  overflow: hidden;
  background: #eceaec;
}

.project-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.04);
}

.project-card .card-body {
  padding: 1.5rem;
}

.project-card .card-title {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
}

.project-card .card-text {
  font-size: 0.92rem;
  color: #666;
  margin-bottom: 0;
}

/* ===== FEATURES SECTION ===== */
#features {
  background-color: var(--clr-white);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  font-family: var(--font-main);
  font-weight: 300;
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 10px;
  height: 10px;
  background-color: var(--clr-red);
  border-radius: 2px;
  transform: rotate(45deg);
}

.spec-table {
  font-family: var(--font-main);
  font-weight: 300;
}

.spec-table th {
  font-weight: 700;
  background-color: var(--clr-dark);
  color: var(--clr-white);
  border: none;
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
}

.spec-table td {
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  border-color: #e9e7ea;
}

.spec-table tbody tr:hover {
  background-color: rgba(209, 13, 26, 0.03);
}

.feature-list li {
  transition: transform 0.2s ease, color 0.2s ease;
}

.feature-list li:hover {
  transform: translateX(6px);
  color: var(--clr-dark);
}

/* ===== INTEGRATION SECTION ===== */
#integration {
  background-color: var(--clr-light-bg);
}

.integration-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background-color: var(--clr-white);
  border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}

.integration-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(46, 38, 49, 0.1);
}

.integration-icon {
  width: 72px;
  height: 72px;
  background-color: rgba(106, 165, 137, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.75rem;
  color: var(--clr-green);
  transition: background-color 0.2s ease;
}

.integration-item:hover .integration-icon {
  background-color: rgba(106, 165, 137, 0.22);
}

.integration-item h3 {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.integration-item p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0;
}

/* ===== SUPPORT SECTION ===== */
#support {
  background-color: var(--clr-white);
  position: relative;
  overflow: hidden;
}

#support::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, rgba(46, 38, 49, 0.03) 0%, rgba(46, 38, 49, 0.03) 35%, transparent 35%),
    linear-gradient(315deg, rgba(209, 13, 26, 0.04) 0%, rgba(209, 13, 26, 0.04) 30%, transparent 30%);
  opacity: 0.7;
  pointer-events: none;
}

#support .container {
  position: relative;
  z-index: 1;
}

.support-card {
  background: var(--clr-light-bg);
  border-radius: 16px;
  padding: 1.8rem;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  height: 100%;
  border: 1px solid #e6e4e8;
  position: relative;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.support-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(46, 38, 49, 0.14);
  background-color: #ffffff;
}

.support-card::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--clr-red) 0%, rgba(209, 13, 26, 0.2) 100%);
  opacity: 0.7;
}

.support-content {
  min-width: 0;
}

.support-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.support-index {
  font-family: var(--font-accent);
  font-weight: 400;
  font-size: 1.4rem;
  color: rgba(46, 38, 49, 0.45);
  letter-spacing: 1px;
}

.support-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(209, 13, 26, 0.08);
  color: var(--clr-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.support-card:hover .support-icon {
  background: rgba(209, 13, 26, 0.16);
  transform: translateY(-2px);
}

.support-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-red);
  margin-bottom: 0.4rem;
}

.support-card h3 {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
}

.support-card p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0;
}

.support-gallery {
  position: relative;
  min-height: 420px;
  max-width: 520px;
  margin: 0 auto;
}

.support-photo {
  position: absolute;
    width: 70%;
    height: 560px;
  border-radius: 14px;
  border: 1px solid rgba(46, 38, 49, 0.1);
  box-shadow: 0 18px 40px rgba(46, 38, 49, 0.18);
  overflow: hidden;
  display: flex;
      align-items: start;
  padding: 1rem 1.2rem;
  background-size: cover;
  background-position: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.support-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(46, 38, 49, 0.05) 0%, rgba(46, 38, 49, 0.45) 100%);
  pointer-events: none;
}

.support-photo-label {
  position: relative;
  z-index: 1;
  font-family: var(--font-accent);
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.support-photo-1 {
  top: 0;
  right: 25%;
  background-image: linear-gradient(135deg, rgba(209, 13, 26, 0.3), rgba(46, 38, 49, 0.4));
}

.support-photo-2 {
    top: 300px;
    left: 40%;
  z-index: 2;
  background-image: linear-gradient(135deg, rgba(106, 165, 137, 0.35), rgba(46, 38, 49, 0.35));
}

.support-photo-3 {
top: 460px;
    right: 40%;
  z-index: 3;
  background-image: linear-gradient(135deg, rgba(172, 172, 172, 0.35), rgba(46, 38, 49, 0.35));
}

.support-photo:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 22px 44px rgba(46, 38, 49, 0.22);
}

/* ===== GUARANTEE SECTION ===== */
#guarantee {
  background: linear-gradient(135deg, var(--clr-dark) 0%, #1a1525 100%);
  color: var(--clr-white);
}

#guarantee .section-title {
  color: var(--clr-white);
}

#guarantee .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.guarantee-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: background 0.2s ease, transform 0.2s ease;
  height: 100%;
}

.guarantee-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.guarantee-icon {
  font-size: 2.5rem;
  color: var(--clr-red);
  margin-bottom: 1rem;
}

.guarantee-card h3 {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--clr-white);
  margin-bottom: 0.75rem;
}

.guarantee-card p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0;
}

/* ===== FORM SECTION ===== */
#request {
  background-color: var(--clr-white);
}

.form-wrapper {
  background-color: var(--clr-light-bg);
  border-radius: 16px;
  padding: 3rem;
  border: 1px solid #e9e7ea;
}

.form-wrapper .form-label {
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--clr-dark);
  margin-bottom: 0.35rem;
}

.form-wrapper .form-control,
.form-wrapper .form-select {
  border: 1px solid #d5d3d6;
  border-radius: 6px;
  padding: 0.65rem 1rem;
  font-family: var(--font-main);
  font-weight: 300;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-wrapper .form-control:focus,
.form-wrapper .form-select:focus {
  border-color: var(--clr-red);
  box-shadow: 0 0 0 0.2rem rgba(209, 13, 26, 0.15);
}

.form-wrapper textarea.form-control {
  min-height: 110px;
  resize: vertical;
}

.btn-submit {
  background-color: var(--clr-red);
  color: var(--clr-white);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  padding: 0.85rem 3rem;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-submit:hover {
  background-color: #b00a16;
  color: var(--clr-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(209, 13, 26, 0.3);
}

.required-note {
  font-size: 0.82rem;
  color: var(--clr-gray);
}

/* ===== FOOTER ===== */
footer {
  background-color: var(--clr-dark);
  color: rgba(255, 255, 255, 0.6);
}

footer a {
  color: rgba(255, 255, 255, 0.6);
}

footer a:hover {
  color: var(--clr-white);
}

.footer-brand {
  font-family: var(--font-accent);
  font-size: 1.35rem;
  color: var(--clr-white);
}

.footer-brand span {
  color: var(--clr-red);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.4rem;
}

.footer-links a {
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-copy {
  font-size: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== UTILITY ===== */
.text-red { color: var(--clr-red); }
.text-green { color: var(--clr-green); }
.bg-brand-dark { background-color: var(--clr-dark); }