/* ============================================
   CONNECT GLOBE - MODERN WEBSITE STYLES
   ============================================ */

/* CSS Variables - Color Scheme */
:root {
  --primary-blue: #1a2344;
  --secondary-blue: #0093d0;
  --accent-orange: #fdb813;
  --dark-gray: #121212;
  --medium-gray: #404040;
  --light-gray: #f8f9fa;
  --bg-light: #f7fafc;
  --white: #ffffff;
  --success-green: #1e7e34;

  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--dark-gray);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--white);
}

/* Focus styles for accessibility */
*:focus {
  outline: 2px solid var(--secondary-blue);
  outline-offset: 2px;
}

/* Skip to main content link for screen readers */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--primary-blue);
  color: var(--white);
  padding: 8px;
  text-decoration: none;
  z-index: 1000;
  border-radius: 0 0 4px 4px;
  transition: top 0.3s ease;
  border: 2px solid transparent;
}

.skip-link:focus {
  top: 6px;
  outline: 3px solid var(--white);
  outline-offset: 2px;
  border-color: var(--white);
}

.skip-link:focus {
  top: 0;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

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

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: var(--shadow-md);
  z-index: 1000;
  transition: var(--transition-smooth);
}

.header.scrolled {
  box-shadow: var(--shadow-lg);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-blue);
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
  transition: var(--transition-smooth);
}

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

/* Hamburger Button */
.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 4px;
  z-index: 1001;
  padding: 0.5rem;
}

.bar {
  width: 24px;
  height: 3px;
  background: var(--primary-blue);
  transition: 0.3s;
  border-radius: 2px;
}

.hamburger[aria-expanded="true"] .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger[aria-expanded="true"] .bar:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Navigation */
.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-list a {
  text-decoration: none;
  color: var(--dark-gray);
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0.25rem;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-list a:hover,
.nav-list a:focus {
  color: var(--secondary-blue);
  outline: none;
}

.nav-list a:focus {
  background: rgba(0, 147, 208, 0.1);
  border-radius: 4px;
}

.nav-list > li > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-orange);
  transition: var(--transition-smooth);
}

.nav-list > li > a:hover::after,
.nav-list > li > a.active::after {
  width: 100%;
}

/* Arrow Icon (hidden on desktop) */
.arrow {
  font-size: 0.8rem;
  transition: transform 0.3s;
  display: none;
}

/* Dropdown Menu */
.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 0.5rem 0;
  min-width: 320px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 1000;
  margin-top: 0.5rem;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown li {
  margin-bottom: 0.5rem;
}

.dropdown li:last-child {
  margin-bottom: 0;
}

.dropdown a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1.5rem;
  transition: all 0.4s ease;
  border-radius: 6px;
  margin: 0 0.5rem;
}

.dropdown li:first-child a {
  border-radius: 8px 8px 6px 6px;
}

.dropdown li:last-child a {
  border-radius: 6px 6px 8px 8px;
}

.dropdown a::after {
  display: none;
}

.dropdown a:hover {
  background: linear-gradient(
    90deg,
    rgba(0, 147, 208, 0.12),
    rgba(253, 184, 19, 0.05)
  );
  padding-left: 2rem;
}

.dropdown a:hover .text strong {
  color: var(--secondary-blue);
  font-weight: 700;
}

.dropdown a:hover .text span {
  color: var(--secondary-blue);
}

/* Diamond Icon */
.diamond-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(
    135deg,
    var(--secondary-blue),
    var(--primary-blue)
  );
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.dropdown a:hover .diamond-icon {
  transform: rotate(45deg) scale(1.1);
}

.diamond-icon i {
  transform: rotate(-45deg);
  color: var(--white);
  font-size: 1.1rem;
}

/* Dropdown Text */
.text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.text strong {
  color: var(--primary-blue);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
  transition: all 0.3s ease;
}

.text span {
  font-size: 0.85rem;
  color: var(--medium-gray);
  transition: all 0.3s ease;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--secondary-blue) 100%
  );
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
  padding-top: 120px;
  padding-right: 5%;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 400px;
  text-align: right;
  margin-right: 0;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease-out;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  animation: fadeInUp 1s ease-out 0.2s backwards;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  animation: fadeInUp 1s ease-out 0.4s backwards;
  margin-top: 2rem;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: var(--secondary-blue);
  color: var(--white);
  text-decoration: none;
  border-radius: 0;
  font-weight: 500;
  transition: var(--transition-smooth);
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
}

.btn:focus {
  outline: 3px solid var(--primary-blue);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(26, 35, 68, 0.2);
}

.btn:hover,
.btn:focus {
  background: var(--primary-blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  outline: none;
}

.btn:focus {
  box-shadow: 0 0 0 3px rgba(0, 147, 208, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--secondary-blue);
  border: 2px solid var(--secondary-blue);
}

.btn-outline:hover,
.btn-outline:focus {
  background: var(--secondary-blue);
  color: var(--white);
}

/* ============================================
   SECTIONS
   ============================================ */

section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--accent-orange);
  border-radius: 2px;
}

.section-title p {
  color: var(--medium-gray);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 1.5rem auto 0;
}

/* ============================================
   FEATURES / SERVICES GRID
   ============================================ */

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

.service-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.service-card:focus-within {
  outline: 3px solid var(--primary-blue);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(26, 35, 68, 0.2);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.service-card .icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--secondary-blue),
    var(--primary-blue)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--white);
  font-size: 2rem;
  transition: var(--transition-smooth);
}

.service-card:hover .icon {
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--dark-gray);
}

.service-card p {
  color: var(--medium-gray);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.feature-card {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  border: 1px solid var(--light-gray);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.feature-card .icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent-orange), #ff9500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--white);
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(253, 184, 19, 0.3);
  transition: var(--transition-smooth);
}

.feature-card:hover .icon {
  transform: rotate(5deg) scale(1.1);
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--primary-blue);
}

.feature-card p {
  color: var(--medium-gray);
  font-size: 1rem;
  line-height: 1.7;
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats-section {
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--secondary-blue) 100%
  );
  color: var(--white);
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.stat-item {
  padding: 2rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: var(--accent-orange);
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials-slider {
  max-width: 800px;
  margin: 3rem auto;
}

.testimonial-card {
  background: var(--white);
  padding: 3rem;
  border-radius: 15px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.testimonial-text {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--medium-gray);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-blue);
}

.testimonial-position {
  color: var(--medium-gray);
  font-size: 0.95rem;
}

/* ============================================
   CONTACT FORM
   ============================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

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

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

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--secondary-blue)
  );
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-details h3 {
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.contact-details p {
  color: var(--medium-gray);
}

.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--dark-gray);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--light-gray);
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: 3px solid var(--primary-blue);
  outline-offset: 2px;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 4px rgba(26, 35, 68, 0.1);
}

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

/* ============================================
   FOOTER
   ============================================ */

footer {
  background: var(--dark-gray);
  color: var(--white);
  padding: 3rem 0 1.5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--accent-orange);
  margin-bottom: 1.5rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section a:hover {
  color: var(--accent-orange);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: var(--medium-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.social-icon:hover {
  background: var(--accent-orange);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

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

/* Scroll Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet Styles */
@media (max-width: 1024px) {
  .container {
    padding: 0 1.5rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* Mobile Menu */
  .hamburger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--white);
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    padding: 6rem 0 2rem 0;
    overflow-y: auto;
    z-index: 999;
  }

  .nav.open {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 1.5rem;
  }

  .nav-list > li {
    width: 100%;
  }

  .nav-list > li > a {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0.75rem 0;
  }

  .nav-list > li > a::after {
    display: none;
  }

  /* Active link style on mobile */
  .nav-list a.active {
    background: linear-gradient(
      90deg,
      rgba(0, 147, 208, 0.15),
      rgba(253, 184, 19, 0.1)
    );
    color: var(--secondary-blue);
    font-weight: 600;
    border-left: 4px solid var(--accent-orange);
    padding-left: 1rem;
  }

  /* Show arrow icon on mobile */
  .arrow {
    display: inline-block;
    margin-left: auto;
  }

  .has-dropdown.open .arrow {
    transform: rotate(180deg);
  }

  /* Mobile Dropdown */
  .dropdown {
    position: static;
    left: auto;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-radius: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    margin-top: 0;
    margin-left: 10rem;
    padding: 0;
    background: rgba(255, 255, 255, 0.95);
  }

  .has-dropdown.open .dropdown {
    max-height: 600px;
    margin-top: 1rem;
  }

  .dropdown li {
    margin-bottom: 0.5rem;
    margin-left: 0;
    padding: 0;
  }

  .dropdown a {
    padding: 1rem;
    margin: 0 0.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .dropdown a:hover {
    background: linear-gradient(90deg, rgba(0, 147, 208, 0.1), transparent);
    padding-left: 1.5rem;
  }

  /* Mobile justify content for Services link */
  .has-dropdown > a {
    justify-content: space-between;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
  }

  /* Mobile dropdown text sizes */
  .dropdown .text {
    flex: 1;
    text-align: left;
  }

  .dropdown .text strong {
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.25rem;
    color: var(--primary-blue);
  }

  .dropdown .text span {
    font-size: 0.8rem;
    color: var(--medium-gray);
    display: block;
    line-height: 1.3;
  }

  /* Mobile dropdown icon sizes */
  .diamond-icon {
    width: 35px;
    height: 35px;
    flex-shrink: 0;
  }

  .diamond-icon i {
    font-size: 0.9rem;
  }

  .hero {
    padding: 120px 1rem 80px;
    min-height: 70vh;
    align-items: center;
    justify-content: center;
    padding-right: 1rem;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .services-grid,
  .features-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section-title h2 {
    font-size: 2rem;
  }

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

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

  .footer-section h3 {
    margin-top: 2rem;
  }

  .footer-section:first-child h3 {
    margin-top: 0;
  }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 0.9rem;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  .service-card,
  .feature-card {
    padding: 1.5rem;
  }

  footer {
    padding: 3rem 0 1rem;
  }

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

  /* Ajustements dropdown pour petits écrans */
  .dropdown a {
    padding: 0.875rem;
    gap: 0.75rem;
  }

  .diamond-icon {
    width: 30px;
    height: 30px;
  }

  .diamond-icon i {
    font-size: 0.8rem;
  }

  .dropdown .text strong {
    font-size: 0.85rem;
  }

  .dropdown .text span {
    font-size: 0.75rem;
  }
}

/* Extra Small Mobile Styles */
@media (max-width: 375px) {
  .hero h1 {
    font-size: 1.6rem;
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  .section-title h2 {
    font-size: 1.6rem;
  }

  .stat-item .stat-number {
    font-size: 2rem;
  }

  .service-card h3,
  .feature-card h3 {
    font-size: 1.2rem;
  }
}

/* ============================================
   UTILITIES
   ============================================ */

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

.mt-1 {
  margin-top: 0.5rem;
}
.mt-2 {
  margin-top: 1rem;
}
.mt-3 {
  margin-top: 2rem;
}
.mb-1 {
  margin-bottom: 0.5rem;
}
.mb-2 {
  margin-bottom: 1rem;
}
.mb-3 {
  margin-bottom: 2rem;
}

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

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--primary-blue);
}

/* Utility classes for visual hierarchy while maintaining semantic HTML */
.h1 {
  font-size: 3.5rem;
}
.h2 {
  font-size: 2.5rem;
}
.h3 {
  font-size: 2rem;
}
.h4 {
  font-size: 1.5rem;
}
.h5 {
  font-size: 1.25rem;
}
.h6 {
  font-size: 1rem;
}

@media (max-width: 768px) {
  .h1 {
    font-size: 2.5rem;
  }
  .h2 {
    font-size: 2rem;
  }
  .h3 {
    font-size: 1.75rem;
  }
  .h4 {
    font-size: 1.25rem;
  }
  .h5 {
    font-size: 1.125rem;
  }
}
