/* =========================
   GLOBAL
========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #001c4e;
  --dark-blue: #003976;
  --blue: #025ca1;
  --medium-blue: #2789c8;
  --light-blue: #47afe0;

  --dark-green: #02644b;
  --green: #30a760;
  --medium-green: #66b753;
  --lime: #9dc944;

  --white: #ffffff;
  --light-bg: #f4faff;
  --green-bg: #f3fbf5;

  --text: #26384a;
  --light-text: #68798a;
  --border: #dce9f1;
  --danger: #e53935;

  --shadow: 0 18px 45px rgba(0, 57, 118, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  color: var(--text);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1180px, 90%);
  margin: auto;
}

.section {
  padding: 90px 0;
}


/* =========================
   HEADER
========================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.97);
}

.navbar {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand-logo img {
  width: 125px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  position: relative;
  padding: 10px 0;
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 3px;
  border-radius: 20px;
  background: linear-gradient(
    90deg,
    var(--blue),
    var(--green),
    var(--lime)
  );
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.header-button {
  padding: 12px 22px;
  border-radius: 50px;
  color: var(--white);
  background: linear-gradient(
    90deg,
    var(--blue),
    var(--green)
  );
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(2, 92, 161, 0.22);
  transition: 0.3s ease;
}

.header-button:hover {
  transform: translateY(-3px);
}


/* =========================
   HERO SECTION
========================== */

.contact-hero {
  position: relative;
  overflow: hidden;
  padding: 105px 0 120px;
  background:
    radial-gradient(
      circle at 8% 20%,
      rgba(71, 175, 224, 0.23),
      transparent 29%
    ),
    radial-gradient(
      circle at 92% 18%,
      rgba(157, 201, 68, 0.24),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      #f7fcff,
      #f1fcf6
    );
}

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 70px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  padding: 8px 16px;
  border: 1px solid rgba(48, 167, 96, 0.28);
  border-radius: 50px;
  color: var(--dark-green);
  background: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-badge i {
  color: var(--blue);
}

.hero-content h1 {
  margin-bottom: 22px;
  color: var(--navy);
  font-size: clamp(46px, 6vw, 75px);
  line-height: 1.06;
}

.hero-content h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(
    90deg,
    var(--blue),
    var(--light-blue),
    var(--green),
    var(--lime)
  );
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-content > p {
  max-width: 650px;
  margin-bottom: 32px;
  color: var(--light-text);
  font-size: 18px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 25px;
  border-radius: 50px;
  font-weight: 700;
  transition: 0.3s ease;
}

.primary-button {
  color: var(--white);
  background: linear-gradient(
    90deg,
    var(--blue),
    var(--green)
  );
  box-shadow: 0 12px 25px rgba(2, 92, 161, 0.22);
}

.secondary-button {
  color: var(--navy);
  border: 1px solid var(--border);
  background: var(--white);
}

.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-3px);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.hero-points div {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.hero-points i {
  color: var(--green);
}


/* Hero Visual */

.hero-visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-contact-card {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 470px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 29px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 25px 60px rgba(0, 57, 118, 0.18);
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 27px;
}

.hero-logo {
  width: 67px;
  height: 67px;
  display: grid;
  place-items: center;
  border-radius: 19px;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(0, 57, 118, 0.13);
}

.hero-logo img {
  width: 55px;
}

.hero-card-header span {
  display: block;
  color: var(--light-text);
  font-size: 11px;
}

.hero-card-header h3 {
  color: var(--navy);
  font-size: 21px;
}

.hero-contact-list {
  display: grid;
  gap: 13px;
}

.hero-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px;
  border: 1px solid var(--border);
  border-radius: 17px;
  color: var(--text);
  background: var(--light-bg);
  transition: 0.3s ease;
}

.hero-contact-item:hover {
  transform: translateX(5px);
  border-color: rgba(48, 167, 96, 0.35);
}

.hero-contact-icon {
  width: 51px;
  height: 51px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 15px;
  color: var(--white);
  font-size: 21px;
}

.phone-gradient {
  background: linear-gradient(
    135deg,
    var(--green),
    var(--lime)
  );
}

.email-gradient {
  background: linear-gradient(
    135deg,
    #ea4335,
    #fbbc05
  );
}

.web-gradient {
  background: linear-gradient(
    135deg,
    var(--blue),
    var(--light-blue)
  );
}

.hero-contact-item span {
  display: block;
  color: var(--light-text);
  font-size: 10px;
  text-transform: uppercase;
}

.hero-contact-item strong {
  color: var(--navy);
  font-size: 14px;
  word-break: break-word;
}

.hero-card-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 15px;
  border-radius: 15px;
  color: var(--navy);
  background: var(--green-bg);
}

.hero-card-footer > i {
  color: var(--green);
  font-size: 22px;
}

.hero-card-footer span {
  display: block;
  color: var(--light-text);
  font-size: 10px;
}

.hero-card-footer strong {
  font-size: 13px;
}

.floating-card {
  position: absolute;
  z-index: 5;
  min-width: 185px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.floating-card-icon {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 12px;
  color: var(--white);
  background: linear-gradient(
    135deg,
    var(--blue),
    var(--green)
  );
  font-size: 20px;
}

.floating-card span {
  display: block;
  color: var(--light-text);
  font-size: 10px;
}

.floating-card strong {
  color: var(--navy);
  font-size: 12px;
}

.phone-floating {
  top: 45px;
  left: -35px;
}

.consultation-floating {
  right: -35px;
  bottom: 45px;
}

.hero-decoration {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-decoration-one {
  width: 310px;
  height: 310px;
  left: -160px;
  bottom: -170px;
  border: 45px solid rgba(2, 92, 161, 0.07);
}

.hero-decoration-two {
  width: 280px;
  height: 280px;
  right: -130px;
  top: -130px;
  border: 45px solid rgba(48, 167, 96, 0.08);
}


/* =========================
   SECTION HEADINGS
========================== */

.section-heading {
  max-width: 770px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 11px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.section-heading h2,
.consultation-content h2 {
  margin-bottom: 15px;
  color: var(--navy);
  font-size: clamp(31px, 4vw, 47px);
  line-height: 1.18;
}

.section-heading p {
  color: var(--light-text);
  font-size: 17px;
}


/* =========================
   COMPANY CONTACT CARDS
========================== */

.company-contact-section {
  background: var(--white);
}

.contact-information-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.information-card {
  position: relative;
  overflow: hidden;
  padding: 29px;
  border: 1px solid var(--border);
  border-radius: 22px;
  color: var(--text);
  background: var(--white);
  box-shadow: 0 9px 28px rgba(0, 57, 118, 0.07);
  transition: 0.35s ease;
}

.information-card::before {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  top: -62px;
  right: -58px;
  border-radius: 50%;
  background: rgba(71, 175, 224, 0.08);
}

.information-card:hover {
  transform: translateY(-8px);
  border-color: rgba(48, 167, 96, 0.4);
  box-shadow: var(--shadow);
}

.information-icon {
  position: relative;
  z-index: 2;
  width: 62px;
  height: 62px;
  margin-bottom: 20px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--white);
  font-size: 26px;
  box-shadow: 0 10px 22px rgba(0, 57, 118, 0.16);
}

.phone-information-icon {
  background: linear-gradient(
    135deg,
    var(--green),
    var(--lime)
  );
}

.email-information-icon {
  background: linear-gradient(
    135deg,
    #ea4335,
    #fbbc05
  );
}

.website-information-icon {
  background: linear-gradient(
    135deg,
    var(--blue),
    var(--light-blue)
  );
}

.location-information-icon {
  background: linear-gradient(
    135deg,
    var(--navy),
    var(--green)
  );
}

.information-card > span {
  display: block;
  margin-bottom: 5px;
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.information-card h3 {
  margin-bottom: 9px;
  color: var(--navy);
  font-size: 18px;
  word-break: break-word;
}

.information-card p {
  min-height: 65px;
  margin-bottom: 17px;
  color: var(--light-text);
  font-size: 13px;
}

.information-link {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}


/* =========================
   CONSULTATION
========================== */

.consultation-section {
  background:
    radial-gradient(
      circle at 10% 15%,
      rgba(71, 175, 224, 0.11),
      transparent 26%
    ),
    radial-gradient(
      circle at 92% 85%,
      rgba(157, 201, 68, 0.13),
      transparent 24%
    ),
    var(--light-bg);
}

.consultation-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: start;
  gap: 65px;
}

.consultation-content {
  position: sticky;
  top: 115px;
}

.consultation-content > p {
  margin-bottom: 30px;
  color: var(--light-text);
  font-size: 16px;
}

.consultation-benefits {
  display: grid;
  gap: 17px;
}

.consultation-benefit {
  display: grid;
  grid-template-columns: 55px 1fr;
  align-items: start;
  gap: 15px;
  padding: 19px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--white);
}

.benefit-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--white);
  background: linear-gradient(
    135deg,
    var(--blue),
    var(--green)
  );
  font-size: 20px;
}

.consultation-benefit h3 {
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 16px;
}

.consultation-benefit p {
  color: var(--light-text);
  font-size: 12px;
}

.consultation-support-card {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
  padding: 20px;
  border-radius: 19px;
  color: var(--white);
  background: linear-gradient(
    120deg,
    var(--navy),
    var(--blue),
    var(--green)
  );
}

.support-icon {
  width: 55px;
  height: 55px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 16px;
  color: var(--navy);
  background: var(--white);
  font-size: 23px;
}

.consultation-support-card span {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
}

.consultation-support-card h3 {
  font-size: 18px;
}


/* =========================
   FORM
========================== */

.form-wrapper {
  padding: 38px;
  border: 1px solid var(--border);
  border-radius: 29px;
  background: var(--white);
  box-shadow: 0 20px 55px rgba(0, 57, 118, 0.13);
}

.form-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
  padding-bottom: 23px;
  border-bottom: 1px solid var(--border);
}

.form-heading-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--white);
  background: linear-gradient(
    135deg,
    var(--blue),
    var(--green)
  );
  font-size: 25px;
}

.form-heading span {
  display: block;
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.form-heading h3 {
  color: var(--navy);
  font-size: 23px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 21px;
}

.form-group {
  display: grid;
  gap: 8px;
}

.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

.form-group label > span {
  color: var(--danger);
}

.input-wrapper,
.textarea-wrapper {
  position: relative;
}

.input-wrapper > i,
.textarea-wrapper > i {
  position: absolute;
  z-index: 2;
  left: 16px;
  color: var(--blue);
  font-size: 17px;
}

.input-wrapper > i {
  top: 50%;
  transform: translateY(-50%);
}

.textarea-wrapper > i {
  top: 17px;
}

.input-wrapper input,
.input-wrapper select,
.textarea-wrapper textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  color: var(--text);
  outline: none;
  background: #fbfdff;
  transition: 0.3s ease;
}

.input-wrapper input,
.input-wrapper select {
  height: 52px;
  padding: 0 16px 0 46px;
}

.textarea-wrapper textarea {
  min-height: 150px;
  padding: 15px 16px 15px 46px;
  resize: vertical;
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.textarea-wrapper textarea:focus {
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(48, 167, 96, 0.09);
}

.input-wrapper input::placeholder,
.textarea-wrapper textarea::placeholder {
  color: #9aa8b5;
}

.select-wrapper select {
  appearance: none;
  cursor: pointer;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--blue) 50%),
    linear-gradient(135deg, var(--blue) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 22px,
    calc(100% - 15px) 22px;
  background-size:
    5px 5px,
    5px 5px;
  background-repeat: no-repeat;
}

.consent-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.consent-checkbox input {
  width: 17px;
  height: 17px;
  margin-top: 3px;
  accent-color: var(--green);
}

.consent-checkbox span {
  color: var(--light-text);
  font-size: 12px;
  font-weight: 400;
}

.submit-button {
  width: 100%;
  min-height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
  border: none;
  border-radius: 50px;
  color: var(--white);
  background: linear-gradient(
    90deg,
    var(--blue),
    var(--green)
  );
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 25px rgba(2, 92, 161, 0.2);
  transition: 0.3s ease;
}

.submit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 17px 32px rgba(2, 92, 161, 0.25);
}

.form-note {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 7px;
  margin-top: 15px;
  color: var(--light-text);
  text-align: center;
  font-size: 10px;
}

.form-note i {
  margin-top: 2px;
  color: var(--green);
}


/* =========================
   SMALL COMPANY DETAILS
========================== */

.small-company-section {
  padding: 35px 0;
  background: var(--white);
}

.small-company-box {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 23px;
  padding: 24px 28px;
  border: 1px solid var(--border);
  border-radius: 21px;
  background: var(--green-bg);
}

.small-company-logo {
  width: 73px;
  height: 73px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 7px 20px rgba(0, 57, 118, 0.1);
}

.small-company-logo img {
  width: 61px;
}

.small-company-content h3 {
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 18px;
}

.small-company-content p {
  max-width: 600px;
  color: var(--light-text);
  font-size: 11px;
}

.small-company-contact {
  display: grid;
  gap: 7px;
}

.small-company-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
}

.small-company-contact i {
  color: var(--green);
}


/* =========================
   FOOTER
========================== */

.footer {
  padding: 60px 0 25px;
  color: var(--white);
  background: #00163e;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 42px;
  padding-bottom: 40px;
}

.footer-logo {
  width: 130px;
  margin-bottom: 18px;
  padding: 7px;
  border-radius: 10px;
  background: var(--white);
}

.footer-about p,
.footer-column a,
.footer-column p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.footer-column h3 {
  margin-bottom: 18px;
  font-size: 17px;
}

.footer-column li {
  margin-bottom: 10px;
}

.footer-column a:hover {
  color: var(--lime);
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 12px;
}

.footer-contact i {
  margin-top: 3px;
  color: var(--lime);
}

.copyright {
  padding-top: 23px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}


/* =========================
   RESPONSIVE
========================== */

@media (max-width: 1100px) {

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    max-width: 780px;
    margin: auto;
    text-align: center;
  }

  .hero-content > p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons,
  .hero-points {
    justify-content: center;
  }

  .hero-visual {
    width: 100%;
    max-width: 650px;
    margin: auto;
  }

  .contact-information-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .consultation-grid {
    grid-template-columns: 1fr;
  }

  .consultation-content {
    position: static;
  }

  .small-company-box {
    grid-template-columns: auto 1fr;
  }

  .small-company-contact {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}


@media (max-width: 850px) {

  .nav-links {
    display: none;
  }

  .small-company-contact {
    grid-template-columns: 1fr;
  }

}


@media (max-width: 620px) {

  .section {
    padding: 65px 0;
  }

  .navbar {
    min-height: 72px;
  }

  .brand-logo img {
    width: 100px;
  }

  .header-button {
    padding: 10px 13px;
    font-size: 11px;
  }

  .contact-hero {
    padding: 75px 0 100px;
  }

  .hero-content h1 {
    font-size: 40px;
  }

  .hero-content > p {
    font-size: 16px;
  }

  .hero-points {
    flex-direction: column;
    align-items: center;
    gap: 11px;
  }

  .hero-visual {
    min-height: 485px;
  }

  .hero-contact-card {
    padding: 21px;
  }

  .floating-card {
    min-width: 155px;
    padding: 9px;
  }

  .phone-floating {
    top: 0;
    left: -5px;
  }

  .consultation-floating {
    right: -5px;
    bottom: 0;
  }

  .contact-information-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .full-width {
    grid-column: auto;
  }

  .information-card p {
    min-height: auto;
  }

  .form-wrapper {
    padding: 26px 20px;
  }

  .form-heading {
    align-items: flex-start;
  }

  .form-heading h3 {
    font-size: 20px;
  }

  .small-company-box {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .small-company-logo {
    margin: auto;
  }

  .small-company-contact a {
    justify-content: center;
  }

}