:root {
  --primary: #b72626;
  --dark: #434242;
  --light: #f7f3ef;
  --white: #ffffff;
  --muted: #7b7676;
  --border: rgba(67, 66, 66, 0.12);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  --radius: 22px;
  --transition: all 0.4s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.rev-2 img{
    height: 500px;
width: 100%;
object-fit: cover;
object-position: top;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--dark);
  background: linear-gradient(180deg, #fff 0%, #fbf8f5 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1180px, 92%);
  margin: auto;
}

.section-pad {
  padding: 90px 0;
}

.soft-bg {
  background: #f6f1ee;
}

.texture-bg {
  background:
    radial-gradient(circle at top right, rgba(183, 38, 38, 0.06), transparent 25%),
    radial-gradient(circle at bottom left, rgba(67, 66, 66, 0.08), transparent 30%),
    #fff;
}

.center-text {
  text-align: center;
}

.eyebrow {
  display: inline-block;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.eyebrow.light {
  color: #ffd8d8;
}

h1,
h2,
h3,
h4 {
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 3.35rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  color: #5e5959;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 15px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  transition: var(--transition);
  border: 1px solid var(--primary);
  box-shadow: 0 10px 30px rgba(183, 38, 38, 0.18);
  text-align: center;
}

.btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 35px rgba(183, 38, 38, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--dark);
  color: #fff;
}

.btn-light {
  background: #fff;
  color: var(--dark);
  border-color: #fff;
}

.btn-nav {
  padding: 12px 20px;
  font-size: 0.92rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo {
  height: 35px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  font-weight: 500;
  position: relative;
}

.site-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.site-nav a:hover::after,
.site-nav a.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--dark);
  cursor: pointer;
}

/* Hero */
.hero {
  padding-top: 70px;
}

.hero-grid,
.split-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-copy p {
  max-width: 620px;
  margin: 18px 0 28px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-badges {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-badges span {
  padding: 10px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  font-size: 0.92rem;
  box-shadow: var(--shadow);
}

/* Hero Mosaic */
.mosaic {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: repeat(2, 220px);
  gap: 16px;
}
.split-media.reveal.visible img {
    height: 700px;
    width: 95%;
    object-fit: cover;
}
.mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.mosaic img:first-child {
  grid-row: span 2;
}

.mosaic img:hover,
.feature-card:hover img,
.gallery-card:hover img,
.product-card:hover img {
  transform: scale(1.03);
}

/* Grid Layouts */
.grid-2,
.grid-3,
.grid-4,
.stats-grid,
.cards-grid,
.icon-grid,
.team-grid {
  display: grid;
  gap: 24px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3,
.cards-grid {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4,
.icon-grid {
  grid-template-columns: repeat(4, 1fr);
}

/* Stats */
.stats-grid {
  grid-template-columns: repeat(2, 1fr);
  margin: 28px 0;
}

.stat,
.icon-card,
.team-card,
.contact-card,
.contact-form-wrap {
  background: #fff;
  border: 1px solid var(--border);
  padding: 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stat strong {
  font-size: 2rem;
  color: var(--primary);
  display: block;
}

.stat span {
  font-size: 0.95rem;
  color: #6d6666;
}

/* Cards */
.feature-card,
.gallery-card,
.product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.feature-card img,
.gallery-card img,
.product-card img {
  height: 260px;
  width: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.feature-card div,
.gallery-card div,
.product-card div {
  padding: 24px;
}

.feature-card:hover,
.gallery-card:hover,
.product-card:hover,
.icon-card:hover,
.team-card:hover,
.contact-card:hover,
.contact-form-wrap:hover {
  transform: translateY(-8px);
}

.section-head {
  margin-bottom: 36px;
}

.split-copy p {
  margin: 18px 0;
}

.rounded-shadow {
  border-radius: 15px;
  box-shadow: var(--shadow);
}

/* Tabs */
.product-tabs {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.tab-btn {
  padding: 12px 22px;
  border: none;
  border-radius: 999px;
  background: #efe7e3;
  color: var(--dark);
  cursor: pointer;
  font-weight: 700;
  transition: var(--transition);
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--primary);
  color: #fff;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeUp 0.5s ease;
}

.tab-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  background: #fff;
  border-radius: 30px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.tab-grid img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 24px;
}

/* Check List */
.check-list {
  list-style: none;
  margin: 20px 0 24px;
}

.check-list li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 12px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* CTA */
.cta-band {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--dark), #2d2d2d 65%, var(--primary));
  color: #fff;
}

.cta-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}

/* Footer */
.site-footer {
  background: #171717;
  color: #f1f1f1;
  padding-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 28px;
  padding-bottom: 34px;
}

.footer-grid a,
.footer-grid p {
  display: block;
  color: #d3d3d3;
  margin-bottom: 10px;
}

.footer-logo {
  height: 60px;
  filter: brightness(0) invert(1);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
  text-align: center;
}

/* Cursor Glow */
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(183, 38, 38, 0.10) 0%, rgba(183, 38, 38, 0) 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 0;
  mix-blend-mode: multiply;
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: all 0.8s cubic-bezier(.2, .65, .2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.22s;
}

.delay-3 {
  transition-delay: 0.32s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 991px) {
  .site-nav {
    position: absolute;
    top: 86px;
    right: 4%;
    background: #fff;
    border: 1px solid var(--border);
    padding: 18px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: min(320px, 92vw);
  }

  .site-nav.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .hero-grid,
  .split-grid,
  .contact-grid,
  .tab-grid,
  .footer-grid,
  .grid-4,
  .icon-grid,
  .grid-3,
  .cards-grid,
  .grid-2,
  .team-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, 180px);
  }

  .mosaic img:first-child {
    grid-row: span 1;
  }

  .section-pad {
    padding: 72px 0;
  }

  .cta-flex {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 2.35rem;
  }

  .hero {
    padding-top: 30px;
  }

  .hero-actions,
  .hero-badges {
    flex-direction: column;
    align-items: flex-start;
  }

  .mosaic {
    grid-template-columns: 1fr;
  }

  .logo {
    height: 48px;
  }
}

.premium-banner {
  position: relative;
  padding: 120px 0 90px;
  background: linear-gradient(
      rgba(0,0,0,0.55),
      rgba(0,0,0,0.55)
    ),
    url("../images/iStock-1427529092.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
  overflow: hidden;
}

.premium-banner .overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(183,38,38,0.3), transparent 40%);
}

.premium-banner h1 {
  color: #fff;
}

.premium-banner p {
  color: #ddd;
  max-width: 600px;
  margin: auto;
}

/* Divider effect */
.premium-banner::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 80px;
  background: white;
  border-top-left-radius: 50% 40px;
  border-top-right-radius: 50% 40px;
}
/* ================= CONTACT PAGE FIX ================= */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: stretch;
}

.contact-card,
.contact-form-wrap {
  background: #fff;
  border: 1px solid rgba(67, 66, 66, 0.08);
  border-radius: 28px;
  padding: 42px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.contact-card h2 {
  font-size: 3rem;
  margin-bottom: 22px;
  color: var(--dark);
}

.contact-card p {
  font-size: 1.2rem;
  margin-bottom: 14px;
  color: #555;
}

.contact-card strong {
  color: var(--dark);
}

/* FORM */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 18px 20px;
  border: 1px solid rgba(67, 66, 66, 0.15);
  border-radius: 16px;
  font-size: 1rem;
  font-family: Arial, Helvetica, sans-serif;
  background: #faf8f7;
  color: var(--dark);
  outline: none;
  transition: all 0.3s ease;
  resize: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #888;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(183, 38, 38, 0.08);
}

.contact-form textarea {
  min-height: 180px;
}

.contact-form button {
  align-self: flex-start;
  margin-top: 8px;
  min-width: 200px;
}

/* ================= PAGE BANNER IMPROVE ================= */

.page-banner {
  position: relative;
  padding: 130px 0 100px;
  background: linear-gradient(
      rgba(25, 25, 25, 0.55),
      rgba(25, 25, 25, 0.55)
    ),
    url("../images/iStock-1427529092.jpg");
  background-size: cover;
  background-position: center;
  overflow: hidden;
  color: #fff;
}

.page-banner .container {
  position: relative;
  z-index: 2;
}

.page-banner h1 {
  color: #fff;
  margin-bottom: 12px;
}

.page-banner p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
}

.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(183,38,38,0.28), transparent 28%),
    radial-gradient(circle at bottom left, rgba(255,255,255,0.08), transparent 30%);
  z-index: 1;
}

.page-banner::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 95px;
  background: #f7f3ef;
  border-top-left-radius: 50% 50px;
  border-top-right-radius: 50% 50px;
  z-index: 2;
}

/* ================= MOBILE ================= */

@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-card h2 {
    font-size: 2.4rem;
  }
}

@media (max-width: 640px) {
  .contact-card,
  .contact-form-wrap {
    padding: 26px;
    border-radius: 22px;
  }

  .contact-card h2 {
    font-size: 2rem;
  }

  .contact-card p {
    font-size: 1rem;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 15px 16px;
    border-radius: 14px;
  }

  .contact-form button {
    width: 100%;
    min-width: unset;
  }
}

.container.footer-grid br {
    display: none;
}
.container.footer-grid p {
    margin-bottom: 0px !important;
}
/* ================= FOOTER CONTACT FIX ================= */

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  font-size: 0.98rem;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.82);
  transition: 0.3s ease;
}

.footer-contact-item a:hover {
  color: #fff;
}

.footer-icon {
  min-width: 22px;
  font-size: 1rem;
  margin-top: 2px;
}

