@charset "UTF-8";

:root {
  /* Colors */
  --bg-dark: #050505;
  --text-secondary: #cccccc;
  --accent-orange: #F19300;
  --accent-orange-hover: #e68a00;
  --pill-bg: #262626;
  --border-color: rgba(255, 255, 255, 0.1);

  /* Fonts */
  --font-heading: "Oswald", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-proxima: "Proxima Nova", sans-serif;
  --font-proxima-bold: "Proxima Nova Bold", sans-serif;
  --font-heading-trial: "Heading Now Trial", sans-serif;
  --font-urbanist: "Urbanist", sans-serif;

  /* Layout */
  --max-width: 1520px;
  --container-padding: 0 0px;

  /* Spacing */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 48px;
  --spacing-xxl: 80px;
}

@font-face {
  font-family: "Proxima Nova";
  src: url("fonts/proxima-nova/proximanova-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Proxima Nova Bold";
  src: url("fonts/proxima-nova/Proxima-Nova-Bold.otf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Heading Now Trial Italic";
  src: url("fonts/heading_now/HeadingNowTrial-54Regular.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Heading Now Trial";
  src: url("fonts/heading_now/HeadingNowTrial-56Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Urbanist";
  src: url("fonts/Urbanist-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Sora";
  src: url("fonts/Sora-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IBMPlexMono";
  src: url("fonts/IBMPlexMono-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

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

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  overflow-x: hidden;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 1370px;
  margin: 0 auto;
  padding: 0 50px;
}


/* About Intro Section */
.about-intro {
  padding: 60px 0;
  /* background-color: var(--bg-dark); */
  /* color: white; */
}

.about-intro .container {
  max-width: 1600px;
}



.about-grid {
  display: grid;
  grid-template-columns: 518px 1fr;
  gap: 60px;
  align-items: start;
}

.about-left {
  position: sticky;
  top: 40px;
}

.section-label {
  padding-top: 10px;
  font-family: "Proxima Nova Bold", sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 40px;
  display: block;
  color: #101010;
}

.about-content p {
  font-family: var(--font-proxima);
  font-size: var(--fs-body);
  line-height: 1.4;
  color: rgba(16, 16, 16, 0.6);
  margin-bottom: 20px;
  max-width: 500px;
}

.about-content .btn {
  margin-top: 20px;
}

.btn-about-intro {
  color: #000 !important;
}

.about-right h3 {
  font-family: "Heading Now Trial", sans-serif;
  font-size: clamp(20px, 5vw, 30px);
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
  margin-bottom: 30px;
  color: #323232;
}

@media (max-width:1440px){
    .about-right h3{
        font-size: clamp(20px, 5vw, 25px);
    }
    
}

.about-image-wrapper {
  /* width: 100%;
  max-width: 940px;
  height: 468px; */
  border-radius: 20px;
  overflow: hidden;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Promises Section Alignment */
.aboutPromise .promises-list li p {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 90px;
  align-items: center;
}
@media (max-width:600px){
    .aboutPromise .promises-list li p{
        grid-template-columns: 1fr !important;
    gap: 10px !important;
    }
}

.promises-list li p .text-accent {
  margin-right: 0;
  font-size: 20px;
  opacity: 0.6;
}

.promises-list li p .text-dark {
  text-transform: uppercase;
}

.promises-list li {
  border-right: none;
}

/* Our Story Section */
.our-story-section {
  padding: 60px 0;
  background-color: var(--bg-dark);
  color: var(--text-primary);
}

.our-story-section .container {
  max-width: 1600px;
}

.our-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.our-story-content {
  padding-right: 20px;
}

.os-subtitle {
  font-family: var(--font-heading-trial);
  font-size: 24px;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0px;
  line-height: 1.2;
}

.os-title {
  font-family: var(--font-heading-trial);
  color: #FFFFFF;
  text-transform: uppercase;
  margin-bottom: 40px;
  line-height: 1.1;
}

.os-item {
  margin-bottom: 40px;
}

.os-item-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.os-icon {
  width: 22px;
  height: 22px;
}

.os-item-title {
  font-family: var(--font-proxima-bold);
  font-size: clamp(18px, 5vw, 22px);
  color: #FFFFFF;
}

.os-item-text {
  font-family: var(--font-proxima);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  max-width: 675px;
  margin: 0;
}

.btn-os {
  margin-top: 10px;
  color: #000 !important;
  background-color: var(--accent-orange);
  border-color: var(--accent-orange);
  font-size: 20px;
  padding: 16px 40px;
}

.btn-os:hover {
  color: #000 !important;
  background-color: var(--accent-orange-hover);
}

.our-story-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ///////////////////////////// */
/* Media Queries */
@media (max-width: 1040px) {
  .our-story-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .our-story-content {
    padding-right: 0;
    text-align: left;
  }

  .our-story-image {
    margin-top: 20px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-left {
    position: static;
  }

  .about-content p {
    max-width: 100%;
  }
}

@media (max-width: 992px) {
  .promises-text {
    margin-bottom: 30px;
  }

  .section-label {
    margin-bottom: 30px;
  }

  .about-content .btn {
    margin-top: 10px;
  }

  .about-grid {
    gap: 30px;
  }

  .promises-grid {
    grid-template-columns: 1fr;
    gap: 0px;
  }
}

@media (max-width: 768px) {
  .section-label {
    margin-bottom: 20px;
  }

  .about-intro {
    padding: 60px 0;
  }

  .our-story-section {
    padding: 60px 0;
  }

  .our-story-grid {
    gap: 40px;
  }

  .promises-list li p {
    grid-template-columns: 120px 1fr;
    gap: 30px;
  }

  .promises-subtitle {
    margin-bottom: 30px;
  }

  .promises-list {
    margin-bottom:30px;
  }

  .os-title,
  .os-item,
  .testimonials-header,
  .contact-description,
  .contact-features,
  .form-subtitle {
    margin-bottom: 20px;
  }
  
  

  .btn-os {
    margin-top: 0px;
  }

  .our-story-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-flex-container {
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .our-story-section {
    padding: 40px 0;
  }

  .our-story-grid {
    gap: 30px;
  }

  .promises-list li p {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .promises-list li p .text-accent {
    font-size: 18px;
    margin-bottom: 5px;
    display: block;
  }
}