:root {
  --red: #ed1c24;
  --green: #007a53;
  --dark: #071f3d;
  --text: #10213d;
  --muted: #667085;
  --soft: #f6f8fb;
  --white: #ffffff;
  --border: #e4e9f2;
  --shadow: 0 24px 70px rgba(8,31,66,.12);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 95px;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

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

.container {
  width: 92%;
  max-width: 1240px;
  margin: auto;
}

.main-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.top-bar {
  background: #b40601;
  color: #ffffff;
  font-size: 13px;
}

.top-bar-wrap {
  min-height: 42px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.top-info {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.top-socials {
  display: flex;
  gap: 16px;
}

.top-socials a {
  color: #ffffff;
  font-weight: 700;
  transition: .25s ease;
}

.top-socials a:hover {
  color: #ed1c24;
}

.main-nav-row {
  background: #ffffff;
}

.nav-center-wrap {
  min-height: 118px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.center-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.center-logo img {
  height: 105px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-left {
  margin-right: 180px;
}

.nav-right {
  margin-left: 180px;
}

.nav-menu a {
  color: #007252;
  font-weight: 900;
  font-size: 15px;
  transition: .25s ease;
}

.nav-menu a:hover {
  color: #ed1c24;
}

.nav-cta {
  background: #ed1c24;
  color: #ffffff !important;
  padding: 13px 20px;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(237,28,36,.22);
}

.nav-cta:hover {
  background: #007a53;
  transform: translateY(-3px);
}

.mobile-menu-btn {
  display: none;
  margin-left: auto;
  border: 0;
  background: #071f3d;
  color: #ffffff;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-size: 22px;
}

@media (max-width: 991px) {
  .top-bar-wrap {
    justify-content: center;
    text-align: center;
  }

  .top-socials {
    display: none;
  }

  .nav-center-wrap {
    min-height: 90px;
    justify-content: space-between;
  }

  .center-logo {
    position: static;
    transform: none;
  }

  .center-logo img {
    height: 76px;
  }

  .nav-left,
  .nav-right {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .nav-menu.active {
    display: flex;
    position: absolute;
    top: 90px;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 24px;
    border-bottom: 1px solid #e4e9f2;
  }
}

.mobile-menu-btn {
  display: none;
  margin-left: auto;
  border: 0;
  background: var(--dark);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-size: 22px;
}

.hero {
  position: relative;
  padding: 110px 0 90px;
  background: #ff0c01;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 72px 72px;
}

.hero-shape {
  position: absolute;
  right: -130px;
  top: 120px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237,28,36,.28), transparent 65%);
}

.hero-flex {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 70px;
}

.hero-text {
  flex: 1;
}

.eyebrow,
.section-tag {
  display: inline-block;
  color: #007a53;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(46px, 6vw, 56px);
  line-height: 1.03;
  font-weight: 900;
  max-width: 760px;
  margin-bottom: 26px;
}

.hero p {
  color: #fff;
  font-size: 18px;
  line-height: 1.8;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 34px;
}

.main-header {
  position: relative;
  width: 100%;
  z-index: 10;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.main-header.scrolled {
  box-shadow: none;
}

.top-socials {
  display: flex;
  gap: 12px;
}

.top-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: .25s ease;
}

.top-socials a:hover {
  background: #ed1c24;
  color: #ffffff;
  transform: translateY(-3px);
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 900;
  transition: .3s ease;
}

.btn-dgreen {
    background: #007252;
    color: var(--white);
    box-shadow: 0 14px 32px rgba(237, 28, 36, .25);
}

.btn-red {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 14px 32px rgba(237,28,36,.25);
}

.btn-red:hover {
  background: var(--green);
  transform: translateY(-3px);
}

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

.btn-white:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-3px);
}

.hero-visual {
  flex: .85;
  position: relative;
}

.hero-visual img {
  height: 560px;
  width: 100%;
  object-fit: cover;
  border-radius: 40px 40px 40px 120px;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
}

.hero-panel {
  position: absolute;
  left: -40px;
  bottom: 45px;
  width: 270px;
  background: var(--white);
  padding: 26px;
  border-radius: 26px;
  box-shadow: var(--shadow);
  border-bottom: 6px solid var(--green);
}

.hero-panel strong {
  display: block;
  color: var(--red);
  font-size: 42px;
  margin-bottom: 8px;
}

.hero-panel span {
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.about,
.process,
.services,
.why,
.cta,
.contact {
  padding: 95px 0;
}

.process h2 {
    color: #ed1c24;
}

.about-flex {
  display: flex;
  gap: 70px;
  align-items: flex-start;
}

.about-left {
  flex: .95;
  position: sticky;
  top: 120px;
}

.about-left h2,
.section-heading h2,
.services-title h2,
.why-content h2,
.cta h2,
.contact-info h2 {
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 1.08;
  font-weight: 900;
  margin-bottom: 22px;
}

.about-left p,
.services-title p,
.why-content p,
.contact-info p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.about-right {
  flex: 1.05;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.statement-card {
  background: var(--soft);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 38px;
  box-shadow: 0 16px 40px rgba(8,31,66,.06);
}

.statement-card h3 {
  font-size: 26px;
  margin-bottom: 14px;
}

.statement-card p {
  color: var(--muted);
  line-height: 1.8;
}

.red-line {
  border-left: 8px solid var(--red);
}

.green-line {
  border-left: 8px solid var(--green);
}

.process {
  background: var(--soft);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 65px;
}

.process-line {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.process-line::before {
  content: "";
  position: absolute;
  top: 35px;
  left: 20px;
  right: 20px;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--green));
}

.process-item {
  position: relative;
  flex: 1;
  padding-top: 80px;
}

.process-item span {
  position: absolute;
  top: 0;
  left: 0;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--white);
  border: 6px solid var(--red);
  display: grid;
  place-items: center;
  font-weight: 900;
  color: var(--red);
  box-shadow: 0 12px 30px rgba(8,31,66,.12);
}

.process-item:nth-child(even) span {
  border-color: var(--green);
  color: var(--green);
}

.process-item h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.process-item p {
  color: var(--muted);
  line-height: 1.7;
}

.services-flex {
  display: flex;
  gap: 70px;
  align-items: flex-start;
}

.services-title {
  flex: .8;
  position: sticky;
  top: 120px;
}

.services-title .btn {
  margin-top: 28px;
}

.services-list {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-row {
  display: flex;
  align-items: flex-start;
  gap: 26px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 16px 40px rgba(8,31,66,.06);
  transition: .35s ease;
}

.service-row:hover {
  transform: translateX(12px);
  border-color: rgba(237,28,36,.3);
  box-shadow: 0 24px 60px rgba(8,31,66,.12);
}

.service-row span {
  min-width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(237,28,36,.1);
  color: var(--red);
  display: grid;
  place-items: center;
  font-weight: 900;
}

.service-row:hover span {
  background: var(--red);
  color: var(--white);
}

.service-row h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.service-row p {
  color: var(--muted);
  line-height: 1.7;
}

.why {
  background: var(--dark);
  color: var(--white);
}

.why-flex {
  display: flex;
  gap: 70px;
  align-items: center;
}

.why-image {
  flex: .9;
}

.why-image img {
  height: 520px;
  width: 100%;
  object-fit: cover;
  border-radius: 36px 110px 36px 36px;
  box-shadow: 0 30px 80px rgba(0,0,0,.3);
}

.why-content {
  flex: 1.1;
}

.why-content p {
  color: #cbd5e1;
}

.why-list {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.why-list div {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.why-list h3 {
  color: var(--white);
  font-size: 23px;
  margin-bottom: 8px;
}

.why-list p {
  color: #cbd5e1;
  line-height: 1.7;
}

.cta {
  background: var(--white);
}

.cta-box {
  background:
    linear-gradient(135deg, rgba(237,28,36,.95), rgba(0,122,83,.95)),
    url('https://images.unsplash.com/photo-1552664730-d307ca884978?q=80&w=1400&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  color: var(--white);
  border-radius: 38px;
  padding: 58px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  box-shadow: var(--shadow);
}

.cta .section-tag {
  color: var(--white);
}

.cta h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.cta .btn-red {
  background: var(--white);
  color: var(--red);
  box-shadow: none;
  white-space: nowrap;
}

.contact {
  background: var(--soft);
}

.contact-flex {
  display: flex;
  gap: 70px;
  align-items: flex-start;
}

.contact-info {
  flex: .9;
}

.contact-info p {
  margin-bottom: 30px;
}

.contact-detail {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 22px;
  border-radius: 22px;
  margin-bottom: 14px;
}

.contact-detail strong {
  display: block;
  color: var(--red);
  margin-bottom: 5px;
}

.contact-detail span {
  color: var(--muted);
}

.contact-form {
  flex: 1.1;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 34px;
  padding: 42px;
  box-shadow: var(--shadow);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: #f9fafb;
  padding: 17px 18px;
  border-radius: 16px;
  margin-bottom: 16px;
  font: inherit;
  outline: none;
  transition: .25s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(0,122,83,.08);
}

.contact-form textarea {
  min-height: 135px;
  resize: vertical;
}

.contact-form button {
  width: 100%;
  border: 0;
  background: var(--red);
  color: var(--white);
  padding: 18px;
  border-radius: 16px;
  font-weight: 900;
  cursor: pointer;
  transition: .3s ease;
}

.contact-form button:hover {
  background: var(--green);
  transform: translateY(-3px);
}

.footer {
  background: var(--dark);
  color: var(--white);
  padding: 54px 0 24px;
}

.footer-flex {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand {
  max-width: 430px;
}

.footer-brand img {
  max-width: 190px;
  background: var(--white);
  padding: 10px;
  border-radius: 14px;
  margin-bottom: 18px;
}

.footer-brand p {
  color: #cbd5e1;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.footer-links a {
  color: #cbd5e1;
  font-weight: 700;
  transition: .25s ease;
}

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

.footer-bottom {
  padding-top: 22px;
  color: #cbd5e1;
  font-size: 14px;
}

.scroll-top-btn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 54px;
  height: 54px;
  border: none;
  border-radius: 16px;
  background: var(--red);
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: .3s ease;
  z-index: 999;
}

.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background: var(--green);
  transform: translateY(-5px);
}

@media (max-width: 991px) {
  .nav-menu,
  .nav-btn {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .nav-menu.active {
    display: flex;
    position: absolute;
    top: 88px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    border-bottom: 1px solid var(--border);
  }

  .hero-flex,
  .about-flex,
  .services-flex,
  .why-flex,
  .contact-flex,
  .cta-box,
  .footer-flex,
  .intro-flex,
  .process-line {
    flex-direction: column;
  }

  .about-left,
  .services-title {
    position: static;
  }

  .hero-visual img,
  .why-image img {
    height: 420px;
  }

  .hero-panel {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 20px;
    width: 100%;
  }

  .process-line::before {
    top: 0;
    bottom: 0;
    left: 35px;
    right: auto;
    width: 3px;
    height: auto;
  }

  .process-item {
    padding-top: 0;
    padding-left: 95px;
  }

  .process-item span {
    left: 0;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 135px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-actions,
  .intro-flex,
  .footer-links {
    flex-direction: column;
  }

  .cta-box,
  .contact-form,
  .statement-card {
    padding: 30px;
  }

  .logo img {
    height: 52px;
  }
}

/* about us  */

.about-premium {
  padding: 110px 0 90px;
  background:
    radial-gradient(circle at top right, rgba(237,28,36,.08), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  overflow: hidden;
}

.about-premium-wrap {
  display: flex;
  gap: 80px;
  align-items: center;
}

.about-copy {
  flex: .95;
}

.about-copy h2 {
  font-size: clamp(42px, 5vw, 36px);
  line-height: 1.05;
  color: #ed1c24;
  font-weight: 900;
  margin-bottom: 24px;
}

.about-copy h2 span {
  color: #ed1c24;
}

.about-copy > p {
  color: #667085;
  font-size: 18px;
  line-height: 1.9;
  max-width: 620px;
  margin-bottom: 36px;
}

.about-feature-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.about-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding-bottom: 22px;
  border-bottom: 1px solid #e4e9f2;
}

.about-feature-icon {
  min-width: 58px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 24px;
}

.about-feature-icon.red {
  background: rgba(237,28,36,.12);
  color: #ed1c24;
}

.about-feature-icon.green {
  background: rgba(0,122,83,.12);
  color: #007a53;
}

.about-feature h4 {
  font-size: 20px;
  color: #071f3d;
  margin-bottom: 8px;
}

.about-feature p {
  color: #667085;
  line-height: 1.7;
}

.about-visual {
  flex: 1.05;
  position: relative;
  padding-bottom: 285px;
}

.about-image-main {
  position: relative;
  overflow: hidden;
  border-radius: 120px 28px 120px 28px;
  box-shadow: 0 28px 70px rgba(8,31,66,.14);
}

.about-image-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7,31,61,.1), rgba(237,28,36,.08));
  z-index: 1;
}

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

.about-floating-card {
  position: absolute;
  left: -42px;
  bottom: 120px;
  width: 245px;
  background: linear-gradient(135deg, #007a53, #024b35);
  color: #ffffff;
  padding: 34px 30px;
  border-radius: 28px;
  box-shadow: 0 26px 60px rgba(0,122,83,.25);
  z-index: 3;
}

.about-floating-card i {
  font-size: 34px;
  margin-bottom: 20px;
  display: block;
}

.about-floating-card strong {
  display: block;
  font-size: 48px;
  line-height: 1;
  margin-bottom: 8px;
}

.about-floating-card span {
  display: block;
  font-weight: 800;
  margin-bottom: 16px;
}

.about-floating-card small {
  color: rgba(255,255,255,.78);
  line-height: 1.6;
}

.about-mini-cards {
    position: absolute;
    right: 0;
    bottom: 58px;
    display: flex;
    gap: 22px;
    width: 96%;
}

.about-mini-card {
  flex: 1;
  background: #ffffff;
  border: 1px solid #e4e9f2;
  border-radius: 26px;
  padding: 30px 26px;
  box-shadow: 0 18px 45px rgba(8,31,66,.09);
  transition: .35s ease;
}

.about-mini-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 60px rgba(8,31,66,.14);
}

.red-border {
  border-left: 5px solid #ed1c24;
}

.green-border {
  border-left: 5px solid #007a53;
}

.mini-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
}

.mini-icon.red {
  background: #ed1c24;
  color: #ffffff;
}

.mini-icon.green {
  background: #007a53;
  color: #ffffff;
}

.about-mini-card h3 {
  color: #071f3d;
  font-size: 22px;
  margin-bottom: 14px;
}

.about-mini-card p {
  color: #667085;
  line-height: 1.7;
  font-size: 14px;
}

.about-bottom-stats {
  margin-top: 60px;
  background: #ffffff;
  border: 1px solid #e4e9f2;
  border-radius: 22px;
  box-shadow: 0 16px 45px rgba(8,31,66,.06);
  display: flex;
  overflow: hidden;
}

.about-bottom-stats div {
  flex: 1;
  padding: 28px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-right: 1px solid #e4e9f2;
  transition: .35s ease;
}

.about-bottom-stats div:last-child {
  border-right: none;
}

.about-bottom-stats div:hover {
  background: #f8fafc;
  transform: translateY(-4px);
}

.about-bottom-stats i {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0,122,83,.1);
  color: #007a53;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
}

.about-bottom-stats strong {
  color: #007a53;
  font-size: 28px;
  font-weight: 900;
}

.about-bottom-stats span {
  color: #667085;
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 991px) {
  .about-premium-wrap {
    flex-direction: column;
  }

  .about-visual {
    width: 100%;
    padding-bottom: 0;
  }

  .about-floating-card,
  .about-mini-cards {
    position: static;
    width: 100%;
    margin-top: 22px;
  }

  .about-mini-cards,
  .about-bottom-stats {
    flex-direction: column;
  }

  .about-bottom-stats div {
    border-right: none;
    border-bottom: 1px solid #e4e9f2;
  }
}

/* footer */

/* CONTACT PREMIUM */
.contact-premium {
  background:
    radial-gradient(circle at top left, rgba(237,28,36,.07), transparent 28%),
    radial-gradient(circle at bottom right, rgba(0,122,83,.07), transparent 30%),
    #f8fafc;
  padding: 110px 0;
}

.contact-header {
  max-width: 780px;
  margin-bottom: 50px;
}

.contact-header h2 {
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.08;
  color: #ed1c24;
  font-weight: 900;
  margin-bottom: 20px;
}

.contact-header p {
  color: #667085;
  font-size: 18px;
  line-height: 1.8;
}

.contact-premium-wrap {
  display: flex;
  gap: 36px;
  align-items: stretch;
}

.contact-info-panel {
  flex: .9;
  background: #b40601;
  color: #ffffff;
  border-radius: 34px;
  padding: 36px;
  position: relative;
  overflow: hidden;
}

.contact-info-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px); */
  background-size: 58px 58px;
}

.contact-info-panel > * {
  position: relative;
  z-index: 2;
}

.contact-info-card {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.contact-info-card:first-child {
  padding-top: 0;
}

.contact-info-card strong {
  display: block;
  font-size: 15px;
  color: #ffffff;
  margin-bottom: 5px;
}

.contact-info-card span {
  color: #cbd5e1;
  line-height: 1.5;
  word-break: break-word;
}

.contact-info-icon {
  min-width: 52px;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.contact-info-icon.red {
  background: rgba(237,28,36,.18);
  color: #ff5b61;
}

.contact-info-icon.green {
  background: rgba(0,122,83,.22);
  color: #33d19a;
}

.contact-note {
  margin-top: 28px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  padding: 22px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.contact-note i {
  font-size: 26px;
  color: #33d19a;
}

.contact-note p {
  color: #cbd5e1;
  line-height: 1.7;
  font-size: 14px;
}

.premium-form {
  flex: 1.1;
  padding: 42px;
  border-radius: 34px;
  background: #ffffff;
  border: 1px solid #e4e9f2;
  box-shadow: 0 24px 70px rgba(8,31,66,.1);
}

.premium-form .form-row {
  display: flex;
  gap: 16px;
}

.premium-form .form-row input {
  flex: 1;
}

.premium-form input,
.premium-form select,
.premium-form textarea {
  background: #f8fafc;
}

.premium-form button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.premium-form button i {
  transition: .3s ease;
}

.premium-form button:hover i {
  transform: translateX(5px);
}

/* FOOTER PREMIUM */
.footer-premium {
  position: relative;
  background: #ed1c24;
  color: #ffffff;
  padding: 80px 0 26px;
  overflow: hidden;
}

.footer-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: 70px 70px;
}

.footer-premium::after {
  content: "";
  position: absolute;
  right: -140px;
  top: -140px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237,28,36,.18), transparent 68%);
}

.footer-premium .container {
  position: relative;
  z-index: 2;
}

.footer-main {
  display: flex;
  gap: 50px;
  justify-content: space-between;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.footer-brand {
  max-width: 360px;
}

.footer-brand img {
  max-width: 210px;
  background: #ffffff;
  padding: 12px;
  border-radius: 16px;
  margin-bottom: 22px;
}

.footer-brand p {
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 22px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s ease;
}

.footer-socials a:hover {
  background: #ed1c24;
  transform: translateY(-5px);
}

.footer-column {
  min-width: 170px;
}

.footer-column h4 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 22px;
  position: relative;
}

.footer-column h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 36px;
  height: 3px;
  background: #ed1c24;
  border-radius: 99px;
}

.footer-column a,
.footer-column p {
  color: #cbd5e1;
  display: block;
  margin-bottom: 13px;
  line-height: 1.6;
  transition: .25s ease;
}

.footer-column p {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.footer-column p i {
  color: #33d19a;
}

.footer-column a:hover {
  color: #ffffff;
  transform: translateX(5px);
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #cbd5e1;
  font-size: 14px;
}

@media (max-width: 991px) {
  .contact-premium-wrap,
  .footer-main,
  .footer-bottom,
  .premium-form .form-row {
    flex-direction: column;
  }

  .footer-main {
    gap: 34px;
  }
}

.services-premium {
  padding: 110px 0;
  background: #ffffff;
}

.services-premium-header {
  max-width: 760px;
  margin-bottom: 50px;
}

.services-premium-header h2,
.faq-header h2 {
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.08;
  color: #071f3d;
  font-weight: 900;
  margin-bottom: 18px;
}

.services-premium-header p,
.faq-header p {
  color: #667085;
  font-size: 18px;
  line-height: 1.8;
}

.services-premium-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-premium-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 30px;
  background: #f8fafc;
  border: 1px solid #e4e9f2;
  border-radius: 28px;
  transition: .35s ease;
}

.service-premium-item:hover {
  background: #ffffff;
  transform: translateX(10px);
  box-shadow: 0 22px 55px rgba(8,31,66,.1);
  border-color: rgba(237,28,36,.25);
}

.service-premium-item > span {
  color: #ed1c24;
  font-size: 34px;
  font-weight: 900;
  min-width: 60px;
}

.service-premium-icon {
  min-width: 64px;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(237,28,36,.12);
  color: #ed1c24;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.service-premium-icon.green {
  background: rgba(0,122,83,.12);
  color: #007a53;
}

.service-premium-item h3 {
  font-size: 24px;
  color: #071f3d;
  margin-bottom: 8px;
}

.service-premium-item p {
  color: #667085;
  line-height: 1.7;
}

.faq-section {
  padding: 110px 0;
  background:
    radial-gradient(circle at top left, rgba(0,122,83,.06), transparent 28%),
    #f8fafc;
}

.faq-header {
  max-width: 760px;
  margin-bottom: 44px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e4e9f2;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(8,31,66,.05);
}

.faq-question {
  width: 100%;
  border: none;
  background: transparent;
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #071f3d;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
  text-align: left;
}

.faq-question i {
  color: #ed1c24;
  transition: .3s ease;
}

.faq-answer {
  display: none;
  padding: 0 28px 24px;
}

.faq-answer p {
  color: #667085;
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

@media (max-width: 640px) {
  .service-premium-item {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* SERVICES IMAGE + RED OVERLAY */
.services-premium {
  position: relative;
  background:
    linear-gradient(135deg, rgba(237,28,36,.92), rgba(120,8,14,.88)),
    url('https://images.unsplash.com/photo-1552664730-d307ca884978?q=80&w=1600&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.services-premium::before,
.faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 70px 70px;
  pointer-events: none;
}

.services-premium .container,
.faq-section .container {
  position: relative;
  z-index: 2;
}

.services-premium .section-tag,
.services-premium-header h2,
.services-premium-header p {
  color: #ffffff;
}

.service-premium-item {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.2);
  backdrop-filter: blur(10px);
}

.service-premium-item:hover {
  background: #ffffff;
  border-color: #ffffff;
}

.service-premium-item > span {
  color: #ffffff;
}

.service-premium-item:hover > span {
  color: #ed1c24;
}

.service-premium-icon,
.service-premium-icon.green {
  background: #ffffff;
}

.service-premium-icon {
  color: #ed1c24;
}

.service-premium-icon.green {
  color: #007a53;
}

.service-premium-item h3 {
  color: #ffffff;
}

.service-premium-item p {
  color: rgba(255,255,255,.86);
}

.service-premium-item:hover h3 {
  color: #071f3d;
}

.service-premium-item:hover p {
  color: #667085;
}


/* FAQ IMAGE + RED OVERLAY */
.faq-section {
  position: relative;
  background:
    linear-gradient(135deg, rgba(105,4,10,.94), rgba(237,28,36,.9)),
    url('https://images.unsplash.com/photo-1556761175-b413da4baf72?q=80&w=1600&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.faq-section .section-tag,
.faq-header h2,
.faq-header p {
  color: #ffffff;
}

.faq-item {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.2);
  backdrop-filter: blur(10px);
}

.faq-question {
  color: #ffffff;
}

.faq-question i {
  color: #ffffff;
}

.faq-answer p {
  color: rgba(255,255,255,.86);
}

.faq-item.active {
  background: #ffffff;
}

.faq-item.active .faq-question {
  color: #071f3d;
}

.faq-item.active .faq-question i {
  color: #ed1c24;
}

.faq-item.active .faq-answer p {
  color: #667085;
}

/* PREMIUM HERO */
.hero {
  position: relative;
  padding: 110px 0 90px;
  background:
    linear-gradient(135deg, rgba(237,28,36,.90), rgba(120,8,14,.86)),
    url('https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?q=80&w=1800&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 72px 72px;
}

.hero::after {
  content: "";
  position: absolute;
  right: -180px;
  top: -120px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.14), transparent 70%);
}

.hero-flex {
  position: relative;
  z-index: 2;
}

.hero h1 {
  color: #ffffff;
  text-shadow: 0 10px 35px rgba(0,0,0,.18);
}

.hero p {
  color: rgba(255,255,255,.88);
}

.hero-visual img {
  border: 1px solid rgba(255,255,255,.18);
}

.btn-white {
  backdrop-filter: blur(8px);
}


/* PREMIUM FOOTER */
.footer-premium {
  position: relative;
  background:
    linear-gradient(135deg, rgba(237,28,36,.94), rgba(120,8,14,.92)),
    url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?q=80&w=1800&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.footer-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 70px 70px;
}

.footer-premium::after {
  content: "";
  position: absolute;
  left: -180px;
  bottom: -180px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.12), transparent 72%);
}

.footer-premium .container {
  position: relative;
  z-index: 2;
}

.footer-socials a {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
}

.footer-socials a:hover {
  background: #ffffff;
  color: #ed1c24;
}

.footer-column h4::after {
  background: #ffffff;
}

.footer-column a:hover {
  color: #ffffff;
}

/* PREMIUM CONTACT INFO PANEL */
.contact-info-panel {
  flex: .9;
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  padding: 36px;
  color: #ffffff;

  background:
    linear-gradient(135deg, rgba(237,28,36,.92), rgba(120,8,14,.88)),
    url('https://images.unsplash.com/photo-1552664730-d307ca884978?q=80&w=1600&auto=format&fit=crop');

  background-size: cover;
  background-position: center;
  background-attachment: fixed;

  box-shadow: 0 30px 80px rgba(120,8,14,.28);
}

/* GRID EFFECT */
.contact-info-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

/* LIGHT GLOW */
.contact-info-panel::after {
  content: "";
  position: absolute;
  right: -140px;
  top: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.12), transparent 70%);
}

/* CONTENT ABOVE OVERLAY */
.contact-info-panel > * {
  position: relative;
  z-index: 2;
}

/* CONTACT CARD */
.contact-info-card {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,.14);
}

.contact-info-card:first-child {
  padding-top: 0;
}

.contact-info-card strong {
  display: block;
  font-size: 15px;
  color: #ffffff;
  margin-bottom: 5px;
}

.contact-info-card span {
  color: rgba(255,255,255,.82);
  line-height: 1.6;
}

/* ICONS */
.contact-info-icon {
  min-width: 54px;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  backdrop-filter: blur(8px);
}

.contact-info-icon.red {
  background: rgba(255,255,255,.14);
  color: #ffffff;
}

.contact-info-icon.green {
  background: rgba(255,255,255,.14);
  color: #ffffff;
}

/* NOTE BOX */
.contact-note {
  margin-top: 28px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  padding: 22px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
  backdrop-filter: blur(10px);
}

.contact-note i {
  font-size: 24px;
  color: #ffffff;
}

.contact-note p {
  color: rgba(255,255,255,.84);
  line-height: 1.7;
  font-size: 14px;
}