/* =========================================================
   GLOFIN - ORANGE & GREY CORPORATE THEME
========================================================= */

:root {
  --glofin-orange: #f58220;
  --glofin-orange-dark: #d9680c;
  --glofin-orange-light: #fff3e8;

  --glofin-dark: #252525;
  --glofin-dark-2: #333333;

  --glofin-gray: #666666;
  --glofin-gray-light: #f5f5f5;
  --glofin-border: #e5e5e5;

  --white: #ffffff;

  --shadow-sm: 0 5px 20px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 12px 35px rgba(0, 0, 0, 0.09);
}


/* =========================================================
   GLOBAL
========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;

  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Arial,
    sans-serif;

  color: var(--glofin-gray);

  background: #f8f8f8;

  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--glofin-dark);

  font-weight: 700;
}

a {
  transition: all 0.2s ease;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
  position: sticky;

  top: 0;

  z-index: 1000;

  background: rgba(255, 255, 255, 0.98);

  border-bottom: 1px solid var(--glofin-border);

  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.navbar {
  max-width: 1180px;

  min-height: 82px;

  margin: auto;

  padding: 0 25px;

  display: flex;

  align-items: center;

  justify-content: space-between;
}


/* LOGO */

/* =========================================================
   GLOFIN BRAND
========================================================= */

.brand {
  display: inline-flex;
  align-items: center;

  color: var(--glofin-dark);

  text-decoration: none;
}

.brand:hover {
  color: var(--glofin-dark);
}

.brand-name {
  display: flex;
  align-items: center;

  color: var(--glofin-orange);

  font-size: 28px;
  font-weight: 700;

  line-height: 1;

  letter-spacing: -1px;
}

.brand-name span {
  margin-left: 8px;

  color: #777;

  font-size: 14px;
  font-weight: 700;

  letter-spacing: 1.5px;
}


/* NAVIGATION */

.nav-links {
  display: flex;

  align-items: center;

  gap: 5px;
}

.nav-links a {
  position: relative;

  padding: 10px 15px;

  color: #555;

  text-decoration: none;

  font-size: 14px;

  font-weight: 600;
}

.nav-links a:hover {
  color: var(--glofin-orange);
}

.nav-links a.active {
  color: var(--glofin-orange);
}


/* NAV UNDERLINE */

.nav-links a.active:not(.nav-button)::after {
  content: "";

  position: absolute;

  left: 15px;
  right: 15px;

  bottom: 2px;

  height: 2px;

  background: var(--glofin-orange);

  border-radius: 10px;
}


/* CONTACT BUTTON */

.nav-links .nav-button {
  margin-left: 12px;

  padding: 11px 20px;

  border-radius: 5px;

  background: var(--glofin-orange);

  color: white;
}

.nav-links .nav-button:hover {
  background: var(--glofin-orange-dark);

  color: white;
}

.nav-links .nav-button.active {
  background: var(--glofin-orange-dark);

  color: white;
}


/* =========================================================
   HERO
========================================================= */

.glofin-hero {
  position: relative;

  overflow: hidden;

  min-height: 620px;

  display: flex;

  align-items: center;

  color: white;

  background:
    linear-gradient(
      105deg,
      rgba(35, 35, 35, 0.98),
      rgba(50, 50, 50, 0.94),
      rgba(55, 55, 55, 0.88)
    );
}


/* Orange decorative shape */

.glofin-hero::before {
  content: "";

  position: absolute;

  width: 600px;
  height: 600px;

  right: -250px;
  top: -220px;

  border-radius: 50%;

  border: 100px solid rgba(245, 130, 32, 0.08);
}

.glofin-hero::after {
  content: "";

  position: absolute;

  width: 300px;
  height: 300px;

  right: 80px;
  bottom: -200px;

  border-radius: 50%;

  background: rgba(245, 130, 32, 0.08);
}


/* HERO CONTENT */

.glofin-hero .container {
  position: relative;

  z-index: 2;
}

.hero-label {
  display: inline-block;

  margin-bottom: 18px;

  color: var(--glofin-orange);

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 2px;
}

.glofin-hero h1 {
  max-width: 750px;

  margin-bottom: 25px;

  color: white;

  font-size: clamp(42px, 6vw, 70px);

  font-weight: 700;

  line-height: 1.08;

  letter-spacing: -2px;
}

.glofin-hero h1 span {
  display: block;

  color: var(--glofin-orange);
}

.hero-text {
  max-width: 650px;

  color: #d2d2d2;

  font-size: 18px;

  line-height: 1.8;
}


/* HERO BUTTONS */

.hero-buttons {
  display: flex;

  flex-wrap: wrap;

  gap: 15px;

  margin-top: 35px;
}

.btn-glofin {
  padding: 13px 26px;

  border: 1px solid var(--glofin-orange);

  border-radius: 5px;

  background: var(--glofin-orange);

  color: white;

  font-weight: 600;
}

.btn-glofin:hover {
  border-color: var(--glofin-orange-dark);

  background: var(--glofin-orange-dark);

  color: white;
}


/* =========================================================
   HERO CARD
========================================================= */

.hero-card {
  position: relative;

  padding: 40px;

  background: rgba(255, 255, 255, 0.07);

  border: 1px solid rgba(255, 255, 255, 0.15);

  border-radius: 12px;

  backdrop-filter: blur(8px);
}

.hero-card-icon {
  width: 65px;
  height: 65px;

  display: flex;

  align-items: center;
  justify-content: center;

  margin-bottom: 25px;

  border-radius: 10px;

  background: var(--glofin-orange);

  color: white;

  font-size: 28px;
}

.hero-card h3 {
  color: white;

  font-size: 25px;
}

.hero-card p {
  color: #ccc;

  line-height: 1.7;
}

.hero-card-line {
  height: 1px;

  margin: 25px 0;

  background: rgba(255, 255, 255, 0.15);
}

.hero-card strong {
  display: block;

  color: white;

  font-size: 18px;
}

.hero-card small {
  display: block;

  color: #aaa;
}


/* =========================================================
   SECTION COMMON
========================================================= */

.section-heading {
  max-width: 850px;

  margin: auto;

  text-align: center;
}

.section-label {
  display: inline-block;

  margin-bottom: 12px;

  color: var(--glofin-orange);

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 2px;
}

.section-heading h2 {
  margin-bottom: 18px;

  color: var(--glofin-dark);

  font-size: 42px;

  line-height: 1.2;
}

.section-heading p {
  color: #707070;

  font-size: 17px;

  line-height: 1.8;
}


/* =========================================================
   INTRO
========================================================= */

.intro-section {
  padding: 90px 0 50px;

  background: white;
}


/* =========================================================
   X FACTORS
========================================================= */

.x-factor-section {
  padding: 55px 0 100px;

  background: #f5f5f5;
}

.x-factor {
  color: var(--glofin-orange);
}


/* FEATURE CARD */

.feature-card {
  height: 100%;

  padding: 30px;

  background: white;

  border: 1px solid var(--glofin-border);

  border-radius: 8px;

  transition: all 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-6px);

  border-color: #f4c39d;

  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 55px;
  height: 55px;

  display: flex;

  align-items: center;
  justify-content: center;

  margin-bottom: 20px;

  border-radius: 8px;

  background: var(--glofin-orange-light);

  color: var(--glofin-orange);

  font-size: 22px;
}

.feature-card h4 {
  margin-bottom: 12px;

  color: var(--glofin-dark);

  font-size: 18px;
}

.feature-card p {
  margin: 0;

  color: #707070;

  font-size: 14px;

  line-height: 1.7;
}


/* =========================================================
   SERVICES
========================================================= */

.services-section {
  padding: 100px 0;

  background: white;
}

.service-card {
  height: 100%;

  padding: 35px;

  background: white;

  border: 1px solid var(--glofin-border);

  border-radius: 8px;

  transition: all 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);

  box-shadow: var(--shadow-md);

  border-color: #f3c29c;
}

.service-icon {
  width: 70px;
  height: 70px;

  display: flex;

  align-items: center;
  justify-content: center;

  margin-bottom: 25px;

  border-radius: 10px;

  background: var(--glofin-orange-light);

  color: var(--glofin-orange);

  font-size: 30px;
}

.service-card h3 {
  margin-bottom: 14px;

  color: var(--glofin-dark);

  font-size: 21px;
}

.service-card p {
  min-height: 70px;

  color: #707070;

  line-height: 1.7;
}

.service-link {
  color: var(--glofin-orange);

  font-weight: 700;

  text-decoration: none;
}

.service-link:hover {
  color: var(--glofin-orange-dark);
}

.service-link i {
  margin-left: 5px;
}


/* =========================================================
   CHANNEL PARTNERS
========================================================= */

.partners-section {
  padding: 90px 0;

  background: #f5f5f5;
}

.partner-logo {
  height: 120px;

  display: flex;

  align-items: center;
  justify-content: center;

  padding: 20px;

  background: white;

  border: 1px solid #e1e1e1;

  border-radius: 8px;

  transition: all 0.2s ease;
}

.partner-logo:hover {
  transform: translateY(-4px);

  box-shadow: var(--shadow-sm);
}

.partner-logo img {
  max-width: 100%;

  max-height: 70px;

  object-fit: contain;
}


/* =========================================================
   CTA
========================================================= */

.cta-section {
  position: relative;

  overflow: hidden;

  padding: 75px 0;

  color: white;

  background: var(--glofin-dark);
}

.cta-section::after {
  content: "";

  position: absolute;

  width: 300px;
  height: 300px;

  right: -100px;
  top: -150px;

  border-radius: 50%;

  border: 70px solid rgba(245, 130, 32, 0.12);
}

.cta-section .container {
  position: relative;

  z-index: 2;
}

.cta-section h2 {
  margin-bottom: 15px;

  color: white;

  font-size: 38px;
}

.cta-section p {
  max-width: 700px;

  margin: 0;

  color: #c9c9c9;

  font-size: 17px;
}

.cta-section .section-label {
  color: var(--glofin-orange);
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  padding: 55px 0 25px;

  color: #aaa;

  background: #1c1c1c;
}

.site-footer h4 {
  color: white;

  font-size: 22px;
}

.site-footer p {
  max-width: 600px;

  line-height: 1.7;
}

.site-footer a {
  margin-left: 20px;

  color: #bbb;

  text-decoration: none;
}

.site-footer a:hover {
  color: var(--glofin-orange);
}

.site-footer hr {
  margin: 35px 0;

  border-color: #333;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

  .navbar {
    min-height: 75px;

    padding: 15px 20px;

    flex-direction: column;

    gap: 15px;
  }

  .nav-links {
    width: 100%;

    justify-content: center;

    flex-wrap: wrap;
  }

  .nav-links a {
    padding: 7px 9px;
  }

  .nav-links .nav-button {
    margin-left: 0;
  }

  .glofin-hero {
    min-height: auto;

    padding: 75px 0;
  }

  .glofin-hero h1 {
    font-size: 42px;

    letter-spacing: -1px;
  }

  .hero-text {
    font-size: 16px;
  }

  .section-heading h2 {
    font-size: 32px;
  }

  .intro-section,
  .services-section,
  .partners-section {
    padding: 70px 0;
  }

  .cta-section h2 {
    font-size: 30px;
  }

  .site-footer {
    text-align: center;
  }

  .site-footer a {
    display: inline-block;

    margin: 8px;
  }
}

/* =========================================================
   PRIVACY PAGE
========================================================= */

.page-hero {
  padding: 90px 0;

  background:
    linear-gradient(
      110deg,
      #292929,
      #3a3a3a
    );

  color: white;

  text-align: center;
}

.page-hero .container {
  max-width: 850px;
}

.page-label {
  display: inline-block;

  margin-bottom: 15px;

  color: var(--glofin-orange);

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 2px;
}

.page-hero h1 {
  margin-bottom: 15px;

  color: white;

  font-size: clamp(40px, 5vw, 58px);

  text-transform: uppercase;
}

.page-hero p {
  max-width: 650px;

  margin: auto;

  color: #ccc;

  font-size: 17px;
}


/* =========================================================
   PRIVACY CONTENT
========================================================= */

.privacy-section {
  padding: 90px 0;

  background: #f6f6f6;
}

.privacy-content {
  max-width: 950px;

  margin: auto;
}

.privacy-intro {
  padding: 45px;

  margin-bottom: 30px;

  background: white;

  border-radius: 10px;

  border-left: 5px solid var(--glofin-orange);

  box-shadow: var(--shadow-sm);
}

.privacy-intro h2 {
  margin-bottom: 20px;

  font-size: 32px;
}

.privacy-intro p {
  color: #666;

  line-height: 1.8;
}

.policy-date {
  display: inline-block;

  margin-top: 15px;

  padding: 12px 18px;

  background: var(--glofin-orange-light);

  border-radius: 5px;

  color: #666;

  font-size: 13px;
}

.policy-date span {
  margin: 0 8px;

  color: #bbb;
}


/* =========================================================
   PRIVACY CARDS
========================================================= */

.privacy-card {
  display: flex;

  gap: 25px;

  margin-bottom: 20px;

  padding: 35px;

  background: white;

  border: 1px solid var(--glofin-border);

  border-radius: 8px;

  transition: all 0.2s ease;
}

.privacy-card:hover {
  border-color: #f4c39d;

  box-shadow: var(--shadow-sm);
}

.privacy-icon {
  flex: 0 0 55px;

  width: 55px;
  height: 55px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 8px;

  background: var(--glofin-orange-light);

  color: var(--glofin-orange);

  font-size: 21px;
}

.privacy-card h3 {
  margin-bottom: 15px;

  color: var(--glofin-dark);

  font-size: 21px;
}

.privacy-card p {
  margin-bottom: 15px;

  color: #666;

  line-height: 1.8;
}

.privacy-card ul {
  padding-left: 20px;

  margin-bottom: 0;
}

.privacy-card li {
  margin-bottom: 7px;

  color: #666;
}

.privacy-card li::marker {
  color: var(--glofin-orange);
}


/* =========================================================
   PRIVACY CONTACT
========================================================= */

.privacy-contact {
  margin-top: 35px;

  padding: 45px;

  background: var(--glofin-dark);

  border-radius: 10px;

  color: white;
}

.privacy-contact h3 {
  margin-bottom: 15px;

  color: white;

  font-size: 28px;
}

.privacy-contact p {
  max-width: 650px;

  color: #ccc;
}

.privacy-contact a {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  margin-top: 10px;

  padding: 12px 20px;

  border-radius: 5px;

  background: var(--glofin-orange);

  color: white;

  text-decoration: none;

  font-weight: 600;
}

.privacy-contact a:hover {
  background: var(--glofin-orange-dark);

  color: white;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

  .page-hero {
    padding: 65px 20px;
  }

  .privacy-section {
    padding: 55px 15px;
  }

  .privacy-intro {
    padding: 30px 25px;
  }

  .privacy-card {
    padding: 25px;

    flex-direction: column;

    gap: 15px;
  }

  .privacy-icon {
    flex-basis: 55px;
  }

  .privacy-contact {
    padding: 30px 25px;
  }

  .policy-date {
    line-height: 1.8;
  }

  .policy-date span {
    display: none;
  }
}

/* =========================================================
   ABOUT PAGE
========================================================= */

.about-section {
  padding: 90px 0;
  background: #fff;
}

.about-intro {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-intro-content h2 {
  margin: 15px 0 25px;

  color: var(--glofin-dark);

  font-size: 42px;
  line-height: 1.2;
}

.about-intro-content h2 span {
  color: var(--glofin-orange);
}

.about-intro-content p {
  margin-bottom: 18px;

  color: #666;

  font-size: 16px;
  line-height: 1.8;
}

.about-highlight {
  padding: 40px;

  background: #f7f7f7;

  border-radius: 10px;

  border-top: 4px solid var(--glofin-orange);

  box-shadow: var(--shadow-sm);
}

.highlight-icon {
  width: 65px;
  height: 65px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 25px;

  border-radius: 50%;

  background: #fff0e5;

  color: var(--glofin-orange);

  font-size: 27px;
}

.about-highlight h3 {
  color: var(--glofin-dark);
}

.about-highlight p {
  color: #777;
  line-height: 1.7;
}


/* =========================================================
   APPROACH
========================================================= */

.approach-section {
  padding: 90px 0;

  background: #f6f6f6;
}

.section-heading {
  max-width: 750px;

  margin: auto;
}

.section-heading h2 {
  margin: 12px 0;

  color: var(--glofin-dark);

  font-size: 38px;
}

.section-heading p {
  color: #777;

  line-height: 1.7;
}


.approach-card {
  position: relative;

  height: 100%;

  padding: 35px;

  background: #fff;

  border: 1px solid #e8e8e8;

  border-radius: 8px;

  transition: all .25s ease;
}

.approach-card:hover {
  transform: translateY(-5px);

  border-color: #f3c49d;

  box-shadow: var(--shadow-sm);
}

.approach-icon {
  width: 60px;
  height: 60px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 25px;

  border-radius: 8px;

  background: #fff0e5;

  color: var(--glofin-orange);

  font-size: 24px;
}

.approach-number {
  position: absolute;

  top: 25px;
  right: 25px;

  color: #ddd;

  font-size: 25px;

  font-weight: 700;
}

.approach-card h3 {
  margin-bottom: 15px;

  color: var(--glofin-dark);

  font-size: 23px;
}

.approach-card p {
  margin: 0;

  color: #666;

  line-height: 1.7;
}


/* =========================================================
   WHY GLOFIN
========================================================= */

.why-glofin {
  padding: 90px 0;

  background: #fff;
}

.why-card {
  height: 100%;

  padding: 30px;

  text-align: center;

  border: 1px solid #e5e5e5;

  border-radius: 8px;

  transition: all .25s ease;
}

.why-card:hover {
  border-color: var(--glofin-orange);

  box-shadow: var(--shadow-sm);
}

.why-card > .fa {
  margin-bottom: 20px;

  color: var(--glofin-orange);

  font-size: 35px;
}

.why-card h3 {
  color: var(--glofin-dark);

  font-size: 19px;
}

.why-card p {
  margin: 0;

  color: #777;

  line-height: 1.7;
}


/* =========================================================
   ABOUT CTA
========================================================= */

.about-cta {
  padding: 80px 20px;

  background: var(--glofin-dark);

  color: #fff;
}

.about-cta h2 {
  margin: 15px 0;

  color: #fff;

  font-size: 38px;
}

.about-cta p {
  margin-bottom: 25px;

  color: #ccc;
}

.btn-glofin {
  padding: 12px 25px;

  background: var(--glofin-orange);

  border: 1px solid var(--glofin-orange);

  color: #fff;

  font-weight: 600;

  border-radius: 5px;
}

.btn-glofin:hover {
  background: #d96d12;

  border-color: #d96d12;

  color: #fff;
}

.btn-glofin .fa {
  margin-right: 7px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

  .about-section,
  .approach-section,
  .why-glofin {
    padding: 60px 15px;
  }

  .about-intro {
    grid-template-columns: 1fr;

    gap: 35px;
  }

  .about-intro-content h2 {
    font-size: 32px;
  }

  .about-cta h2 {
    font-size: 30px;
  }
}

/* =========================================================
   CONTACT PAGE
========================================================= */

.contact-hero {
  padding: 90px 0;
}

.contact-hero p {
  max-width: 650px;
}


/* =========================================================
   CONTACT INFORMATION CARDS
========================================================= */

.contact-section {
  padding: 70px 0;

  background: #f6f6f6;
}

.contact-card {
  height: 100%;

  padding: 30px;

  background: #fff;

  border: 1px solid #e6e6e6;

  border-radius: 8px;

  text-align: center;

  transition: all .25s ease;
}

.contact-card:hover {
  transform: translateY(-5px);

  border-color: #f2bd8a;

  box-shadow: var(--shadow-sm);
}

.contact-icon {
  width: 65px;
  height: 65px;

  display: flex;

  align-items: center;
  justify-content: center;

  margin: 0 auto 20px;

  border-radius: 50%;

  background: #fff0e5;

  color: var(--glofin-orange);

  font-size: 25px;
}

.contact-card h3 {
  margin-bottom: 15px;

  color: var(--glofin-dark);

  font-size: 20px;
}

.contact-card p {
  margin-bottom: 10px;

  color: #666;

  line-height: 1.7;
}

.contact-card a {
  color: var(--glofin-dark);

  text-decoration: none;

  font-weight: 600;
}

.contact-card a:hover {
  color: var(--glofin-orange);
}

.website-link {
  color: var(--glofin-orange) !important;
}


/* =========================================================
   CONTACT FORM SECTION
========================================================= */

.contact-form-section {
  padding: 90px 0;

  background: #fff;
}

.contact-form-section h2 {
  margin: 15px 0;

  color: var(--glofin-dark);

  font-size: 38px;
}

.contact-description {
  margin-bottom: 35px;

  color: #666;

  line-height: 1.8;
}


/* Contact Details */

.contact-detail {
  display: flex;

  align-items: flex-start;

  gap: 15px;

  margin-bottom: 22px;
}

.detail-icon {
  flex: 0 0 45px;

  width: 45px;
  height: 45px;

  display: flex;

  align-items: center;
  justify-content: center;

  background: #fff0e5;

  border-radius: 6px;

  color: var(--glofin-orange);
}

.contact-detail strong {
  display: block;

  margin-bottom: 3px;

  color: var(--glofin-dark);
}

.contact-detail p {
  margin: 0;

  color: #666;

  line-height: 1.6;
}

.contact-detail a {
  color: #666;

  text-decoration: none;
}

.contact-detail a:hover {
  color: var(--glofin-orange);
}


/* =========================================================
   FORM CARD
========================================================= */

.contact-form-card {
  padding: 40px;

  background: #f7f7f7;

  border-radius: 10px;

  border-top: 4px solid var(--glofin-orange);

  box-shadow: var(--shadow-sm);
}

.form-header {
  margin-bottom: 25px;
}

.form-header h2 {
  font-size: 30px;

  margin-bottom: 8px;
}

.form-header p {
  color: #777;
}


/* Form */

.contact-form label {
  display: block;

  margin-bottom: 7px;

  color: var(--glofin-dark);

  font-size: 14px;

  font-weight: 600;
}

.input-wrapper {
  position: relative;
}

.input-wrapper > .fa {
  position: absolute;

  top: 50%;
  left: 15px;

  transform: translateY(-50%);

  color: var(--glofin-orange);

  pointer-events: none;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
  width: 100%;

  padding: 13px 15px 13px 42px;

  border: 1px solid #ddd;

  border-radius: 5px;

  background: #fff;

  color: #444;

  outline: none;

  font-family: inherit;

  transition: border-color .2s;
}

.input-wrapper textarea {
  resize: vertical;

  min-height: 130px;
}

.input-wrapper select {
  appearance: auto;

  cursor: pointer;
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
  border-color: var(--glofin-orange);

  box-shadow: 0 0 0 3px rgba(245, 130, 32, .10);
}


/* Textarea icon */

.textarea-wrapper > .fa {
  top: 20px;

  transform: none;
}


/* Submit */

.contact-form .btn-glofin {
  margin-top: 10px;

  padding: 13px 25px;

  background: var(--glofin-orange);

  border: 1px solid var(--glofin-orange);

  border-radius: 5px;

  color: #fff;

  font-weight: 600;
}

.contact-form .btn-glofin:hover {
  background: #d96d12;

  border-color: #d96d12;

  color: #fff;
}

.btn-glofin .fa {
  margin-right: 7px;
}


/* =========================================================
   LOCATION
========================================================= */

.location-section {
  padding: 80px 0;

  background: #f6f6f6;
}

.location-header {
  margin-bottom: 30px;
}

.location-header h2 {
  margin: 12px 0 5px;

  color: var(--glofin-dark);

  font-size: 38px;
}

.location-header p {
  color: #777;
}

.map-container {
  overflow: hidden;

  border-radius: 10px;

  border: 1px solid #ddd;

  box-shadow: var(--shadow-sm);

  background: #ddd;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

  .contact-hero {
    padding: 65px 20px;
  }

  .contact-section,
  .contact-form-section,
  .location-section {
    padding: 55px 15px;
  }

  .contact-form-card {
    padding: 25px 20px;
  }

  .contact-form-section h2 {
    font-size: 31px;
  }

  .location-header h2 {
    font-size: 30px;
  }

  .map-container iframe {
    height: 320px;
  }

}