/* ===== PROFESSIONAL GOOGLE FONTS ===== */
/* Fonts are loaded in HTML for better performance */

/* ===== CSS VARIABLES - MODERN TRENDY THEME ===== */
:root {
  --header-height: 5rem;

  /* ===== Spring Wealth Brand Colors (Enhanced) ===== */
  --primary-color: hsl(140, 70%, 45%);        /* Spring Green */
  --primary-color-alt: hsl(140, 70%, 40%);
  --primary-color-light: hsl(140, 70%, 95%);
  --primary-color-dark: hsl(140, 70%, 35%);
  
  --secondary-color: hsl(200, 85%, 50%);      /* Wealth Blue */
  --secondary-color-alt: hsl(200, 85%, 45%);
  --secondary-color-light: hsl(200, 85%, 95%);
  --secondary-color-dark: hsl(200, 85%, 40%);
  
  --accent-color: hsl(45, 100%, 60%);         /* Gold Accent */
  --accent-color-light: hsl(45, 100%, 95%);
  
  --success-color: hsl(140, 70%, 50%);
  --warning-color: hsl(45, 100%, 55%);
  --error-color: hsl(0, 70%, 55%);
  
  /* ===== Professional Neutral Colors ===== */
  --title-color: hsl(220, 25%, 15%);
  --text-color: hsl(220, 15%, 40%);
  --text-color-light: hsl(220, 12%, 55%);
  --text-color-lighter: hsl(220, 8%, 70%);
  --white-color: hsl(0, 0%, 100%);
  --body-color: hsl(220, 20%, 98%);
  --container-color: hsl(0, 0%, 100%);
  --border-color: hsl(220, 15%, 90%);
  --shadow-color: hsla(220, 48%, 15%, 0.08);
  --overlay-color: hsla(220, 20%, 10%, 0.75);

  /* ===== Modern Gradients & Effects ===== */
  --primary-gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  --hero-gradient: linear-gradient(135deg, var(--primary-color-light) 0%, var(--secondary-color-light) 50%, var(--white-color) 100%);
  --card-gradient: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
  --section-gradient: linear-gradient(180deg, var(--body-color) 0%, var(--white-color) 50%, var(--body-color) 100%);
  --accent-gradient: linear-gradient(135deg, var(--accent-color) 0%, hsl(45, 100%, 70%) 100%);
  --glass-gradient: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  --dark-gradient: linear-gradient(135deg, hsl(220, 30%, 8%) 0%, hsl(220, 25%, 12%) 100%);

  /* ===== Glassmorphism Effects ===== */
  --glass-bg: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  --backdrop-blur: blur(10px);

  /* ===== Professional Typography System ===== */
  --body-font: 'Roboto', sans-serif;
  --heading-font: 'Work Sans', sans-serif;
  --accent-font: 'Nunito', sans-serif;
  
  /* Font Sizes - Modern Scale */
  --biggest-font-size: 4rem;       /* Hero titles */
  --h1-font-size: 3rem;            /* Section titles */
  --h2-font-size: 2.25rem;         /* Subsection titles */
  --h3-font-size: 1.75rem;         /* Card titles */
  --h4-font-size: 1.5rem;          /* Small headings */
  --large-font-size: 1.25rem;      /* Large text */
  --normal-font-size: 1.125rem;    /* Body text */
  --small-font-size: 1rem;         /* Small text */
  --smaller-font-size: 0.875rem;   /* Tiny text */

  /* Font Weights - Modern */
  --font-light: 300;
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;
  --font-extra-bold: 800;
  --font-black: 900;

  /* Spacing System - Consistent Scale */
  --space-xs: 0.5rem;    /* 8px */
  --space-sm: 0.75rem;   /* 12px */
  --space-md: 1rem;      /* 16px */
  --space-lg: 1.5rem;    /* 24px */
  --space-xl: 2rem;      /* 32px */
  --space-2xl: 3rem;     /* 48px */
  --space-3xl: 4rem;     /* 64px */
  --space-4xl: 6rem;     /* 96px */
  
  /* Legacy margin variables for compatibility */
  --mb-0-25: var(--space-xs);
  --mb-0-5: var(--space-xs);
  --mb-0-75: var(--space-sm);
  --mb-1: var(--space-md);
  --mb-1-25: var(--space-md);
  --mb-1-5: var(--space-lg);
  --mb-2: var(--space-xl);
  --mb-2-5: var(--space-xl);
  --mb-3: var(--space-2xl);

  /* Border Radius System */
  --radius-sm: 0.375rem;   /* 6px */
  --radius-md: 0.5rem;     /* 8px */
  --radius-lg: 0.75rem;    /* 12px */
  --radius-xl: 1rem;       /* 16px */
  --radius-2xl: 1.5rem;    /* 24px */
  --radius-full: 9999px;

  /* Shadow System */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

  /* Z-Index System */
  --z-tooltip: 10;
  --z-dropdown: 20;
  --z-sticky: 30;
  --z-fixed: 100;
  --z-modal-backdrop: 900;
  --z-modal: 1000;

  /* Animation System */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
}

/* ===== RESPONSIVE TYPOGRAPHY ===== */
@media screen and (max-width: 992px) {
  :root {
    --biggest-font-size: 2.25rem;
    --h1-font-size: 1.75rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.125rem;
    --normal-font-size: 0.875rem;
    --small-font-size: 0.813rem;
    --smaller-font-size: 0.75rem;
  }
}

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

html {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  width: 100%;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--heading-font);
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--font-bold);
}

h2 {
  font-size: var(--h2-font-size);
  font-weight: var(--font-semi-bold);
}

h3 {
  font-size: var(--h3-font-size);
  font-weight: var(--font-medium);
}

h4 {
  font-size: var(--h4-font-size);
  font-weight: var(--font-medium);
}

ul {
  list-style: none;
}

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

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

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: var(--body-font);
}

/* ===== REUSABLE CSS CLASSES ===== */
.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.grid {
  display: grid;
}

.section {
  padding: 2rem 0 2rem;
}

.section__header {
  text-align: center;
  margin-bottom: var(--mb-3);
}

.section__title {
  font-family: var(--heading-font);
  font-size: var(--h1-font-size);
  font-weight: var(--font-bold);
  color: var(--title-color);
  margin-bottom: var(--mb-1-5);
  letter-spacing: -0.02em;
  position: relative;
  text-align: center;
}

.section__subtitle {
  font-family: var(--accent-font);
  font-size: var(--large-font-size);
  color: var(--text-color);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  text-align: center;
  font-weight: var(--font-regular);
}

.main {
  overflow: hidden;
}

/* ===== PROFESSIONAL BUTTONS ===== */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: var(--normal-font-size);
  font-weight: var(--font-semi-bold);
  border-radius: var(--radius-md);
  transition: var(--transition);
  text-decoration: none;
  cursor: pointer;
  border: none;
  outline: none;
  font-family: var(--heading-font);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
  font-size: var(--small-font-size);
}

.button--primary {
  background: var(--primary-gradient);
  color: var(--white-color);
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.button--primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: var(--transition);
}

.button--primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 35px rgba(76, 175, 80, 0.4);
}

.button--primary:hover::before {
  left: 100%;
}

.button--secondary {
  background: var(--white-color);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.button--secondary:hover {
  background: var(--primary-color);
  color: var(--white-color);
  transform: translateY(-2px);
}

.button--ghost {
  background: transparent;
  color: var(--title-color);
  border: 2px solid var(--border-color);
}

.button--ghost:hover {
  background: var(--title-color);
  color: var(--white-color);
  border-color: var(--title-color);
}

.button--large {
  padding: 1.25rem 2.5rem;
  font-size: var(--normal-font-size);
}

/* ===== MODERN HEADER & NAV ===== */
.header {
  width: 100%;
  background: var(--white-color);
  border-bottom: 1px solid var(--border-color);
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  transition: var(--transition);
}

.header.scroll-header {
  background: var(--white-color);
  border-bottom: 1px solid var(--border-color);
}

.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

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

.logo-img {
  height: 40px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  transition: var(--transition);
}

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

.logo-svg {
  height: 40px;
  width: auto;
  transition: var(--transition);
}

.logo-svg:hover {
  transform: scale(1.05);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  color: var(--text-color);
  font-weight: var(--font-medium);
  transition: var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -0.5rem;
  left: 50%;
  background: var(--primary-gradient);
  transition: var(--transition);
  transform: translateX(-50%);
}

.nav__link:hover::after,
.nav__link.active-link::after {
  width: 100%;
}

.nav__link:hover,
.nav__link.active-link {
  color: var(--primary-color);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav__toggle,
.nav__close {
  display: none;
  font-size: 1.25rem;
  color: var(--title-color);
  cursor: pointer;
  transition: var(--transition);
}

.nav__toggle:hover,
.nav__close:hover {
  color: var(--primary-color);
}

/* ===== HERO ===== */
.hero {
  background: url('assets/images/banner.jpg');
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding-top: calc(var(--header-height) + 2rem);
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Hero overlay gradient removed for cleaner banner image visibility */

.hero__container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0;
  margin-left: 8rem;
  padding: 0;
  text-align: left;
  justify-content: flex-start;
}

.hero__content {
  text-align: left;
  padding: 2rem 0;
  max-width: 500px;
  margin: 0;
  margin-left: 0;
}

.hero__visual {
  order: 2;
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.3;
  font-size: var(--small-font-size);
  color: var(--text-color-light);
  text-align: center;
}

.hero__title {
  font-family: var(--heading-font);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: var(--font-black);
  margin-bottom: var(--mb-2);
  line-height: 1.1;
  text-align: left;
  position: relative;
  letter-spacing: -0.02em;
}

.hero__title-main {
  color: #666666;
  position: relative;
  display: inline-block;
  font-weight: 900;
}

.hero__title-main::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary-gradient);
  border-radius: 2px;
  animation: slideIn 1s ease-out 0.5s both;
}

.hero__title-accent {
  color: #4CAF50;
  font-size: calc(var(--biggest-font-size) * 1.1);
  position: relative;
  display: inline-block;
  font-weight: 900;
  animation: glow 2s ease-in-out infinite alternate;
}

.hero__subtitle {
  font-family: var(--accent-font);
  font-size: var(--h3-font-size);
  font-weight: var(--font-medium);
  color: var(--text-color);
  margin-bottom: var(--mb-3);
  text-align: left;
  line-height: 1.5;
  max-width: 450px;
  margin-left: 0;
  margin-right: auto;
  margin-bottom: var(--mb-3);
}

.subtitle-highlight {
  color: #1B5E20;
  font-weight: var(--font-extra-bold);
  position: relative;
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}

.subtitle-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: -10px;
  right: -10px;
  bottom: 0;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(33, 150, 243, 0.1) 100%);
  border-radius: 8px;
  z-index: -1;
  animation: pulse 3s ease-in-out infinite;
}

@keyframes slideIn {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 100%;
    opacity: 1;
  }
}

@keyframes glow {
  from {
    filter: drop-shadow(0 0 5px rgba(76, 175, 80, 0.3));
  }
  to {
    filter: drop-shadow(0 0 15px rgba(76, 175, 80, 0.6));
  }
}

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

.hero__description {
  font-size: var(--normal-font-size);
  margin-bottom: var(--mb-2);
  color: var(--text-color);
  line-height: 1.6;
}

.hero__highlights {
  background: var(--white-color);
  padding: 1.5rem;
  border-radius: 1rem;
  margin-bottom: var(--mb-2-5);
  box-shadow: 0 4px 20px var(--shadow-color);
  border-left: 4px solid var(--primary-color);
}

.hero__highlight-text {
  margin-bottom: var(--mb-1);
  line-height: 1.6;
  color: var(--text-color);
}

.hero__highlight-text:last-child {
  margin-bottom: 0;
}

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

.hero__actions {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1.5rem;
  margin: var(--mb-3) 0;
  flex-wrap: nowrap;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: var(--mb-3);
  padding: 2rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  justify-items: center;
}

.stat {
  text-align: center;
  padding: 1.5rem 2rem;
  background: var(--white-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  min-height: 120px;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.stat:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}


.stat__number {
  font-size: var(--h2-font-size);
  font-weight: var(--font-extra-bold);
  color: #2E7D32;
  margin-bottom: var(--mb-0-25);
}

.stat__label {
  font-size: var(--small-font-size);
  color: #4a4a4a;
  font-weight: var(--font-semi-bold);
  line-height: 1.3;
  margin-top: 0.25rem;
}



/* Background overlay elements removed for cleaner design */

/* Floating leaves animation removed */

/* floatLeaf animation removed */

/* Float animation removed */

/* ===== INTRODUCTION ===== */
.introduction {
  background: var(--section-gradient);
  padding: var(--space-4xl) 0;
  position: relative;
}

.introduction::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234CAF50' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  z-index: 0;
}

.introduction__container {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
}

.introduction__content {
  margin-top: var(--mb-3);
}

.introduction__main {
  text-align: center;
  margin-bottom: var(--space-3xl);
  padding: var(--space-2xl);
  background: var(--white-color);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--primary-color-light);
}

.introduction__description {
  font-family: var(--body-font);
  font-size: var(--large-font-size);
  color: var(--text-color);
  line-height: 1.7;
  font-weight: var(--font-regular);
  max-width: 700px;
  margin: 0 auto;
}

.introduction__achievements {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: var(--mb-3);
}

.achievement__highlight {
  background: var(--card-gradient);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px var(--shadow-color);
  border-left: 4px solid var(--primary-color);
  transition: var(--transition);
}

.achievement__highlight:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px var(--shadow-color);
}

.achievement__content {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.achievement__icon {
  width: 60px;
  height: 60px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.achievement__icon i {
  font-size: 1.5rem;
  color: var(--white-color);
}

.achievement__text {
  flex: 1;
}

.achievement__title {
  font-size: var(--h3-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
  margin-bottom: var(--mb-0-5);
}

.achievement__description {
  font-size: var(--normal-font-size);
  line-height: 1.6;
  color: var(--text-color);
  margin: 0;
}

.achievement__description strong {
  color: var(--primary-color);
  font-weight: var(--font-semi-bold);
}

/* ===== OVERVIEW ===== */
.overview {
  background-color: var(--white-color);
  padding: 4rem 0;
}

.overview__container {
  max-width: 900px;
  margin: 0 auto;
}

.overview__content {
  text-align: center;
}

.overview__intro {
  font-size: var(--h3-font-size);
  color: var(--title-color);
  line-height: 1.6;
  margin-bottom: var(--mb-3);
  font-weight: var(--font-medium);
}

.overview__achievements {
  display: grid;
  gap: 2rem;
  margin-top: var(--mb-2);
}

.achievement__card {
  background: var(--card-gradient);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px var(--shadow-color);
  border-left: 4px solid var(--primary-color);
  transition: var(--transition);
}

.achievement__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px var(--shadow-color);
}

.achievement__text {
  font-size: var(--normal-font-size);
  line-height: 1.6;
  color: var(--text-color);
  margin: 0;
}

.achievement__text strong {
  color: var(--primary-color);
  font-weight: var(--font-semi-bold);
}

/* ===== SERVICES ===== */
.services {
  background-color: var(--white-color);
}

.services__container {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service__card {
  background: var(--card-gradient);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px var(--shadow-color);
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.service__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px var(--shadow-color);
}

.service__icon {
  width: 60px;
  height: 60px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--mb-1-5);
}

.service__icon i {
  font-size: 1.5rem;
  color: var(--white-color);
}

.service__number {
  font-size: var(--h3-font-size);
  font-weight: var(--font-bold);
  color: var(--primary-color);
  margin-bottom: var(--mb-0-5);
}

.service__title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-1);
}

.service__description {
  margin-bottom: var(--mb-1-5);
  line-height: 1.6;
}

.service__link {
  color: var(--primary-color);
  font-weight: var(--font-medium);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.service__link:hover {
  gap: 0.75rem;
}

/* ===== FIRE SECTION ===== */
.fire-section {
  background: var(--hero-gradient);
}

.fire__container {
  justify-content: center;
}

.fire__content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.fire__highlight {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: var(--mb-3) 0;
}

.fire__stat-card {
  background: var(--white-color);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 8px 30px var(--shadow-color);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: var(--transition);
}

.fire__stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px var(--shadow-color);
}

.fire__stat-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fire__stat-icon i {
  font-size: 1.5rem;
  color: var(--white-color);
}

.fire__stat-content {
  text-align: left;
  flex: 1;
}

.fire__stat-number {
  font-size: var(--h1-font-size);
  font-weight: var(--font-bold);
  color: var(--primary-color);
  margin-bottom: var(--mb-0-25);
  line-height: 1;
}

.fire__stat-text {
  font-size: var(--h3-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
  margin-bottom: var(--mb-0-25);
}

.fire__stat-description {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
  font-style: italic;
}

.fire__description {
  background: var(--white-color);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px var(--shadow-color);
  border-left: 4px solid var(--primary-color);
}

.fire__description p {
  font-size: var(--normal-font-size);
  line-height: 1.6;
  margin: 0;
}

/* ===== ABOUT ===== */
.about {
  background: var(--hero-gradient);
}

.about__container {
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  align-items: center;
}

.about__image {
  position: relative;
}

.about__img-wrapper {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}

.about__img {
  width: 100%;
  border-radius: 1rem;
}

.about__experience {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: var(--white-color);
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 20px var(--shadow-color);
  text-align: center;
}

.about__experience-number {
  display: block;
  font-size: var(--h2-font-size);
  font-weight: var(--font-bold);
  color: var(--primary-color);
  line-height: 1;
}

.about__experience-text {
  font-size: var(--small-font-size);
  color: var(--text-color);
}

.about__content .section__header {
  text-align: left;
  margin-bottom: var(--mb-2);
}

.about__description {
  margin-bottom: var(--mb-2);
}

.about__description p {
  margin-bottom: var(--mb-1);
}

.about__highlights {
  display: grid;
  gap: 1rem;
  margin-bottom: var(--mb-2);
}

.highlight {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.highlight__icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-top: 0.25rem;
}

.highlight__title {
  font-size: var(--normal-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: var(--mb-0-25);
}

.highlight__description {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
}

/* ===== CTA ===== */
.cta {
  background: var(--primary-gradient);
  color: var(--white-color);
  text-align: center;
}

.cta__title {
  font-size: var(--h2-font-size);
  color: var(--white-color);
  margin-bottom: var(--mb-1);
}

.cta__description {
  margin-bottom: var(--mb-2);
  opacity: 0.9;
}

/* ===== FEATURES ===== */
.features {
  background-color: var(--white-color);
}

.features__container {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature__card {
  text-align: center;
  padding: 2rem 1rem;
  border-radius: 1rem;
  background: var(--card-gradient);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.feature__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px var(--shadow-color);
}

.feature__icon {
  width: 60px;
  height: 60px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--mb-1-5);
}

.feature__icon i {
  font-size: 1.5rem;
  color: var(--white-color);
}

.feature__title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-1);
}

.feature__description {
  line-height: 1.6;
}

/* ===== FINAL CTA ===== */
.final-cta {
  background: var(--hero-gradient);
  text-align: center;
}

.final-cta__title {
  font-size: var(--h1-font-size);
  margin-bottom: var(--mb-1);
}

.final-cta__description {
  margin-bottom: var(--mb-2-5);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.contact-info {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-color);
  font-weight: var(--font-medium);
}

.contact-item i {
  color: var(--primary-color);
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--title-color);
  color: var(--white-color);
  padding: 3rem 0 1rem;
}

.footer__content {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: var(--mb-2);
}

.footer__title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-1);
  background: var(--primary-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer__logo {
  margin-bottom: var(--mb-1);
}

.footer-logo-svg {
  height: 50px;
  width: auto;
}

.footer__subtitle {
  font-size: var(--normal-font-size);
  margin-bottom: var(--mb-1);
  color: var(--white-color);
}

.footer__description {
  margin-bottom: var(--mb-1-5);
  opacity: 0.8;
  line-height: 1.6;
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer__social-link:hover {
  transform: translateY(-2px);
}

.footer__social-link i {
  font-size: 1.125rem;
  color: var(--white-color);
}

.footer__links {
  display: grid;
  gap: 0.5rem;
}

.footer__link {
  opacity: 0.8;
  transition: var(--transition);
}

.footer__link:hover {
  opacity: 1;
  color: var(--primary-color);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid hsla(0, 0%, 100%, 0.1);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__copy {
  opacity: 0.8;
}

.footer__bottom-links {
  display: flex;
  gap: 2rem;
}

.footer__bottom-link {
  opacity: 0.8;
  transition: var(--transition);
}

.footer__bottom-link:hover {
  opacity: 1;
  color: var(--primary-color);
}

/* ===== SCROLL UP ===== */
.scrollup {
  position: fixed;
  right: 1rem;
  bottom: -20%;
  background: var(--primary-gradient);
  opacity: 0.8;
  padding: 0.3rem;
  border-radius: 0.4rem;
  z-index: var(--z-tooltip);
  transition: var(--transition);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scrollup:hover {
  transform: translateY(-0.25rem);
  opacity: 1;
}

.scrollup i {
  font-size: 1.25rem;
  color: var(--white-color);
}

/* Show scroll */
.show-scroll {
  bottom: 5rem;
}

/* ===== BREAKPOINTS ===== */
/* For large devices */
@media screen and (max-width: 992px) {
  .container {
    margin-left: var(--mb-1-5);
    margin-right: var(--mb-1-5);
  }

  .hero__container,
  .about__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero__content {
    order: 2;
    text-align: center;
  }

  .hero__image {
    order: 1;
  }

  .hero__stats {
    justify-content: center;
  }

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

  .hero__actions {
    justify-content: center;
  }

  .hero__highlights {
    padding: 1rem;
    margin-bottom: var(--mb-2);
  }

  .hero__subtitle {
    font-size: var(--h3-font-size);
    margin-bottom: var(--mb-2);
    letter-spacing: 0.5px;
  }

  .hero__title-accent {
    font-size: var(--biggest-font-size);
  }

  .subtitle-highlight::before {
    left: -5px;
    right: -5px;
  }

  .overview {
    padding: 3rem 0;
  }

  .overview__intro {
    font-size: var(--normal-font-size);
  }

  .achievement__card {
    padding: 1.5rem;
  }

  .services__container {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .features__container {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .fire__highlight {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .fire__stat-card {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

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

/* For medium devices */
@media screen and (max-width: 768px) {
  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--white-color);
    padding: 4rem 2rem 2rem;
    backdrop-filter: blur(10px);
    transition: var(--transition);
  }

  .nav__list {
    flex-direction: column;
    gap: 2rem;
  }

  .nav__close {
    display: block;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
  }

  .nav__toggle {
    display: block;
  }

  .nav__actions .button {
    display: none;
  }

  /* Show menu */
  .show-menu {
    right: 0;
  }

  .section {
    padding: 2rem 0 2rem;
  }

  .hero {
    padding-top: calc(var(--header-height) + 1rem);
    background-size: cover, 300px 300px;
  }

  /* floating-leaf styles removed */

  /* hero::after background overlay removed */

  .introduction {
    padding: 3rem 0;
  }

  .introduction__description {
    font-size: var(--normal-font-size);
  }

  .introduction__achievements {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .achievement__highlight {
    padding: 1.5rem;
  }

  .achievement__content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .hero__stats {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
  }

  .contact-info {
    flex-direction: column;
    gap: 1rem;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* For small devices */
@media screen and (max-width: 576px) {
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .button {
    width: 100%;
    justify-content: center;
  }

  .services__container {
    grid-template-columns: 1fr;
  }

  .features__container {
    grid-template-columns: 1fr;
  }

  .final-cta__actions {
    gap: 1.5rem;
  }

  .footer__content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__social {
    justify-content: center;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

/* Animation classes */
.animate-fade-up {
  animation: fadeInUp 0.8s ease-out;
}

.animate-fade-left {
  animation: fadeInLeft 0.8s ease-out;
}

.animate-fade-right {
  animation: fadeInRight 0.8s ease-out;
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.sr-hidden {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.sr-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== PREVENT ANIMATION FLASH ON LOAD ===== */
.hero__content,
.hero__title,
.hero__subtitle,
.hero__stats {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Show elements after page load */
body.loaded .hero__content,
body.loaded .hero__title,
body.loaded .hero__subtitle,
body.loaded .hero__stats {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger the animations */
body.loaded .hero__title {
  transition-delay: 0.2s;
}

body.loaded .hero__subtitle {
  transition-delay: 0.4s;
}

body.loaded .hero__stats {
  transition-delay: 0.6s;
}

/* ===== LOADING ANIMATION ===== */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white-color);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.5s ease-out;
}

.loading.fade-out {
  opacity: 0;
  pointer-events: none;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--border-color);
  border-top: 4px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*=============== PROFESSIONAL SERVICES SECTION ===============*/
.services {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(46, 125, 50, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(76, 175, 80, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(139, 195, 74, 0.03) 0%, transparent 50%);
  pointer-events: none;
}


.services__container {
  text-align: center;
}

.services .section__title {
  font-size: var(--h1-font-size);
  font-weight: var(--font-bold);
  margin-bottom: var(--mb-2);
  color: var(--title-color);
}

.services .section__subtitle {
  font-size: var(--large-font-size);
  color: var(--text-color);
  line-height: 1.7;
  margin-bottom: var(--mb-3);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.services__core {
  margin: var(--space-3xl) 0;
  padding: var(--space-2xl);
  background: var(--white-color);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--primary-color-light);
  position: relative;
  overflow: hidden;
}

.services__core-title {
  font-family: var(--heading-font);
  font-size: var(--h1-font-size);
  font-weight: var(--font-bold);
  color: var(--title-color);
  text-align: center;
  margin-bottom: var(--space-xl);
  position: relative;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.services__core-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
  max-width: 1000px;
  margin: 0 auto;
}

.core-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-lg);
  padding: var(--space-2xl) var(--space-xl);
  background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: var(--radius-xl);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 200px;
}

.core-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(46, 125, 50, 0.15);
  border-color: var(--primary-color-light);
}

.core-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.core-item:hover::before {
  transform: scaleX(1);
}

.core-number {
  font-family: var(--heading-font);
  font-size: var(--h2-font-size);
  font-weight: var(--font-black);
  color: var(--white-color);
  background: var(--primary-gradient);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(46, 125, 50, 0.3);
  position: relative;
  margin-bottom: var(--space-sm);
}

.core-number::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--primary-gradient);
  opacity: 0.3;
  transform: scale(1.2);
  z-index: -1;
}

.core-text {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  font-weight: var(--font-medium);
  color: var(--text-color);
  line-height: 1.7;
  margin: 0;
  flex: 1;
  max-width: 220px;
}

/* Responsive design for core items */
@media screen and (max-width: 768px) {
  .services__core-list {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .core-item {
    min-height: 180px;
    padding: var(--space-xl);
  }
  
  .core-number {
    width: 70px;
    height: 70px;
    font-size: var(--h3-font-size);
  }
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  align-items: stretch;
  justify-content: center;
  margin-top: var(--mb-3);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  background: var(--white-color);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color-light);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 80px;
  height: 80px;
  background: var(--primary-gradient);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--mb-2);
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(33, 150, 243, 0.2);
}

.service-card__icon i {
  font-size: 2.5rem;
  color: var(--white-color);
}

.service-card:hover .service-card__icon {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(33, 150, 243, 0.3);
}

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

.service-card__title {
  font-family: var(--heading-font);
  font-size: var(--h3-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
  margin-bottom: var(--mb-1);
  text-align: center;
}

.service-card__description {
  color: var(--text-color);
  line-height: 1.6;
  font-size: var(--normal-font-size);
}

.services-cta {
  background: var(--primary-gradient);
  padding: 4rem 0;
  color: var(--white-color);
  text-align: center;
}

.services-cta__container {
  max-width: 600px;
  margin: 0 auto;
}

.services-cta__title {
  font-size: var(--h1-font-size);
  font-weight: var(--font-bold);
  margin-bottom: var(--mb-1);
  color: var(--white-color);
}

.services-cta__description {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-2-5);
  opacity: 0.9;
}

.services-cta__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.services-cta__actions .button--ghost {
  background: transparent;
  border: 2px solid var(--white-color);
  color: var(--white-color);
}

.services-cta__actions .button--ghost:hover {
  background: var(--white-color);
  color: var(--primary-color);
}

/* Responsive Design for Services Section */
@media screen and (max-width: 768px) {
  .services {
    padding: 3rem 0;
  }
  
  .services .section__title {
    font-size: var(--h2-font-size);
  }
  
  .services .section__subtitle {
    font-size: var(--normal-font-size);
  }
  
  .services__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .service-card {
    padding: 2rem 1.5rem;
  }
  
  .services__core {
    padding: 1.5rem;
    margin: var(--mb-2) 0;
  }
  
  .services__core-title {
    font-size: var(--h3-font-size);
  }
  
  .services__core-list {
    gap: 1rem;
  }
  
  .core-item {
    padding: 0.75rem;
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .core-number {
    font-size: var(--h3-font-size);
  }
  
  .core-text {
    font-size: var(--small-font-size);
  }
}

/*=============== PROFESSIONAL CONTACT SECTION ===============*/
.contact {
  padding: 6rem 0;
  background: var(--white-color);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(33, 150, 243, 0.02) 0%, 
    rgba(255, 255, 255, 1) 50%,
    rgba(33, 150, 243, 0.02) 100%);
  z-index: -1;
}

.contact__container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact .section__title {
  color: var(--title-color);
  margin-bottom: var(--mb-2);
}

.contact__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: stretch;
  margin-top: var(--space-3xl);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  background: var(--white-color);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 2px solid var(--border-color);
  height: 100%;
}

.contact__card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  padding: 2rem;
  background: var(--white-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--border-color);
  transition: var(--transition);
}

.contact__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color-light);
}

.contact__card-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-gradient);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact__card-icon i {
  font-size: var(--h3-font-size);
  color: var(--white-color);
}

.contact__card-content {
  flex: 1;
}

.contact__card-title {
  font-size: var(--h4-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
  margin-bottom: var(--space-xs);
}

.contact__card-description {
  font-size: var(--normal-font-size);
  color: var(--text-color);
  margin-bottom: var(--space-sm);
}

.contact__card-link {
  font-size: var(--normal-font-size);
  font-weight: var(--font-medium);
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

.contact__card-link:hover {
  color: var(--primary-color-dark);
}

.contact__form-container {
  background: var(--white-color);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 2px solid var(--border-color);
  height: 100%;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact__form-group {
  position: relative;
}

.contact__form-input {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: var(--normal-font-size);
  font-family: var(--body-font);
  background: var(--white-color);
  color: var(--text-color);
  transition: var(--transition);
  font-weight: var(--font-regular);
}

.contact__form-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
}

.contact__form-input::placeholder {
  color: var(--text-color-lighter);
}

.contact__form-textarea {
  resize: vertical;
  min-height: 120px;
}

.contact__form-button {
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.contact__form-button i {
  font-size: var(--large-font-size);
}

/*=============== PROFESSIONAL FOOTER ===============*/
.footer {
  background: var(--dark-gradient);
  color: var(--white-color);
  padding: 4rem 0 2rem;
}

.footer__container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  align-items: start;
}

.footer__logo {
  margin-bottom: var(--space-lg);
}

.footer__logo .logo-img {
  height: 50px;
  filter: brightness(0) invert(1);
}

.footer__description {
  font-size: var(--normal-font-size);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.footer__social {
  display: flex;
  gap: var(--space-md);
}

.footer__social-link {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  font-size: var(--h4-font-size);
  transition: var(--transition);
}

.footer__social-link:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
}

.footer__title {
  font-size: var(--h4-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--white-color);
  margin-bottom: var(--space-lg);
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__link {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--normal-font-size);
  text-decoration: none;
  transition: var(--transition);
}

.footer__link:hover {
  color: var(--primary-color-light);
  transform: translateX(4px);
}

.footer__info {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--normal-font-size);
}

.footer__info i {
  font-size: var(--large-font-size);
  color: var(--primary-color);
}

.footer__bottom {
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer__copy {
  font-size: var(--normal-font-size);
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design for Contact and Footer */
@media screen and (max-width: 968px) {
  .contact__content {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  
  .footer__container {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }
}

@media screen and (max-width: 768px) {
  .contact {
    padding: var(--space-2xl) 0;
  }
  
  .contact__info {
    padding: var(--space-lg);
  }
  
  .contact__form-container {
    padding: var(--space-lg);
  }
  
  .footer__container {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    text-align: center;
  }
  
  .footer__social {
    justify-content: center;
  }
}

/*=============== OFFERINGS BRIEF SECTION ===============*/
.offerings__brief {
  margin: var(--space-3xl) 0;
  padding: var(--space-2xl);
  background: var(--white-color);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--secondary-color-light);
  position: relative;
  overflow: hidden;
}

.offerings__brief-title {
  font-family: var(--heading-font);
  font-size: var(--h1-font-size);
  font-weight: var(--font-bold);
  color: var(--title-color);
  text-align: center;
  margin-bottom: var(--space-xl);
  position: relative;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.offerings__brief-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  max-width: 900px;
  margin: 0 auto;
}

.offerings__brief-text {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  color: var(--text-color);
  line-height: 1.7;
  text-align: left;
  padding: var(--space-lg);
  background: var(--card-gradient);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.offerings__brief-text:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.offerings__brief-text strong {
  color: var(--primary-color);
  font-weight: var(--font-semi-bold);
}

/*=============== SERVICE ITEMS ===============*/
.service-card__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.service-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-sm) var(--space-md);
  background: rgba(76, 175, 80, 0.05);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--primary-color);
  transition: var(--transition);
}

.service-item:hover {
  background: rgba(76, 175, 80, 0.1);
  transform: translateX(4px);
}

.service-abbr {
  font-size: var(--small-font-size);
  font-weight: var(--font-bold);
  color: var(--primary-color);
  background: var(--primary-color-light);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  min-width: 40px;
  text-align: center;
}

.service-desc {
  font-size: var(--normal-font-size);
  color: var(--text-color);
  flex: 1;
}

/*=============== RISK MANAGEMENT SECTION ===============*/
.risk-management {
  padding: var(--space-4xl) 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
  position: relative;
}

.risk-management::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(255, 193, 7, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(255, 152, 0, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.risk-management__content {
  margin-top: var(--space-2xl);
}

.risk-management__highlight {
  background: var(--accent-gradient);
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  text-align: center;
  margin-bottom: var(--space-2xl);
  box-shadow: var(--shadow-lg);
}

.risk-highlight__title {
  font-size: var(--h2-font-size);
  font-weight: var(--font-bold);
  color: var(--white-color);
  margin-bottom: var(--space-lg);
  letter-spacing: 1px;
}

.risk-highlight__text {
  font-size: var(--large-font-size);
  color: var(--white-color);
  line-height: 1.6;
  opacity: 0.95;
}

.risk-management__main {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  max-width: 900px;
  margin: 0 auto;
}

.risk-main__text {
  font-size: var(--normal-font-size);
  color: var(--text-color);
  line-height: 1.7;
  text-align: left;
  padding: var(--space-lg);
  background: var(--white-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.risk-main__text:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.risk-main__text strong {
  color: var(--primary-color);
  font-weight: var(--font-semi-bold);
}

/*=============== LEVERAGE SECTION ===============*/
.leverage {
  padding: var(--space-4xl) 0;
  background: linear-gradient(135deg, #e3f2fd 0%, #f1f8e9 50%, #fff3e0 100%);
  position: relative;
}

.leverage::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 30% 20%, rgba(33, 150, 243, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 70% 80%, rgba(76, 175, 80, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(255, 152, 0, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.leverage__examples {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-xl);
  margin: var(--space-3xl) 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  align-items: stretch;
}

.leverage__card {
  background: var(--card-gradient);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.leverage__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.leverage__card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 2px solid var(--primary-color-light);
}

.leverage__card-title {
  font-size: var(--h3-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
}

.leverage__card-duration {
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
  color: var(--primary-color);
  background: var(--primary-color-light);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
}

.leverage__card-example {
  font-size: var(--normal-font-size);
  color: var(--text-color);
  line-height: 1.6;
}

.leverage__card-example strong {
  color: var(--primary-color);
}

.leverage__objective {
  text-align: center;
  margin-top: var(--space-2xl);
}

.leverage__objective-text {
  font-size: var(--large-font-size);
  font-weight: var(--font-medium);
  color: var(--title-color);
  background: var(--primary-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/*=============== STRENGTH SECTION ===============*/
.strength {
  padding: var(--space-4xl) 0;
  background: linear-gradient(135deg, #e8f5e8 0%, #f1f8e9 50%, #e0f2f1 100%);
  position: relative;
}

.strength::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(76, 175, 80, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(139, 195, 74, 0.04) 0%, transparent 40%);
  pointer-events: none;
}


.strength__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
  max-width: 1200px;
  position: relative;
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
  align-items: stretch;
}

.strength__card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  padding: var(--space-xl);
  background: var(--card-gradient);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.strength__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.strength__card-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-gradient);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.strength__card-icon i {
  font-size: var(--h3-font-size);
  color: var(--white-color);
}

.strength__card-content {
  flex: 1;
}

.strength__card-title {
  font-size: var(--h4-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
  margin-bottom: var(--space-sm);
}

.strength__card-text {
  font-size: var(--normal-font-size);
  color: var(--text-color);
  line-height: 1.6;
}

/*=============== PROJECTS SECTION ===============*/
.projects {
  padding: var(--space-4xl) 0;
  background: linear-gradient(135deg, var(--title-color) 0%, hsl(220, 25%, 10%) 100%);
  color: var(--white-color);
  text-align: center;
}

.projects .section__title {
  color: var(--white-color);
  margin-bottom: var(--space-2xl);
}

.projects__quote {
  margin: var(--space-3xl) 0;
}

.quote {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-2xl);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  border-left: 4px solid var(--accent-color);
}

.quote__text {
  font-family: var(--accent-font);
  font-size: var(--h3-font-size);
  font-style: italic;
  color: var(--white-color);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.quote__author {
  font-size: var(--large-font-size);
  color: var(--accent-color);
  font-weight: var(--font-medium);
}

.projects__mission {
  margin: var(--space-3xl) 0;
}

.projects__mission-title {
  font-size: var(--h2-font-size);
  font-weight: var(--font-bold);
  color: var(--accent-color);
  line-height: 1.4;
  max-width: 900px;
  margin: 0 auto;
  letter-spacing: 1px;
}

.projects__cta {
  margin-top: var(--space-4xl);
}

.projects__cta-title {
  font-size: var(--h2-font-size);
  font-weight: var(--font-bold);
  color: var(--white-color);
  margin-bottom: var(--space-lg);
}

.projects__cta-text {
  font-size: var(--large-font-size);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: var(--space-2xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.projects__cta-button {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--accent-gradient);
  border: none;
  font-size: var(--large-font-size);
  padding: var(--space-lg) var(--space-2xl);
}

.projects__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

/*=============== CONCLUSION SECTION ===============*/
.conclusion {
  padding: var(--space-4xl) 0;
  background: linear-gradient(135deg, #f1f3f4 0%, #e8eaf6 50%, #f3e5f5 100%);
  text-align: center;
  position: relative;
}

.conclusion::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(63, 81, 181, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(156, 39, 176, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.conclusion .section__title {
  color: var(--title-color);
  margin-bottom: var(--space-lg);
}

.conclusion__container {
  max-width: 900px;
  margin: 0 auto;
}

.conclusion .section__header {
  padding: var(--space-2xl);
  background: var(--white-color);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--primary-color-light);
}

.conclusion .section__subtitle {
  max-width: 700px;
  margin: 0 auto;
  font-size: var(--large-font-size);
  line-height: 1.7;
  color: var(--text-color);
}

/*=============== CONTACT PERSON ===============*/
.contact__person {
  margin-bottom: var(--space-xl);
}

.contact__person-header {
  text-align: center;
  padding: var(--space-lg);
  background: var(--primary-gradient);
  border-radius: var(--radius-lg);
  color: var(--white-color);
}

.contact__person-title {
  font-size: var(--h4-font-size);
  font-weight: var(--font-medium);
  margin-bottom: var(--space-sm);
}

.contact__person-name {
  font-size: var(--h3-font-size);
  font-weight: var(--font-bold);
}

.contact__card-content .contact__card-link + .contact__card-link {
  display: block;
  margin-top: var(--space-xs);
}

/* Responsive Design for New Sections */
@media screen and (max-width: 768px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .hero__container {
    grid-template-columns: 1fr;
    gap: 2rem;
    min-height: 60vh;
    padding: 0 1rem;
  }
  
  .hero__content {
    text-align: center;
    order: 1;
  }
  
  .hero__visual {
    display: none;
  }
  
  .hero__title {
    text-align: center;
  }
  
  .hero__subtitle {
    text-align: center;
  }
  
  .hero__stats {
    gap: 2rem;
    justify-content: center;
  }
  
  .hero__actions {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  
  .hero__actions .button {
    width: 100%;
    max-width: 300px;
  }
  
  .services__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: var(--mb-2);
  }
  
  .contact__content {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  
  .footer__container {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    text-align: center;
  }
  
  .offerings__brief {
    padding: var(--space-lg);
    margin: var(--space-xl) 0;
  }
  
  .offerings__brief-text {
    text-align: left;
  }
  
  .risk-management__highlight {
    padding: var(--space-lg);
  }
  
  .risk-highlight__title {
    font-size: var(--h3-font-size);
  }
  
  .leverage__examples {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .leverage__card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }
  
  .strength__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .strength__card {
    flex-direction: column;
    text-align: center;
  }
  
  .projects__mission-title {
    font-size: var(--h3-font-size);
  }
  
  .quote__text {
    font-size: var(--h4-font-size);
  }
  
  .projects__cta-button {
    font-size: var(--normal-font-size);
    padding: var(--space-md) var(--space-xl);
  }
} 