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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
    "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
    sans-serif;
  background-color: hsl(0, 0%, 100%);
  color: hsl(220, 15%, 20%);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

/* CSS Variables */
:root {
  --background: 0 0% 100%;
  --foreground: 220 15% 20%;
  --card: 0 0% 100%;
  --card-foreground: 220 15% 20%;
  --popover: 0 0% 100%;
  --popover-foreground: 220 15% 20%;
  --primary: 197 100% 46%;
  --primary-foreground: 0 0% 100%;
  --primary-hover: 197 100% 40%;
  --secondary: 220 15% 96%;
  --secondary-foreground: 220 15% 20%;
  --muted: 220 15% 96%;
  --muted-foreground: 220 10% 50%;
  --accent: 197 100% 46%;
  --accent-foreground: 0 0% 100%;
  --destructive: 0 84% 60%;
  --destructive-foreground: 0 0% 100%;
  --border: 220 15% 90%;
  --input: 220 15% 90%;
  --ring: 197 100% 46%;
  --radius: 0.75rem;

  /* Custom Today Marketing Colors */
  --today-blue: 197 100% 46%;
  --today-blue-light: 197 100% 60%;
  --today-blue-dark: 197 100% 35%;
  --today-black: 220 15% 15%;
  --today-gray: 220 10% 50%;
  --today-gray-light: 220 15% 96%;
}

/* Utility Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
  overflow-x: hidden;
}

.hidden {
  display: none !important;
}

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

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

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

@keyframes bounce {
  0%,
  20%,
  53%,
  80%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    transform: translate3d(0, -30px, 0);
  }
  70% {
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-in-out;
}

.animate-slide-up {
  animation: slideUp 0.6s ease-out;
}

.animate-slide-in {
  animation: slideIn 0.8s ease-out;
}

.animate-bounce {
  animation: bounce 2s infinite;
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Text Gradient */
.text-gradient {
  background: linear-gradient(
    to right,
    hsl(var(--today-blue)),
    hsl(var(--today-blue-dark))
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
}

.btn-primary {
  background-color: hsl(var(--today-blue));
  color: white;
}

.btn-primary:hover {
  background-color: hsl(var(--today-blue-dark));
  transform: scale(1.05);
}

.btn-hero {
  background-color: white;
  color: hsl(var(--today-blue));
  font-size: 1.125rem;
  padding: 1.5rem 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.btn-hero:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: scale(1.05);
}

.btn-contact {
  background-color: hsl(var(--today-blue));
  color: white;
  font-size: 1.125rem;
  padding: 1.5rem;
  width: 100%;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.btn-contact:hover {
  background-color: hsl(var(--today-blue-dark));
  transform: scale(1.05);
}

.btn-full {
  width: 100%;
}

.btn-whatsapp {
  background-color: hsl(var(--today-blue));
  color: white;
  padding: 0.75rem 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  border-radius: 9999px;
  transition: all 0.3s ease;
}

.btn-whatsapp:hover {
  background-color: hsl(var(--today-blue-dark));
  transform: scale(1.05);
}

.btn-whatsapp-icon {
  width: 1.5rem;
  height: 1.5rem;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s ease;
  background-color: black;
  padding: 1rem 0;
}

.navbar.scrolled {
  background-color: white;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  padding: 0.5rem 0;
}

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

.navbar-logo-img {
  height: 2.5rem;
  width: auto;
}

.navbar-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

.navbar-link {
  font-weight: 600;
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.navbar.scrolled .navbar-link {
  color: hsl(var(--foreground));
}

.navbar-link:hover {
  color: hsl(var(--today-blue));
}

.navbar-mobile-btn {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  color: white;
}

.navbar.scrolled .navbar-mobile-btn {
  color: hsl(var(--foreground));
}

.navbar-mobile-icon {
  width: 1.75rem;
  height: 1.75rem;
}

.navbar-mobile {
  display: none;
  margin-top: 1rem;
  padding: 1rem;
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  flex-direction: column;
  gap: 1rem;
}

.navbar-mobile.show {
  display: flex;
}

.navbar-mobile-link {
  font-weight: 600;
  color: hsl(var(--foreground));
  text-decoration: none;
  transition: color 0.3s ease;
}

.navbar-mobile-link:hover {
  color: hsl(var(--today-blue));
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    hsl(var(--today-blue)) 0%,
    hsl(var(--today-blue-dark)) 100%
  );
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.1;
}

.hero-bg-circle {
  position: absolute;
  width: 24rem;
  height: 24rem;
  background-color: white;
  border-radius: 50%;
  filter: blur(3rem);
}

.hero-bg-circle-1 {
  top: -5rem;
  left: -5rem;
  animation: pulse 2s ease-in-out infinite;
}

.hero-bg-circle-2 {
  bottom: -5rem;
  right: -5rem;
  animation: pulse 2s ease-in-out infinite;
  animation-delay: 1s;
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 10;
  animation: fadeIn 0.6s ease-in-out;

  overflow: hidden;
}

.hero-logo {
  height: 6rem;
  width: auto;
  margin: 0 auto 1.5rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: white;
  margin-bottom: 1rem;
  animation: slideUp 0.6s ease-out;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  font-weight: 300;
  animation: slideUp 0.6s ease-out;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;

  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.hero-scroll-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
}

/* About Section */
.about {
  padding: 5rem 0;
  background-color: hsl(var(--today-black));
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 5rem;
}

.about-text {
  animation: slideIn 0.8s ease-out;
}

.about-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  background: linear-gradient(
    to right,
    hsl(var(--today-blue)),
    hsl(var(--today-blue-dark))
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-content {
  font-size: 1.125rem;
  color: white;
  line-height: 1.75;
}

.about-content p {
  margin-bottom: 1rem;
}

.about-content strong {
  font-weight: 600;
  color: hsl(var(--today-blue));
}

.about-image {
  animation: slideUp 0.6s ease-out;
}

.about-image-placeholder {
  max-width: 560px;

  aspect-ratio: 1;

  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  color: white;
  padding: 0.5rem;
}

.about-image-placeholder img {
  width: 100%;
  height: auto;
  object-fit: contain;

  border-radius: 1rem;
}

.about-image-emoji {
  font-size: 3.75rem;
  margin-bottom: 1rem;
}

.about-image-text {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.about-image-subtext {
  font-size: 1.25rem;
}

.about-story {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.about-story-image {
  animation: slideIn 0.8s ease-out;
  order: 2;
}

.about-story-placeholder {
  aspect-ratio: 16/9;
  border-radius: 1rem;

  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: start;

  max-width: 28rem;
}

.about-story-emoji {
  width: 100%;

  object-fit: contain;
}

.about-story-text {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.about-story-subtext {
  font-size: 1.25rem;
}

.about-story-text {
  animation: slideUp 0.6s ease-out;
  order: 1;
}

.about-story-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  background: linear-gradient(
    to right,
    hsl(var(--today-blue)),
    hsl(var(--today-blue-dark))
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-story-content {
  font-size: 1.125rem;
  color: white;
  line-height: 1.75;
}

.about-story-content p {
  margin-bottom: 1rem;
}

.about-story-content strong {
  font-weight: 600;
  color: hsl(var(--today-blue));
}

.about-story-highlight {
  font-weight: 700;
  color: hsl(var(--today-blue));
}

/* Services Section */
.services {
  padding: 5rem 0;
  background-color: hsl(var(--today-gray-light));
}

.services-header {
  text-align: center;
  margin-bottom: 4rem;
  animation: fadeIn 0.6s ease-in-out;
}

.services-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.services-title-accent {
  color: hsl(var(--today-blue));
}

.services-subtitle {
  font-size: 1.25rem;
  color: hsl(var(--muted-foreground));
  max-width: 32rem;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  animation: slideUp 0.6s ease-out;

  padding-bottom: 1rem;
}

.service-card {
  background-color: white;
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.service-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(-0.5rem);
  border-color: hsl(var(--today-blue));
}

.service-icon {
  font-size: 3.75rem;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

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

.service-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
  color: hsl(var(--foreground));
  transition: color 0.3s ease;
}

.service-card:hover .service-title {
  color: hsl(var(--today-blue));
}

.service-description {
  color: hsl(var(--muted-foreground));
  line-height: 1.75;
}

/* Contact Section */
.contact {
  padding: 5rem 0;
  background: linear-gradient(
    135deg,
    hsl(var(--today-blue)) 0%,
    hsl(var(--today-blue-dark)) 100%
  );
  color: white;
}

.contact-content {
  max-width: 64rem;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 3rem;
  animation: fadeIn 0.6s ease-in-out;
}

.contact-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.contact-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

.contact-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
}

.contact-form-container {
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  padding: 2rem;
  animation: slideUp 0.6s ease-out;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  display: block;
  color: hsl(var(--foreground));
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid hsl(var(--input));
  border-radius: 0.375rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: hsl(var(--ring));
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

.contact-footer {
  text-align: center;
  color: hsl(var(--muted-foreground));
  margin-top: 1.5rem;
  font-size: 0.875rem;
}

/* Partners Section */
.partners {
  padding: 5rem 0;
  background-color: hsl(var(--background));
}

.partners-header {
  text-align: center;
  margin-bottom: 4rem;
  animation: fadeIn 0.6s ease-in-out;
}

.partners-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.partners-subtitle-carrossel {
  font-size: 1.25rem;
  color: white;
  max-width: 48rem;
  margin: 0 auto;
}

.partners-subtitle {
  font-size: 1.25rem;
  color: hsl(var(--muted-foreground));
  max-width: 48rem;
  margin: 0 auto;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  animation: slideUp 0.6s ease-out;

  padding-bottom: 1rem;
}

.partner-card {
  aspect-ratio: 1;
  border-radius: 0.75rem;
  background-color: white;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.partner-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(-0.5rem);
  border-color: hsl(var(--today-blue));
}

.partner-emoji {
  font-size: 3.125rem;
  margin-bottom: 0.75rem;
  transition: transform 0.3s ease;
}

.partner-img {
  max-width: 5rem;
  object-fit: contain;
}

.partner-card:hover .partner-emoji {
  transform: scale(1.1);
}

.partner-name {
  text-align: center;
  font-weight: 600;
  color: hsl(var(--foreground));
  transition: color 0.3s ease;
}

.partner-card:hover .partner-name {
  color: hsl(var(--today-blue));
}

/* Customers Carousel */
.customers {
  padding: 3rem 0;
  background-color: hsl(var(--today-black));
}

.customers .partners-header {
  margin-bottom: 2rem;
}

.partners-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  background: linear-gradient(
    to right,
    hsl(var(--today-blue)),
    hsl(var(--today-blue-dark))
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  white-space: nowrap;
  padding: 0.75rem 0;
  /* animation set dynamically from JS for consistent speed */
}

.carousel-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  min-width: 220px;
  min-height: 140px;
  border-radius: 0.5rem;
  background: transparent;
}

.carousel-item img {
  max-width: 100%;
  max-height: 110px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(90%) opacity(0.95);
  transition: transform 0.25s ease, filter 0.25s ease;
}

.carousel-item:hover img,
.carousel-item:focus img {
  transform: scale(1.06);
  filter: grayscale(0%) opacity(1);
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .carousel-track {
    gap: 1rem;
  }

  .carousel-item {
    min-width: 150px;
    min-height: 110px;
    padding: 0.25rem;
  }

  .carousel-item img {
    max-height: 72px;
  }
}

@media (min-width: 1024px) {
  .carousel-item {
    min-width: 260px;
    min-height: 160px;
  }

  .carousel-item img {
    max-height: 130px;
  }
}

/* Pause animation on hover/focus */
.carousel:hover .carousel-track,
.carousel:focus-within .carousel-track {
  animation-play-state: paused !important;
}

/* Reduced motion respect */
@media (prefers-reduced-motion: reduce) {
  .carousel-track {
    animation: none !important;
  }
}

/* Responsive tweaks */
@media (max-width: 767px) {
  .carousel-item {
    min-width: 110px;
    padding: 0.5rem;
  }

  .carousel-item img {
    max-height: 48px;
  }
}

@media (min-width: 768px) {
  .customers {
    padding: 4rem 0;
  }
}

/* Footer */
.footer {
  background-color: hsl(var(--today-black));
  color: white;
  padding: 3rem 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo-img {
  height: 5rem;
  width: auto;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social-link {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 0.75rem;
  border-radius: 50%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social-link:hover {
  background-color: hsl(var(--today-blue));
  transform: scale(1.1);
}

.footer-social-icon {
  width: 1.5rem;
  height: 1.5rem;

  color: hsl(0, 0%, 100%);
}

.footer-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: hsl(var(--today-blue));
}

.footer-link-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

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

/* Responsive Design */

/* Extra small devices (phones, less than 425px) */
@media (max-width: 424px) {
  .container {
    padding: 0 0.75rem;
  }

  .hero-title {
    font-size: 1.75rem;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

  .hero-logo {
    height: 4rem;
  }

  .about-title {
    font-size: 1.75rem;
  }

  .about-story-title {
    font-size: 1.75rem;
  }

  .services-title {
    font-size: 1.75rem;
  }

  .contact-title {
    font-size: 1.75rem;
  }

  .partners-title {
    font-size: 1.75rem;
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;

    width: 100%;
  }

  .partner-card {
    padding: 1rem;
    max-width: 130px;
    height: 200px;

    margin: 0 auto;
  }

  .partner-emoji {
    font-size: 2.5rem;
  }

  .partner-name {
    font-size: 0.875rem;
    word-wrap: break-word;
  }

  .footer-content {
    gap: 1.5rem;
  }

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

  .footer-social {
    justify-content: center;
  }

  .btn-hero {
    font-size: 1rem;
    padding: 1rem 1.5rem;
  }

  .btn-contact {
    font-size: 1rem;
    padding: 1rem;
  }

  .contact-form-container {
    padding: 1.5rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .about-image-placeholder,
  .about-story-placeholder {
    padding: 1.5rem;
  }

  .about-image-emoji,
  .about-story-emoji {
    font-size: 3rem;
  }

  .about-image-text,
  .about-story-text {
    font-size: 1.25rem;
  }

  .about-image-subtext,
  .about-story-subtext {
    font-size: 1rem;
  }

  /* Prevent horizontal overflow */
  * {
    max-width: 100%;
    box-sizing: border-box;
  }

  /* Fix navbar on very small screens */
  .navbar {
    padding: 0.75rem 0;
  }

  .navbar-logo-img {
    height: 2rem;
  }

  /* Fix hero section */
  .hero {
    min-height: 80vh;
    padding: 2rem 0;
  }

  /* Fix about section */
  .about {
    padding: 3rem 0;
  }

  .about-content {
    font-size: 1rem;
  }

  .about-story-content {
    font-size: 1rem;
  }

  /* Fix services section */
  .services {
    padding: 3rem 0;
  }

  .service-card {
    margin-bottom: 1rem;
  }

  /* Fix contact section */
  .contact {
    padding: 3rem 0;
  }

  /* Fix footer */
  .footer {
    padding: 2rem 0;
  }

  .footer-logo-img {
    height: 3rem;
  }

  /* Fix buttons */
  .btn {
    font-size: 0.875rem;
    padding: 0.625rem 1.25rem;
  }

  /* Fix form elements */
  .form-input,
  .form-textarea {
    font-size: 0.875rem;
    padding: 0.625rem;
  }

  /* Fix social icons */
  .footer-social-link {
    padding: 0.5rem;
  }

  .footer-social-icon {
    width: 1.25rem;
    height: 1.25rem;
  }
}

/* Small devices (425px and up) */
@media (min-width: 425px) and (max-width: 767px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .navbar-desktop {
    display: flex;
  }

  .navbar-mobile-btn {
    display: none;
  }

  .hero-title {
    font-size: 3.75rem;
  }

  .hero-subtitle {
    font-size: 1.875rem;
  }

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

  .about-story {
    grid-template-columns: 1fr 1fr;
  }

  .about-story-image {
    order: 1;
  }

  .about-story-text {
    order: 2;
  }

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

  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }

  .hero-subtitle {
    font-size: 2.25rem;
  }

  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .partners-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1280px) {
  .hero-title {
    font-size: 4.5rem;
  }

  .hero-subtitle {
    font-size: 2.25rem;
  }
}
