/* ================ Base Settings & Variables ================ */
:root {
  /* Color Palette - Triadic color scheme with brutalist influence */
  --primary-color: #FF3D00; /* Vibrant orange-red */
  --secondary-color: #00B8D4; /* Turquoise blue */
  --tertiary-color: #64DD17; /* Bright lime green */
  
  /* Additional colors for contrast and balance */
  --dark-color: #202023; /* Near black for strong contrast */
  --light-color: #F5F5F7; /* Off-white */
  --medium-color: #686870; /* Medium gray */
  
  /* Accent variations */
  --primary-dark: #D32F2F; /* Darker primary */
  --primary-light: #FF6E40; /* Lighter primary */
  --secondary-dark: #0097A7; /* Darker secondary */
  --secondary-light: #18FFFF; /* Lighter secondary */
  --tertiary-dark: #33691E; /* Darker tertiary */
  --tertiary-light: #B2FF59; /* Lighter tertiary */
  
  /* Text colors */
  --text-dark: #202023; /* For light backgrounds */
  --text-light: #FFFFFF; /* For dark backgrounds */
  --text-muted: #909096; /* Subdued text color */
  
  /* UI elements */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.14);
  --shadow-brutal: 8px 8px 0 rgba(0, 0, 0, 0.9);
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;
  
  /* Font sizes */
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-md: 1rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.5rem;
  --fs-xxl: 2rem;
  --fs-xxxl: 3rem;
  --fs-hero: 4.5rem;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  
  /* Containers */
  --container-width: 1200px;
  --section-padding: 6rem 0;
}

/* ================ Reset & Base Styles ================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', sans-serif;
  font-size: var(--fs-md);
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--light-color);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
  color: var(--text-dark);
  text-transform: uppercase;
  font-weight: 700;
}

h1 {
  font-size: var(--fs-hero);
  letter-spacing: -0.02em;
}

h2 {
  font-size: var(--fs-xxxl);
  letter-spacing: 0.05em;
}

h3 {
  font-size: var(--fs-xxl);
  letter-spacing: 0.03em;
}

h4 {
  font-size: var(--fs-xl);
}

p {
  margin-bottom: var(--space-sm);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-normal);
}

a:hover {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

.section-padding {
  padding: var(--section-padding);
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-lg);
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 6px;
  background-color: var(--primary-color);
  margin: var(--space-sm) auto;
}

.section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-lg);
  color: var(--medium-color);
}

/* ================ Button Styles ================ */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: var(--fs-md);
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: none;
  border-radius: var(--border-radius-md);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: all var(--transition-slow);
  z-index: 1;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--text-light);
  box-shadow: var(--shadow-brutal);
  border: 3px solid var(--dark-color);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.8);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-light);
  border: 3px solid var(--text-light);
  box-shadow: var(--shadow-brutal);
}

.btn-outline:hover {
  background-color: var(--text-light);
  color: var(--primary-color);
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.8);
}

/* ================ Header & Navigation ================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: var(--space-sm) 0;
  background-color: var(--light-color);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

.header.scrolled {
  padding: 0.5rem 0;
  background-color: rgba(245, 245, 247, 0.95);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 1001;
}

.logo h1 {
  font-size: var(--fs-xl);
  margin: 0;
  color: var(--dark-color);
}

.logo span {
  color: var(--primary-color);
}

.navigation {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
}

.nav-list li {
  margin-left: var(--space-md);
}

.nav-list a {
  position: relative;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-dark);
  padding: 0.5rem 0;
  transition: all var(--transition-normal);
}

.nav-list a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: width var(--transition-slow);
}

.nav-list a:hover, .nav-list a:focus {
  color: var(--primary-color);
}

.nav-list a:hover::after, .nav-list a:focus::after {
  width: 100%;
}

.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1001;
}

.burger-menu span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--text-dark);
  transition: all var(--transition-normal);
}

/* ================ Hero Section ================ */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  padding-top: 80px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(32,32,35,0.6));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 var(--space-md);
}

.hero-title {
  color: var(--text-light);
  font-size: clamp(2.5rem, 5vw, var(--fs-hero));
  margin-bottom: var(--space-md);
  text-shadow: 3px 3px 0 var(--dark-color);
}

.hero-subtitle {
  color: var(--text-light);
  font-size: clamp(1.25rem, 3vw, var(--fs-xxl));
  margin-bottom: var(--space-lg);
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

/* ================ About Section ================ */
.about {
  background-color: var(--light-color);
}

.about-content {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.about-image {
  flex: 1;
  position: relative;
}

.about-text {
  flex: 1;
}

.image-container {
  position: relative;
  border: 3px solid var(--dark-color);
  box-shadow: var(--shadow-brutal);
  overflow: hidden;
  transition: transform var(--transition-slow);
}

.image-container:hover {
  transform: translate(-8px, -8px);
  box-shadow: 16px 16px 0 rgba(0, 0, 0, 0.8);
}

.image-container img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.image-container:hover img {
  transform: scale(1.05);
}

/* ================ Features Section ================ */
.features {
  background-color: var(--secondary-color);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 50%;
  background: var(--secondary-dark);
  transform: rotate(-3deg);
  z-index: 1;
}

.features .section-title, 
.features .section-description {
  color: var(--text-light);
  position: relative;
  z-index: 2;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
  position: relative;
  z-index: 2;
}

.feature-card {
  background-color: var(--light-color);
  border: 3px solid var(--dark-color);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-brutal);
  transition: transform var(--transition-slow);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.feature-card:hover .card-image img {
  transform: scale(1.1);
}

.card-content {
  padding: var(--space-md);
  text-align: center;
  background-color: var(--light-color);
  color: var(--text-dark);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.card-content h3 {
  color: var(--primary-color);
  margin-bottom: var(--space-sm);
}

/* ================ Innovation Section ================ */
.innovation {
  position: relative;
  background-color: var(--light-color);
  overflow: hidden;
}

.innovation::after {
  content: '';
  position: absolute;
  right: -5%;
  bottom: -5%;
  width: 300px;
  height: 300px;
  background-color: var(--tertiary-color);
  opacity: 0.1;
  border-radius: 50%;
  z-index: 0;
}

.innovation-content {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.innovation-text {
  flex: 1;
  position: relative;
  z-index: 1;
}

.innovation-image {
  flex: 1;
  position: relative;
  z-index: 1;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: var(--space-md);
  background-color: var(--dark-color);
  color: var(--text-light);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-brutal);
  transition: transform var(--transition-normal);
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-number {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: var(--fs-xxxl);
  font-weight: 700;
  color: var(--tertiary-color);
  margin-bottom: var(--space-xs);
}

.stat-label {
  font-size: var(--fs-md);
  font-weight: 600;
}

/* ================ Vision Section ================ */
.vision {
  background-color: var(--tertiary-color);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.vision::before {
  content: '';
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 120%;
  height: 50%;
  background: var(--tertiary-dark);
  transform: rotate(3deg);
  z-index: 1;
}

.vision .section-title, 
.vision .section-description {
  color: var(--text-light);
  position: relative;
  z-index: 2;
}

.vision-content {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  position: relative;
  z-index: 2;
}

.vision-text {
  flex: 1;
}

.vision-image {
  flex: 1;
}

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

/* ================ Pricing Section ================ */
.pricing {
  background-color: var(--light-color);
  position: relative;
}

.pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.05), transparent);
  z-index: 1;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
  position: relative;
  z-index: 2;
}

.price-card {
  background-color: var(--light-color);
  border: 3px solid var(--dark-color);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-brutal);
  transition: transform var(--transition-slow);
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  transform: scale(1.05);
  border-color: var(--primary-color);
  z-index: 3;
}

.price-card:hover {
  transform: translateY(-10px);
}

.price-card.featured:hover {
  transform: translateY(-10px) scale(1.05);
}

.card-header {
  padding: var(--space-md) var(--space-md) 0;
  text-align: center;
}

.card-header h3 {
  color: var(--primary-color);
  margin-bottom: var(--space-sm);
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: var(--space-sm);
}

.amount {
  font-family: 'Oswald', sans-serif;
  font-size: var(--fs-xxxl);
  font-weight: 700;
  color: var(--dark-color);
}

.currency {
  font-family: 'Nunito', sans-serif;
  font-size: var(--fs-lg);
  color: var(--medium-color);
}

.features-list {
  padding: var(--space-md);
  flex-grow: 1;
}

.features-list li {
  margin-bottom: var(--space-sm);
  position: relative;
  padding-left: 1.5em;
  text-align: left;
}

.features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--tertiary-color);
  font-weight: bold;
}

.pricing-note {
  margin-top: var(--space-lg);
  text-align: center;
  font-size: var(--fs-sm);
  color: var(--medium-color);
}

/* ================ Blog Section ================ */
.blog {
  background-color: var(--light-color);
  position: relative;
  overflow: hidden;
}

.blog::after {
  content: '';
  position: absolute;
  left: -5%;
  top: -5%;
  width: 300px;
  height: 300px;
  background-color: var(--primary-color);
  opacity: 0.1;
  border-radius: 50%;
  z-index: 0;
}

.blog-slider {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.blog-slider-track {
  display: flex;
  gap: var(--space-md);
  transition: transform var(--transition-slow);
}

.blog-card {
  flex: 0 0 calc(33.333% - var(--space-md));
  min-width: 300px;
  background-color: var(--light-color);
  border: 3px solid var(--dark-color);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-brutal);
  transition: transform var(--transition-slow);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.blog-card:hover {
  transform: translateY(-10px);
}

.blog-date {
  font-size: var(--fs-sm);
  color: var(--medium-color);
  margin-bottom: var(--space-xs);
}

.read-more {
  display: inline-block;
  margin-top: var(--space-sm);
  color: var(--primary-color);
  font-weight: 700;
  position: relative;
  padding-right: 1.5em;
}

.read-more::after {
  content: '→';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform var(--transition-normal);
}

.read-more:hover::after {
  transform: translate(5px, -50%);
}

.slider-controls {
  display: flex;
  justify-content: center;
  margin-top: var(--space-md);
  gap: var(--space-sm);
}

.slider-prev,
.slider-next {
  background-color: var(--dark-color);
  color: var(--text-light);
  border: none;
  padding: 0.5em 1em;
  cursor: pointer;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: var(--border-radius-sm);
  transition: background-color var(--transition-normal);
}

.slider-prev:hover,
.slider-next:hover {
  background-color: var(--primary-color);
}

/* ================ Resources Section ================ */
.resources {
  background-color: var(--light-color);
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-md);
}

.resource-card {
  background-color: var(--light-color);
  padding: var(--space-md);
  border: 3px solid var(--dark-color);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-brutal);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.resource-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.8);
  background-color: var(--primary-light);
  color: var(--text-light);
}

.resource-card h3 {
  margin-bottom: var(--space-sm);
  color: var(--primary-color);
  transition: color var(--transition-normal);
}

.resource-card:hover h3 {
  color: var(--text-light);
}

/* ================ Team Section ================ */
.team {
  background-color: var(--light-color);
  position: relative;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-md);
}

.team-card {
  background-color: var(--light-color);
  border: 3px solid var(--dark-color);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-brutal);
  transition: transform var(--transition-slow);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-card:hover {
  transform: translateY(-10px);
}

.team-card .card-image {
  width: 100%;
  height: 300px;
  border-radius: var(--border-radius-md) var(--border-radius-md) 0 0;
  overflow: hidden;
}

.team-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.team-card:hover .card-image img {
  transform: scale(1.1);
}

.position {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

/* ================ Clientele Section ================ */
.clientele {
  background-color: var(--dark-color);
  color: var(--text-light);
}

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

.testimonials-slider {
  position: relative;
  margin-bottom: var(--space-lg);
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial {
  flex: 0 0 100%;
  padding: 0 var(--space-md);
}

.testimonial-content {
  background-color: var(--light-color);
  color: var(--text-dark);
  padding: var(--space-md);
  border-radius: var(--border-radius-md);
  position: relative;
  box-shadow: var(--shadow-brutal);
}

.testimonial-content::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 100px;
  font-family: 'Georgia', serif;
  color: var(--primary-color);
  opacity: 0.2;
  line-height: 1;
}

.client-info {
  display: flex;
  align-items: center;
  margin-top: var(--space-md);
}

.client-info img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: var(--space-sm);
  border: 3px solid var(--dark-color);
}

.client-info h4 {
  margin: 0 0 0.25rem;
  color: var(--primary-color);
}

.client-info p {
  margin: 0;
  font-size: var(--fs-sm);
  color: var(--medium-color);
}

.slider-dots {
  display: flex;
  justify-content: center;
  margin-top: var(--space-md);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--medium-color);
  margin: 0 5px;
  cursor: pointer;
  transition: background-color var(--transition-normal);
}

.dot.active, .dot:hover {
  background-color: var(--primary-color);
}

.clients-logos {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  align-items: center;
  margin-top: var(--space-lg);
}

.clients-logos img {
  height: 60px;
  margin: var(--space-sm);
  filter: brightness(0) invert(1);
  transition: filter var(--transition-normal), transform var(--transition-normal);
}

.clients-logos img:hover {
  filter: brightness(0) invert(1) drop-shadow(0 0 5px rgba(255,255,255,0.5));
  transform: scale(1.1);
}

/* ================ Contact Section ================ */
.contact {
  background-color: var(--light-color);
  position: relative;
  overflow: hidden;
}

.contact::after {
  content: '';
  position: absolute;
  right: -5%;
  bottom: -5%;
  width: 300px;
  height: 300px;
  background-color: var(--secondary-color);
  opacity: 0.1;
  border-radius: 50%;
  z-index: 0;
}

.contact-content {
  display: flex;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
}

.contact-info {
  flex: 1;
}

.contact-form {
  flex: 1;
}

.contact-details {
  margin-top: var(--space-md);
}

.contact-item {
  display: flex;
  margin-bottom: var(--space-sm);
  align-items: flex-start;
}

.contact-item .icon {
  font-size: var(--fs-xxl);
  margin-right: var(--space-sm);
  color: var(--primary-color);
}

.contact-item h4 {
  margin: 0 0 0.25rem;
  color: var(--primary-color);
}

.contact-item p {
  margin: 0;
}

form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.form-group {
  margin-bottom: var(--space-sm);
}

.form-group.full-width {
  grid-column: 1 / -1;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

input, textarea {
  width: 100%;
  padding: 0.75rem;
  border: 3px solid var(--dark-color);
  border-radius: var(--border-radius-sm);
  font-family: 'Nunito', sans-serif;
  font-size: var(--fs-md);
  transition: all var(--transition-normal);
  background-color: var(--light-color);
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 61, 0, 0.2);
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  font-size: var(--fs-sm);
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: relative;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: var(--light-color);
  border: 3px solid var(--dark-color);
  border-radius: var(--border-radius-sm);
  margin-right: 10px;
  flex-shrink: 0;
}

.checkbox-container:hover input ~ .checkmark {
  background-color: #eee;
}

.checkbox-container input:checked ~ .checkmark {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-container .checkmark:after {
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.map-container {
  position: relative;
  z-index: 1;
  border: 3px solid var(--dark-color);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-brutal);
}

/* ================ Footer ================ */
.footer {
  background-color: var(--dark-color);
  color: var(--text-light);
  padding: var(--space-lg) 0 var(--space-sm);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: -100px;
  width: 200px;
  height: 200px;
  background-color: var(--primary-color);
  opacity: 0.1;
  border-radius: 50%;
}

.footer::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background-color: var(--tertiary-color);
  opacity: 0.1;
  border-radius: 50%;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
}

.footer-logo h3 {
  color: var(--text-light);
  margin: 0 0 var(--space-xs);
  font-size: var(--fs-xxl);
}

.footer-logo span {
  color: var(--primary-color);
}

.footer-links h4 {
  color: var(--text-light);
  margin-bottom: var(--space-sm);
  position: relative;
  display: inline-block;
}

.footer-links h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 30px;
  height: 3px;
  background-color: var(--primary-color);
}

.footer-links ul li {
  margin-bottom: 0.5rem;
}

.footer-links ul li a {
  color: var(--text-muted);
  transition: color var(--transition-normal), transform var(--transition-normal);
  display: inline-block;
}

.footer-links ul li a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.footer-social h4 {
  color: var(--text-light);
  margin-bottom: var(--space-sm);
  position: relative;
  display: inline-block;
}

.footer-social h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 30px;
  height: 3px;
  background-color: var(--primary-color);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.social-links a {
  color: var(--text-muted);
  transition: color var(--transition-normal);
  position: relative;
  padding-left: 25px;
}

.social-links a:hover {
  color: var(--primary-color);
}

.social-links a:before {
  font-family: sans-serif;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.social-links a[href*="facebook"]:before {
  content: "f";
}

.social-links a[href*="twitter"]:before {
  content: "t";
}

.social-links a[href*="instagram"]:before {
  content: "i";
}

.contact-info p {
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-sm);
  position: relative;
  z-index: 1;
}

/* ================ Utility Classes ================ */
.hidden {
  display: none !important;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

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

.bg-primary {
  background-color: var(--primary-color);
}

.bg-secondary {
  background-color: var(--secondary-color);
}

.bg-tertiary {
  background-color: var(--tertiary-color);
}

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

.bg-light {
  background-color: var(--light-color);
}

/* ================ Success Page ================ */
.success-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: var(--space-lg);
  text-align: center;
}

.success-icon {
  font-size: 80px;
  color: var(--tertiary-color);
  margin-bottom: var(--space-md);
}

.success-page h1 {
  margin-bottom: var(--space-md);
}

.success-page p {
  max-width: 600px;
  margin-bottom: var(--space-lg);
}

/* ================ Privacy & Terms Pages ================ */
.content-page {
  padding-top: 120px;
  padding-bottom: var(--space-lg);
}

.content-page h1 {
  margin-bottom: var(--space-md);
}

.content-page h2 {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.content-page p {
  margin-bottom: var(--space-md);
}

.content-page ul {
  margin-bottom: var(--space-md);
  padding-left: 2rem;
}

.content-page ul li {
  list-style-type: disc;
  margin-bottom: 0.5rem;
}

/* ================ Animations ================ */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes slideDown {
  from { transform: translateY(-30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes slideRight {
  from { transform: translateX(-30px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes slideLeft {
  from { transform: translateX(30px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.fadeIn { animation: fadeIn 1s ease forwards; }
.slideUp { animation: slideUp 1s ease forwards; }
.slideDown { animation: slideDown 1s ease forwards; }
.slideRight { animation: slideRight 1s ease forwards; }
.slideLeft { animation: slideLeft 1s ease forwards; }
.pulse { animation: pulse 2s ease infinite; }

/* ================ Media Queries ================ */
@media (max-width: 1200px) {
  :root {
    --section-padding: 4rem 0;
  }
  
  h1 {
    font-size: 3.5rem;
  }
  
  h2 {
    font-size: 2.5rem;
  }
  
  .about-content,
  .innovation-content,
  .vision-content,
  .contact-content {
    flex-direction: column;
  }
  
  .about-image,
  .about-text,
  .innovation-text,
  .innovation-image,
  .vision-text,
  .vision-image,
  .contact-info,
  .contact-form {
    flex: 0 0 100%;
  }
  
  .about-image,
  .innovation-image,
  .vision-image {
    margin-bottom: var(--space-lg);
  }
}

@media (max-width: 992px) {
  :root {
    --section-padding: 3rem 0;
  }
  
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.25rem;
  }
  
  .nav-list {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--light-color);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }
  
  .nav-list.active {
    display: flex;
  }
  
  .nav-list li {
    margin: var(--space-sm) 0;
  }
  
  .burger-menu {
    display: flex;
  }
  
  .burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .burger-menu.active span:nth-child(2) {
    opacity: 0;
  }
  
  .burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-buttons .btn {
    width: 100%;
    margin-bottom: var(--space-sm);
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 2.5rem 0;
    --fs-hero: 3rem;
    --fs-xxxl: 2rem;
    --fs-xxl: 1.75rem;
  }
  
  .about-content, 
  .innovation-content, 
  .vision-content {
    flex-direction: column;
  }
  
  .price-card.featured {
    transform: none;
  }
  
  .blog-card {
    flex: 0 0 calc(100% - var(--space-md));
  }
  
  form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  :root {
    --section-padding: 2rem 0;
    --fs-hero: 2.5rem;
    --fs-xxxl: 1.75rem;
    --fs-xxl: 1.5rem;
    --fs-xl: 1.25rem;
  }
  
  .hero-content {
    padding: 0 var(--space-sm);
  }
  
  .stats-container {
    grid-template-columns: 1fr;
  }
  
  .clients-logos img {
    height: 40px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

html,body{
  overflow-x: hidden;
}
.burger-menu{
  display: none !important;
}