/* ============================================================================
   HOMEPAGE STYLES - ByteBeez
   Single-page website with hero and about sections
   ============================================================================ */
/* -------------------------------------------------------------------------- */
/* COLORS & BREAKPOINTS                                                       */
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/* FONTS                                                                       */
/* -------------------------------------------------------------------------- */
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat/Montserrat-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat/Montserrat-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat/Montserrat-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato/Lato-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato/Lato-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* -------------------------------------------------------------------------- */
/* SASS TYPOGRAPHY VARIABLES                                                  */
/* -------------------------------------------------------------------------- */
/* Heading multipliers */
/* Line-height defaults */
/* Font stacks */
/* -------------------------------------------------------------------------- */
/* BASE STYLES                                                                */
/* -------------------------------------------------------------------------- */
:root {
  /* Color custom properties */
  --color-primary: #36454F;
  --color-accent: #E4140C;
  --color-primary-dark: #1C1C1C;
  --color-primary-light: #F5F5F5;
  --color-text: #1C1C1C;
  --color-text-light: #666666;
  --color-white: #FFFFFF;
  /* Font size multipliers */
  --fs-xs: 0.75;
  --fs-sm: 0.875;
  --fs-base: 1;
  --fs-lg: 1.125;
  --fs-xl: 1.25;
  --fs-2xl: 1.5;
  /* Base font size - responsive */
  font-size: 16px;
}
@media (min-width: 992px) {
  :root {
    font-size: 18px;
  }
}

body {
  font-family: "Lato", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text);
  font-size: calc(var(--fs-base) * 1rem);
}

/* -------------------------------------------------------------------------- */
/* HEADING STYLES                                                             */
/* -------------------------------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #36454F;
  margin-top: 0;
  margin-bottom: 1rem;
}

h1 {
  font-size: calc(2.5 * 1rem);
  font-weight: 900;
}
@media (max-width: 768px) {
  h1 {
    font-size: calc(1.875 * 1rem);
  }
}

h2 {
  font-size: calc(2 * 1rem);
  font-weight: 700;
}
@media (max-width: 768px) {
  h2 {
    font-size: calc(1.6 * 1rem);
  }
}

h3 {
  font-size: calc(1.5 * 1rem);
  font-weight: 600;
}
@media (max-width: 768px) {
  h3 {
    font-size: calc(1.275 * 1rem);
  }
}

h4 {
  font-size: calc(1.25 * 1rem);
  font-weight: 600;
}

h5 {
  font-size: calc(1.125 * 1rem);
  font-weight: 600;
}

h6 {
  font-size: calc(1 * 1rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* -------------------------------------------------------------------------- */
/* TEXT UTILITIES                                                             */
/* -------------------------------------------------------------------------- */
p {
  margin-top: 0;
  margin-bottom: 1rem;
}

.text-accent {
  color: #E4140C;
}

.text-primary {
  color: #36454F;
}

.text-light {
  color: var(--color-text-light);
}

strong,
b {
  font-weight: 700;
}

/* -------------------------------------------------------------------------- */
/* BUTTON/CTA STYLES                                                          */
/* -------------------------------------------------------------------------- */
.btn-primary {
  background-color: #E4140C;
  color: var(--color-white);
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: calc(var(--fs-lg) * 1rem);
  padding: 0.875rem 2rem;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background-color: rgb(179.55, 15.75, 9.45);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: #36454F;
  border: 2px solid #36454F;
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: calc(var(--fs-lg) * 1rem);
  padding: 0.875rem 2rem;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  background-color: #36454F;
  color: var(--color-white);
}

/* -------------------------------------------------------------------------- */
/* FONT SIZE MIXIN                                                            */
/* -------------------------------------------------------------------------- */
/* ============================================================================
   GLOBAL SETTINGS
   ============================================================================ */
html {
  scroll-behavior: smooth;
}

body.app-loading {
  opacity: 0;
  transition: opacity 0.3s ease;
}
body.app-loading:not(.app-loading) {
  opacity: 1;
}

/* ============================================================================
   HERO SECTION
   Full-height hero with light background to showcase logo colors
   ============================================================================ */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #FFFFFF 0%, #F5F5F5 100%);
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(228, 20, 12, 0.08) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(54, 69, 79, 0.06) 0%, transparent 50%);
  pointer-events: none;
}
.hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(54, 69, 79, 0.02) 60px, rgba(54, 69, 79, 0.02) 61px);
  pointer-events: none;
}

/* -----------------------------------------------------------------------------
   Hero Content
   -------------------------------------------------------------------------- */
.hero-content {
  position: relative;
  z-index: 2;
}

.hero-logo-wrapper {
  margin-bottom: 2rem;
  animation: fadeInDown 0.8s ease-out;
}

.hero-logo {
  height: 60px;
  width: auto;
}
@media (max-width: 768px) {
  .hero-logo {
    height: 48px;
  }
}

/* -----------------------------------------------------------------------------
   Hero Typography
   -------------------------------------------------------------------------- */
.hero-headline {
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: #36454F;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
  background: linear-gradient(135deg, #36454F 0%, #1C1C1C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 768px) {
  .hero-headline {
    font-size: 2.5rem;
  }
}
@media (max-width: 576px) {
  .hero-headline {
    font-size: 2rem;
  }
}

.hero-subheadline {
  font-family: "Lato", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.25rem;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 600px;
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
}
@media (max-width: 768px) {
  .hero-subheadline {
    font-size: 1.125rem;
  }
}
@media (max-width: 576px) {
  .hero-subheadline {
    font-size: 1rem;
  }
}

/* -----------------------------------------------------------------------------
   Hero CTAs
   -------------------------------------------------------------------------- */
.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.6s backwards;
}
@media (max-width: 768px) {
  .hero-cta-group {
    flex-direction: column;
  }
}

.btn-hero-primary {
  background-color: #E4140C;
  color: #FFFFFF;
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  border: none;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.btn-hero-primary:hover {
  background-color: rgb(189.24, 16.6, 9.96);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(228, 20, 12, 0.3);
  color: #FFFFFF;
}
.btn-hero-primary:active {
  transform: translateY(0);
}
@media (max-width: 768px) {
  .btn-hero-primary {
    width: 100%;
    text-align: center;
  }
}

.btn-hero-secondary {
  background-color: transparent;
  color: #36454F;
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  border: 2px solid #36454F;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.btn-hero-secondary:hover {
  background-color: #36454F;
  border-color: #36454F;
  color: #FFFFFF;
}
.btn-hero-secondary:active {
  transform: translateY(0);
}
@media (max-width: 768px) {
  .btn-hero-secondary {
    width: 100%;
    text-align: center;
  }
}

/* ============================================================================
   ABOUT SECTION
   Company overview and core values
   ============================================================================ */
.about-section {
  padding: 6rem 0;
  background-color: #FFFFFF;
}
@media (max-width: 768px) {
  .about-section {
    padding: 4rem 0;
  }
}
@media (max-width: 576px) {
  .about-section {
    padding: 3rem 0;
  }
}

/* -----------------------------------------------------------------------------
   About Section Headers
   -------------------------------------------------------------------------- */
.section-label {
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #E4140C;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.section-title {
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #36454F;
  margin-bottom: 2rem;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}
@media (max-width: 576px) {
  .section-title {
    font-size: 1.75rem;
  }
}

/* -----------------------------------------------------------------------------
   About Content
   -------------------------------------------------------------------------- */
.about-description {
  font-family: "Lato", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.125rem;
  line-height: 1.8;
  color: #1C1C1C;
  margin-bottom: 1.5rem;
}
.about-description:last-of-type {
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .about-description {
    font-size: 1rem;
  }
}

/* -----------------------------------------------------------------------------
   Technology Badges
   -------------------------------------------------------------------------- */
.tech-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #36454F;
  color: #FFFFFF;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  border-radius: 2rem;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}
.tech-badge:hover {
  background-color: #1C1C1C;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(54, 69, 79, 0.2);
}
@media (max-width: 576px) {
  .tech-badge {
    font-size: 0.8125rem;
    padding: 0.4rem 0.875rem;
  }
}

/* ============================================================================
   CORE VALUES SECTION
   Three-column grid showcasing company values
   ============================================================================ */
.core-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
@media (max-width: 576px) {
  .core-values {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* -----------------------------------------------------------------------------
   Value Cards
   -------------------------------------------------------------------------- */
.value-card {
  padding: 2rem;
  background-color: #F5F5F5;
  border-radius: 0.5rem;
  border: 1px solid rgba(54, 69, 79, 0.1);
  transition: all 0.3s ease;
}
.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(54, 69, 79, 0.15);
  border-color: rgba(228, 20, 12, 0.3);
  background-color: #FFFFFF;
}
@media (max-width: 576px) {
  .value-card {
    padding: 1.5rem;
  }
}

.value-icon {
  font-size: 2.5rem;
  color: #E4140C;
  margin-bottom: 1rem;
  display: block;
}
@media (max-width: 576px) {
  .value-icon {
    font-size: 2rem;
  }
}

.value-title {
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #36454F;
  margin-bottom: 0.75rem;
}
@media (max-width: 576px) {
  .value-title {
    font-size: 1.125rem;
  }
}

.value-description {
  font-family: "Lato", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  color: #666666;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 576px) {
  .value-description {
    font-size: 0.9375rem;
  }
}

/* ============================================================================
   ANIMATIONS
   Subtle entrance animations for hero content
   ============================================================================ */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ============================================================================
   UTILITY CLASSES
   Reusable classes for common patterns
   ============================================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
/* ============================================================================
   PRODUCTS SECTION
   Showcase SmartProduct AI and future products
   ============================================================================ */
.products-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, #FFFFFF 0%, #F5F5F5 100%);
  position: relative;
}
@media (max-width: 768px) {
  .products-section {
    padding: 4rem 0;
  }
}
@media (max-width: 576px) {
  .products-section {
    padding: 3rem 0;
  }
}

/* -----------------------------------------------------------------------------
   Section Header (centered)
   -------------------------------------------------------------------------- */
.section-subtitle {
  font-family: "Lato", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.125rem;
  color: #666666;
  line-height: 1.6;
  max-width: 700px;
  margin: 1rem auto 0;
}
@media (max-width: 768px) {
  .section-subtitle {
    font-size: 1rem;
  }
}

/* ============================================================================
   FEATURED PRODUCT - SmartProduct AI
   ============================================================================ */
.product-featured {
  background-color: #FFFFFF;
  border-radius: 1rem;
  padding: 3rem;
  box-shadow: 0 4px 24px rgba(54, 69, 79, 0.08);
  margin-bottom: 4rem;
  border: 1px solid rgba(54, 69, 79, 0.1);
}
@media (max-width: 768px) {
  .product-featured {
    padding: 2rem;
  }
}
@media (max-width: 576px) {
  .product-featured {
    padding: 1.5rem;
  }
}

/* -----------------------------------------------------------------------------
   Product Content
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
  .product-content {
    text-align: center;
  }
}

.product-badge {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background-color: rgba(228, 20, 12, 0.1);
  color: #E4140C;
  font-size: 0.8125rem;
  font-weight: 600;
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 2rem;
  margin-bottom: 1rem;
}

.product-title {
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #36454F;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .product-title {
    font-size: 2rem;
  }
}
@media (max-width: 576px) {
  .product-title {
    font-size: 1.75rem;
  }
}

.product-tagline {
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #E4140C;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .product-tagline {
    font-size: 1rem;
  }
}

.product-description {
  font-family: "Lato", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #666666;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .product-description {
    font-size: 1rem;
  }
}

/* -----------------------------------------------------------------------------
   Product Features List
   -------------------------------------------------------------------------- */
.product-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}
.product-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-family: "Lato", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  color: #1C1C1C;
  line-height: 1.6;
}
@media (max-width: 992px) {
  .product-features li {
    justify-content: center;
  }
}
.product-features li i {
  font-size: 1.25rem;
  color: #E4140C;
  flex-shrink: 0;
  margin-top: 0.125rem;
}
.product-features li:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .product-features {
    font-size: 0.9375rem;
  }
}

/* -----------------------------------------------------------------------------
   Product CTAs
   -------------------------------------------------------------------------- */
.product-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
@media (max-width: 992px) {
  .product-cta-group {
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .product-cta-group {
    flex-direction: column;
  }
}

.btn-product-primary {
  background-color: #E4140C;
  color: #FFFFFF;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  border: none;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.btn-product-primary:hover {
  background-color: rgb(189.24, 16.6, 9.96);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(228, 20, 12, 0.3);
  color: #FFFFFF;
}
.btn-product-primary:active {
  transform: translateY(0);
}
@media (max-width: 576px) {
  .btn-product-primary {
    width: 100%;
    text-align: center;
  }
}

.btn-product-secondary {
  background-color: transparent;
  color: #36454F;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  border: 2px solid #36454F;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.btn-product-secondary:hover {
  background-color: #36454F;
  border-color: #36454F;
  color: #FFFFFF;
}
.btn-product-secondary:active {
  transform: translateY(0);
}
@media (max-width: 576px) {
  .btn-product-secondary {
    width: 100%;
    text-align: center;
  }
}

/* -----------------------------------------------------------------------------
   Product Status Badge
   -------------------------------------------------------------------------- */
.product-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Lato", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #10B981;
}
@media (max-width: 992px) {
  .product-status {
    justify-content: center;
  }
}
.product-status i {
  font-size: 1.125rem;
}

/* -----------------------------------------------------------------------------
   Product Visual/Image
   -------------------------------------------------------------------------- */
.product-visual {
  position: relative;
}

.product-image-wrapper {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(54, 69, 79, 0.15);
  background-color: #F5F5F5;
}

.product-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.75rem;
}

.product-image-placeholder {
  aspect-ratio: 16/10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #F5F5F5 0%, #FFFFFF 100%);
  color: #36454F;
  padding: 3rem;
}
.product-image-placeholder i {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: rgba(54, 69, 79, 0.4);
}
.product-image-placeholder p {
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: rgba(54, 69, 79, 0.6);
  margin: 0;
}

/* ============================================================================
   FUTURE PRODUCTS TEASER
   ============================================================================ */
.future-products {
  padding: 3rem;
  background: linear-gradient(135deg, rgba(228, 20, 12, 0.05) 0%, rgba(54, 69, 79, 0.05) 100%);
  border-radius: 1rem;
  border: 2px dashed rgba(54, 69, 79, 0.2);
  text-align: center;
}
@media (max-width: 768px) {
  .future-products {
    padding: 2rem;
  }
}
@media (max-width: 576px) {
  .future-products {
    padding: 1.5rem;
  }
}

.future-products-icon {
  font-size: 3rem;
  color: #E4140C;
  margin-bottom: 1.5rem;
  animation: pulse 2s ease-in-out infinite;
}

.future-products-title {
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #36454F;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .future-products-title {
    font-size: 1.5rem;
  }
}

.future-products-description {
  font-family: "Lato", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #666666;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .future-products-description {
    font-size: 1rem;
  }
}

.btn-future-notify {
  background-color: #36454F;
  color: #FFFFFF;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  border: none;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-future-notify:hover {
  background-color: #1C1C1C;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(54, 69, 79, 0.3);
  color: #FFFFFF;
}
.btn-future-notify:active {
  transform: translateY(0);
}
.btn-future-notify i {
  font-size: 1.125rem;
}

/* -----------------------------------------------------------------------------
   Pulse Animation for Future Products Icon
   -------------------------------------------------------------------------- */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}
/* ============================================================================
   CUSTOM SHOPIFY APP DEVELOPMENT SECTION
   Services and custom development capabilities
   ============================================================================ */
.services-section {
  padding: 6rem 0;
  background-color: #FFFFFF;
  position: relative;
}
@media (max-width: 768px) {
  .services-section {
    padding: 4rem 0;
  }
}
@media (max-width: 576px) {
  .services-section {
    padding: 3rem 0;
  }
}

/* ============================================================================
   SERVICE INTRODUCTION
   ============================================================================ */
.service-intro {
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .service-intro {
    margin-bottom: 3rem;
  }
}

@media (max-width: 992px) {
  .service-intro-content {
    text-align: center;
  }
}

.service-intro-title {
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #36454F;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .service-intro-title {
    font-size: 1.5rem;
  }
}

.service-intro-description {
  font-family: "Lato", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #666666;
  margin-bottom: 1.25rem;
}
.service-intro-description:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .service-intro-description {
    font-size: 1rem;
  }
}

/* -----------------------------------------------------------------------------
   Service Stats
   -------------------------------------------------------------------------- */
.service-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #F5F5F5 0%, #FFFFFF 100%);
  border-radius: 0.75rem;
  border: 1px solid rgba(54, 69, 79, 0.1);
  transition: all 0.3s ease;
}
.stat-item:hover {
  transform: translateX(10px);
  box-shadow: 0 4px 20px rgba(54, 69, 79, 0.1);
  border-color: rgba(228, 20, 12, 0.3);
}
@media (max-width: 992px) {
  .stat-item {
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .stat-item {
    padding: 1.25rem;
  }
}

.stat-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #E4140C;
  border-radius: 0.5rem;
  color: #FFFFFF;
  font-size: 1.75rem;
}
@media (max-width: 576px) {
  .stat-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

.stat-content {
  text-align: left;
}
@media (max-width: 992px) {
  .stat-content {
    text-align: center;
  }
}

.stat-value {
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #36454F;
  line-height: 1;
  margin-bottom: 0.25rem;
}
@media (max-width: 576px) {
  .stat-value {
    font-size: 1.25rem;
  }
}

.stat-label {
  font-family: "Lato", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.9375rem;
  color: #666666;
  line-height: 1;
}
@media (max-width: 576px) {
  .stat-label {
    font-size: 0.875rem;
  }
}

/* ============================================================================
   SERVICE HIGHLIGHTS GRID
   ============================================================================ */
.service-highlights {
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .service-highlights {
    margin-bottom: 3rem;
  }
}

.service-card {
  height: 100%;
  padding: 2rem;
  background-color: #F5F5F5;
  border-radius: 0.75rem;
  border: 1px solid rgba(54, 69, 79, 0.1);
  transition: all 0.3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(54, 69, 79, 0.12);
  background-color: #FFFFFF;
  border-color: #E4140C;
}
.service-card:hover .service-card-icon {
  background-color: #E4140C;
  color: #FFFFFF;
}
@media (max-width: 576px) {
  .service-card {
    padding: 1.5rem;
  }
}

.service-card-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(228, 20, 12, 0.1);
  color: #E4140C;
  border-radius: 0.5rem;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}
@media (max-width: 576px) {
  .service-card-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }
}

.service-card-title {
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #36454F;
  margin-bottom: 1rem;
  line-height: 1.3;
}
@media (max-width: 576px) {
  .service-card-title {
    font-size: 1.125rem;
  }
}

.service-card-description {
  font-family: "Lato", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #666666;
  margin: 0;
}
@media (max-width: 576px) {
  .service-card-description {
    font-size: 0.9375rem;
  }
}

/* ============================================================================
   DEVELOPMENT PROCESS
   ============================================================================ */
.development-process {
  padding: 3rem;
  background: linear-gradient(135deg, rgba(54, 69, 79, 0.03) 0%, rgba(228, 20, 12, 0.03) 100%);
  border-radius: 1rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .development-process {
    padding: 2rem;
  }
}
@media (max-width: 576px) {
  .development-process {
    padding: 1.5rem;
  }
}

.process-title {
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #36454F;
  text-align: center;
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  .process-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}
@media (max-width: 576px) {
  .process-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.process-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.process-step-number {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #E4140C 0%, rgb(179.55, 15.75, 9.45) 100%);
  color: #FFFFFF;
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 12px rgba(228, 20, 12, 0.3);
}
@media (max-width: 576px) {
  .process-step-number {
    width: 50px;
    height: 50px;
    font-size: 1.125rem;
  }
}

.process-step-content {
  flex: 1;
}

.process-step-title {
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #36454F;
  margin-bottom: 0.75rem;
}
@media (max-width: 576px) {
  .process-step-title {
    font-size: 1rem;
  }
}

.process-step-description {
  font-family: "Lato", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #666666;
  margin: 0;
}
@media (max-width: 576px) {
  .process-step-description {
    font-size: 0.875rem;
  }
}

/* ============================================================================
   SERVICE CTA BOX
   ============================================================================ */
.service-cta-wrapper {
  margin-top: 3rem;
}

.service-cta-box {
  padding: 2.5rem;
  background: linear-gradient(135deg, #36454F 0%, #1C1C1C 100%);
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(54, 69, 79, 0.2);
}
@media (max-width: 768px) {
  .service-cta-box {
    padding: 2rem;
    text-align: center;
  }
}
@media (max-width: 576px) {
  .service-cta-box {
    padding: 1.5rem;
  }
}

.service-cta-title {
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .service-cta-title {
    font-size: 1.5rem;
  }
}
@media (max-width: 576px) {
  .service-cta-title {
    font-size: 1.25rem;
  }
}

.service-cta-description {
  font-family: "Lato", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}
@media (max-width: 768px) {
  .service-cta-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}

.btn-service-cta {
  background-color: #E4140C;
  color: #FFFFFF;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  border: none;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
}
.btn-service-cta:hover {
  background-color: rgb(189.24, 16.6, 9.96);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(228, 20, 12, 0.4);
  color: #FFFFFF;
}
.btn-service-cta:active {
  transform: translateY(0);
}
@media (max-width: 992px) {
  .btn-service-cta {
    width: 100%;
    text-align: center;
  }
}

/* ============================================================================
   CONTACT & GET STARTED SECTION
   Dual-path conversion strategy
   ============================================================================ */
.contact-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, #FFFFFF 0%, #F5F5F5 50%, #FFFFFF 100%);
  position: relative;
}
@media (max-width: 768px) {
  .contact-section {
    padding: 4rem 0;
  }
}
@media (max-width: 576px) {
  .contact-section {
    padding: 3rem 0;
  }
}

/* ============================================================================
   CONTACT PATHS (Two-Column Cards)
   ============================================================================ */
.contact-paths {
  margin-bottom: 3rem;
}

.contact-path-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 2.5rem;
  background-color: #FFFFFF;
  border-radius: 1rem;
  border: 2px solid rgba(54, 69, 79, 0.1);
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(54, 69, 79, 0.06);
}
.contact-path-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(54, 69, 79, 0.15);
  border-color: #E4140C;
}
@media (max-width: 768px) {
  .contact-path-card {
    padding: 2rem;
  }
}
@media (max-width: 576px) {
  .contact-path-card {
    padding: 1.75rem;
  }
}

/* -----------------------------------------------------------------------------
   Path Card Header
   -------------------------------------------------------------------------- */
.path-card-header {
  text-align: center;
  margin-bottom: 2rem;
}

.path-card-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #E4140C 0%, rgb(179.55, 15.75, 9.45) 100%);
  color: #FFFFFF;
  border-radius: 1rem;
  font-size: 2.25rem;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 24px rgba(228, 20, 12, 0.3);
}
.path-card-icon.secondary {
  background: linear-gradient(135deg, #36454F 0%, #1C1C1C 100%);
  box-shadow: 0 8px 24px rgba(54, 69, 79, 0.3);
}
@media (max-width: 576px) {
  .path-card-icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }
}

.path-card-title {
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #36454F;
  margin-bottom: 1rem;
  line-height: 1.3;
}
@media (max-width: 576px) {
  .path-card-title {
    font-size: 1.25rem;
  }
}

.path-card-description {
  font-family: "Lato", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #666666;
  margin: 0;
}

/* -----------------------------------------------------------------------------
   Path Card Features
   -------------------------------------------------------------------------- */
.path-card-features {
  flex: 1;
  margin-bottom: 2rem;
}

.path-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  font-family: "Lato", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.9375rem;
  color: #1C1C1C;
  border-bottom: 1px solid rgba(54, 69, 79, 0.08);
}
.path-feature:last-child {
  border-bottom: none;
}
.path-feature i {
  font-size: 1.25rem;
  color: #E4140C;
  flex-shrink: 0;
}
@media (max-width: 576px) {
  .path-feature {
    font-size: 0.875rem;
  }
}

/* -----------------------------------------------------------------------------
   Path Card CTAs
   -------------------------------------------------------------------------- */
.path-card-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.btn-path-primary {
  background-color: #E4140C;
  color: #FFFFFF;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  border: none;
  border-radius: 0.5rem;
  text-align: center;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
}
.btn-path-primary.secondary {
  background-color: #36454F;
}
.btn-path-primary.secondary:hover {
  background-color: #1C1C1C;
  box-shadow: 0 6px 20px rgba(54, 69, 79, 0.3);
}
.btn-path-primary:hover {
  background-color: rgb(189.24, 16.6, 9.96);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(228, 20, 12, 0.3);
  color: #FFFFFF;
}
.btn-path-primary:active {
  transform: translateY(0);
}

.btn-path-link {
  color: #36454F;
  padding: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  text-align: center;
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.btn-path-link i {
  font-size: 1.125rem;
}
.btn-path-link:hover {
  color: #E4140C;
  text-decoration: underline;
}

/* ============================================================================
   CONTACT INFORMATION BOX
   ============================================================================ */
.contact-info {
  margin-top: 3rem;
}

.contact-info-box {
  padding: 2rem;
  background-color: #FFFFFF;
  border-radius: 0.75rem;
  border: 1px solid rgba(54, 69, 79, 0.1);
  text-align: center;
}
@media (max-width: 576px) {
  .contact-info-box {
    padding: 1.5rem;
  }
}

.contact-info-title {
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #36454F;
  margin-bottom: 1.5rem;
}
@media (max-width: 576px) {
  .contact-info-title {
    font-size: 1.125rem;
  }
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background-color: #F5F5F5;
  border-radius: 0.5rem;
  width: 100%;
  max-width: 400px;
}
.contact-method i {
  font-size: 1.5rem;
  color: #E4140C;
  flex-shrink: 0;
}
@media (max-width: 576px) {
  .contact-method {
    flex-direction: column;
    text-align: center;
  }
}

.contact-method-content {
  text-align: left;
}
@media (max-width: 576px) {
  .contact-method-content {
    text-align: center;
  }
}

.contact-method-label {
  font-family: "Lato", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #999999;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.contact-method-value {
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: #36454F;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-method-value:hover {
  color: #E4140C;
}

/* ============================================================================
   CONTACT FORM MODAL
   ============================================================================ */
.modal-content {
  border-radius: 1rem;
  border: none;
  box-shadow: 0 20px 60px rgba(54, 69, 79, 0.2);
}

.modal-header {
  border-bottom: 1px solid rgba(54, 69, 79, 0.1);
  padding: 1.5rem 2rem;
}
.modal-header .modal-title {
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #36454F;
}
.modal-header .btn-close:focus {
  box-shadow: none;
}

.modal-body {
  padding: 2rem;
}

.modal-footer {
  border-top: 1px solid rgba(54, 69, 79, 0.1);
  padding: 1.5rem 2rem;
}

/* -----------------------------------------------------------------------------
   Contact Form Styles
   -------------------------------------------------------------------------- */
.contact-form .form-label {
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #36454F;
  margin-bottom: 0.5rem;
}
.contact-form .form-control,
.contact-form .form-select {
  font-family: "Lato", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(54, 69, 79, 0.2);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: #E4140C;
  box-shadow: 0 0 0 0.25rem rgba(228, 20, 12, 0.1);
}
.contact-form textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1rem;
  background-color: rgba(228, 20, 12, 0.05);
  border-left: 3px solid #E4140C;
  border-radius: 0.375rem;
  font-family: "Lato", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.875rem;
  color: #666666;
  margin-top: 1rem;
}
.form-note i {
  font-size: 1rem;
  color: #E4140C;
  flex-shrink: 0;
}

/* ============================================================================
   MODAL ANIMATIONS
   ============================================================================ */
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
}

.modal.show .modal-dialog {
  transform: scale(1);
}/*# sourceMappingURL=home.css.map */