@import url('https://fonts.googleapis.com/css2?family=Schibsted+Grotesk:ital,wght@0,400..900;1,400..900&display=swap');

:root{
    --color--white: white;
    --font-family-grotesk: "Schibsted Grotesk", sans-serif;;
    --color--black: black;
    --_typography---paragraph-font-size--small-paragraph: 14px;
    --_typography---line-height--large: 140%;
    --_typography---font-weight--normal: 400;
    --color--gray-900: #272727;
    --_typography---heading-font-size--h1: 64px;
    --_typography---line-height--small: 110%;
    --_typography---heading-font-size--h2: 48px;
    --_typography---heading-font-size--h3: 40px;
    --_typography---heading-font-size--h4: 36px;
    --_typography---font-weight--medium: 500;
    --_typography---heading-font-size--h5: 32px;
    --_typography---line-height--medium: 130%;
    --_typography---heading-font-size--h6: 24px;
    --color--dark-blue-800: #23232b;
    --color--gray-200: #27272733;
    --_spacing---border-radius--radius-xxl: 100px;
    --_typography---paragraph-font-size--paragraph: 16px;
    --color--green-900: #00ab41;
    --color--gray-800: #272727cc;
    --color--white-800: #fffc;
    --color--gray-250: #27272740;
    --color--white-100: #ffffff1a;
    --_typography---link-font-size--text-link: 16px;
    --color--green-600: #26ff79;
    --color--elephant-950: #002738;
    --_spacing---padding-margin--space-md: 24px;
    --color--white-700: #ffffffb3;
    --color--sky-blue-700: #0094ca;
    --color--green-800: #00d250;
    --_spacing---padding-margin--space-xxl: 80px;
    --_spacing---border-radius--radius-sm: 8px;
    --color--black-200: #e3e3e3;
    --color--gray-500: #27272780;
    --color--gray-700: #272727b3;
    --color--white-400: #fff6;
    --color--gray-150: #27272726;
    --color--sky-blue-800: #0c6ad5;
    --color--black-50: #f9f9f9;
    --color--green-300: #f4f7f3;
    --_spacing---padding-margin--space-xl: 60px;
    --_typography---paragraph-font-size--large-text: 20px;
    --_spacing---border-radius--radius-md: 12px;
    --_typography---paragraph-font-size--large-paragraph: 18px;
    --color--white-50: #ffffff0d;
    --color--white-250: #ffffff40;
    --color--dark-blue-950: #14161b;
    --color--gray-400: #27272766;
    --color--white-200: #fff3;
    --color--eminence-300: #f6f3f7;
    --_spacing---border-radius--radius-xl: 16px;
    --color--green-700: #58ca00;
    --color--cyan: #00caca;
    --color--gray-100: #2727271a;
    --_spacing---padding-margin--space-sm: 18px;
    --color--sky-blue-400: #e2f4fa;
    --color--green-400: #e2faea;
    --color--fair-pink-100: #f8e9e7;
    --color--gray-950: #101010;
    --color--sky-blue-100: #0cb7d51a;
    --color--pomegranate-100: #ff492c1a;
    --color--eminence-200: #691f7433;
    --color--cyan-100: #15c39a1a;
    --color--black-100: #efefef;
    --_typography---link-font-size--button: 16px;
    --color--green-500: #d7efdf;
    --color--green-200: #00ab4133;
    --color--green-100: #00ab411a;
    --color--dark-blue-900: #000a24;
    --color--dark-blue-600: #06194c;
    --color--sky-blue-900: #1f5874;
    --color--sky-blue-300: #dce9ee;
    --color--sky-blue-200: #1f627433;
    --color--eminence-900: #691f74;
    --color--eminence-500: #e2dcee;
    --color--eminence-400: #f5efff;
    --color--eminence-100: #691f741a;
    --color--sunset-orange: #eb6047;
    --color--sunset-orange-200: #eb604733;
    --color--pomegranate: #ff492c;
    --color--pomegranate-700: #ff492cb3;
    --color--pomegranate-200: #ff492c33;
    --color--pomegranate-40: #ff492c0a;
    --color--fair-pink-200: #f8e6e3;
    --_typography---font-weight--light: 300;
    --_typography---font-weight--semi-bold: 600;
    --_typography---font-weight--bold: 700;
    --color--dark-blue-700: #23272e;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family-grotesk);
  font-size: var(--_typography---paragraph-font-size--small-paragraph);
  background-color: var(--color--white);
  color: var(--color--black);
}

h1, h2, h3, h4 {
  color: var(--black-color);
  font-weight: var(--font-semi-bold);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}
/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  margin-inline: 3.2rem;

}

.grid {
  display: grid;
}

.section {
  padding-block: 2rem 1rem;
  margin-top: 2rem;
}


.main {
  overflow: hidden; /* For animation ScrollReveal */
}
.button-green {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    border-radius: var(--_spacing---border-radius--radius-xxl);
    background-color: var(--color--green-600);
    color: var(--color--elephant-950);
    font-size: var(--_typography---link-font-size--button);
    line-height: var(--_typography---line-height--large);
    font-weight: var(--_typography---font-weight--medium);
    justify-content: center;
    align-items: center;
    padding: 8px 16px;
    text-decoration: none;
    display: flex;
    border: none;
    font-weight: 500;
}

.button-black {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    border-radius: var(--_spacing---border-radius--radius-xxl);
    background-color: var(--color--gray-900);
    color: var(--color--white-800);
    font-size: var(--_typography---link-font-size--button);
    line-height: var(--_typography---line-height--large);
    font-weight: var(--_typography---font-weight--medium);
    justify-content: center;
    align-items: center;
    padding: 8px 16px;
    text-decoration: none;
    display: flex;
    border: none;
    font-weight: 500;
}



.button i {
    font-size: 25px;
}

#stats{
    margin-top: 1rem;
   text-align: center;
   color: var(--color--green-900);
   font-weight: 500;
   font-size: 1rem;
}

.contact__header__section{
    padding-top: 4rem;
    height: 40vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* .contact__body {
    background: #f5f5f5;
    color: #1a1a1a;
    line-height: 1.6;
    padding: 60px 20px;
} */
.contact__section{
    background: white;
    background-image: url('/images/background1.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.contact__container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 16px;
    padding: 60px;
    /* box-shadow: 0 2px 12px rgba(0,0,0,0.08); */
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
}

.contact__left-section {
    padding-right: 20px;
}

.contact__heading {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #1a1a1a;
    line-height: 1.2;
}

.contact__description {
    font-size: 16px;
    color: #666;
    margin-bottom: 24px;
    line-height: 1.6;
}

.contact__sales-link {
    color: #00d68f;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.contact__sales-link:hover {
    opacity: 0.8;
}

.contact__info-section {
    margin-top: 40px;
}

.contact__label {
    font-size: 14px;
    color: #999;
    margin-bottom: 8px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact__email,
.contact__phone {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    display: block;
}

.contact__hours {
    font-size: 14px;
    color: #666;
    margin-bottom: 32px;
}

.contact__social-label {
    font-size: 14px;
    color: #999;
    margin-bottom: 16px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact__social-icons {
    display: flex;
    gap: 12px;
}

.contact__social-icon {
    width: 40px;
    height: 40px;
    background: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.contact__social-icon:hover {
    transform: translateY(-3px);
    background: #00d68f;
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact__form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact__form-group {
    display: flex;
    flex-direction: column;
}

.contact__form-label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.contact__required {
    color: #ff4444;
}

.contact__input,
.contact__select,
.contact__textarea {
    padding: 14px 16px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: white;
}

.contact__input:focus,
.contact__select:focus,
.contact__textarea:focus {
    outline: none;
    border-color: #00d68f;
}

.contact__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23666' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.contact__textarea {
    min-height: 150px;
    resize: vertical;
    font-family: inherit;
}

.contact__radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 8px;
}

.contact__radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 15px;
}

.contact__radio {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #00d68f;
}

.contact__privacy {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

.contact__privacy-link {
    color: #00d68f;
    text-decoration: none;
}

.contact__privacy-link:hover {
    text-decoration: underline;
}

.contact__submit {
    background: #00d68f;
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    align-self: flex-start;
}

.contact__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 214, 143, 0.3);
}

.contact__submit:active {
    transform: translateY(0);
}

/* Success message */
.contact__success {
    display: none;
    padding: 16px;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    color: #155724;
    margin-bottom: 20px;
}

.contact__success.contact__show {
    display: block;
}

/* Mobile responsive */
@media (max-width: 968px) {
    .contact__container {
        padding: 40px 30px;
    }

    .contact__grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact__left-section {
        padding-right: 0;
    }

    .contact__heading {
        font-size: 36px;
    }

    .contact__email,
    .contact__phone {
        font-size: 24px;
    }
}

@media (max-width: 640px) {
    .contact__body {
        padding: 30px 16px;
    }

    .contact__container {
        padding: 30px 20px;
        border-radius: 12px;
    }

    .contact__heading {
        font-size: 28px;
    }

    .contact__form-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact__radio-group {
        flex-direction: column;
        gap: 12px;
    }

    .contact__email,
    .contact__phone {
        font-size: 20px;
    }

    .contact__submit {
        width: 100%;
    }
}
