@import url("reset.css");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

/* ========== CSS VARIABLES ========== */
:root {
  --primary-blue: #1e3a8a;
  --secondary-blue: #3b82f6;
  --accent-yellow: #fbbf24;
  --light-blue: #dbeafe;
  --dark-blue: #1e40af;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --white: #ffffff;
  --light-gray: #f8fafc;
  --border-color: #e5e7eb;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* ========== COMMON STYLES ========== */
* {
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
}

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

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1rem;
  text-align: center;
}

.button {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--primary-blue);
  color: var(--white);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.button:hover {
  background-color: var(--dark-blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

.button--secondary:hover {
  background-color: var(--primary-blue);
  color: var(--white);
}

/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: var(--shadow);
  z-index: 1000;
  transition: all 0.3s ease;
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

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

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

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

.menu__list {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.menu__link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.menu__link:hover,
.menu__link.active {
  color: var(--primary-blue);
}

.menu__link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-blue);
  transition: width 0.3s ease;
}

.menu__link:hover::after,
.menu__link.active::after {
  width: 100%;
}

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

.language-switcher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--light-gray);
  padding: 0.25rem;
  border-radius: 6px;
  margin-right: 1rem;
}

.lang-btn {
  background: none;
  border: none;
  padding: 0.5rem 0.75rem;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-size: 0.875rem;
  min-width: 40px;
  text-align: center;
}

.lang-btn:hover {
  color: var(--primary-blue);
  background-color: rgba(59, 130, 246, 0.1);
}

.lang-btn.active {
  background-color: var(--primary-blue);
  color: var(--white);
}

.lang-btn.active:hover {
  background-color: var(--dark-blue);
}

.lang-separator {
  color: var(--text-light);
  font-weight: 300;
  user-select: none;
}

.menu__icon {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu__icon span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text-dark);
  margin: 5px 0;
  transition: 0.3s;
}

/* ========== HERO SECTION ========== */
.hero {
  background: linear-gradient(135deg, var(--light-blue) 0%, var(--white) 100%);
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="wave" x="0" y="0" width="100" height="20" patternUnits="userSpaceOnUse"><path d="M0,10 Q25,0 50,10 T100,10 L100,20 L0,20 Z" fill="%23dbeafe" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23wave)"/></svg>') repeat;
  opacity: 0.1;
}

.hero__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.hero__title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero__subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero__button {
  font-size: 1.125rem;
  padding: 16px 32px;
}

/* ========== ABOUT SECTION ========== */
.about {
  padding: 80px 0;
  background-color: var(--white);
}

.about__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.about__content {
  padding-right: 2rem;
}

.about__title {
  text-align: left;
  margin-bottom: 2rem;
}

.about__text p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
  font-size: 1.125rem;
  line-height: 1.7;
}

.about__images {
  position: relative;
}

.about__img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

/* ========== PRODUCTS SECTION ========== */
.products {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.products__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.products__title {
  margin-bottom: 1rem;
}

.products__subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.125rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.product-card {
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

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

.product-card__image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-card__image img {
  transform: scale(1.05);
}

.product-card__content {
  padding: 1.5rem;
}

.product-card__name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 0.75rem;
}

.product-card__description {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.product-card__actions {
  display: flex;
  gap: 1rem;
}

.product-card__button {
  flex: 1;
  text-align: center;
  padding: 12px 16px;
  font-size: 14px;
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials {
  padding: 80px 0;
  background-color: var(--white);
}

.testimonials__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.testimonials__title {
  margin-bottom: 3rem;
}

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

.testimonial-card {
  background-color: var(--light-gray);
  padding: 2rem;
  border-radius: 12px;
  position: relative;
  border-left: 4px solid var(--accent-yellow);
}

.testimonial-card__quote {
  font-size: 3rem;
  color: var(--accent-yellow);
  line-height: 1;
  margin-bottom: 1rem;
  font-family: serif;
}

.testimonial-card__text {
  color: var(--text-light);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-card__author {
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
}

.testimonial-card__name {
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 0.25rem;
}

.testimonial-card__position {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ========== CONTACT SECTION ========== */
.contact {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.contact__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact__title {
  text-align: left;
  margin-bottom: 1.5rem;
}

.contact__text {
  color: var(--text-light);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

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

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

.contact__icon {
  width: 24px;
  height: 24px;
  opacity: 0.7;
}

.contact__detail h4 {
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 0.25rem;
}

.contact__detail p {
  color: var(--text-light);
  margin: 0;
}

.contact__address-img {
  width: 100%;
  max-width: 300px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

/* ========== CONTACT FORM ========== */
.contact__form-wrapper {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

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

.form__group {
  display: flex;
  flex-direction: column;
}

.form__label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.form__input {
  padding: 12px 16px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.form__input:focus {
  outline: none;
  border-color: var(--primary-blue);
}

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

.form__submit {
  align-self: flex-start;
  padding: 16px 32px;
  font-size: 1.125rem;
}

.form__response {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 8px;
  display: none;
}

.form__response.success {
  background-color: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.form__response.error {
  background-color: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

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

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

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

.footer__logo {
  height: 60px;
  width: auto;
  max-width: 200px; /* Add this line to prevent stretching */
  object-fit: contain; /* Add this line to maintain aspect ratio */
}

.footer__tagline {
  color: #94a3b8;
  font-size: 1.125rem;
}

.footer__links h4,
.footer__contact h4 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--white);
}

.footer__links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer__links a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__links a:hover {
  color: var(--white);
}

.footer__contact p {
  color: #94a3b8;
  margin-bottom: 0.5rem;
}

.footer__bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__policy {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__policy:hover {
  color: var(--white);
}

/* ========== PAGE HEADER ========== */
.page-header {
  background: linear-gradient(135deg, var(--light-blue) 0%, var(--white) 100%);
  padding: 120px 0 80px;
  text-align: center;
}

.page-header__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-header__title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.page-header__subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* ========== OVERVIEW SECTION ========== */
.overview {
  padding: 80px 0;
  background-color: var(--white);
}

.overview__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.overview__content {
  padding-right: 2rem;
}

.overview__title {
  text-align: left;
  margin-bottom: 2rem;
}

.overview__text {
  color: var(--text-light);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.overview__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-light);
  font-weight: 500;
}

.overview__image {
  position: relative;
}

.overview__img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

/* ========== FEATURED PRODUCTS ========== */
.featured-products {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.featured-products__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.featured-products__title {
  margin-bottom: 1rem;
}

.featured-products__subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.125rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.featured-products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.featured-product-card {
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.featured-product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.featured-product-card__image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.featured-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.featured-product-card:hover .featured-product-card__image img {
  transform: scale(1.05);
}

.featured-product-card__content {
  padding: 1.5rem;
}

.featured-product-card__name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 0.75rem;
}

.featured-product-card__description {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.featured-product-card__button {
  width: 100%;
  text-align: center;
  padding: 12px 16px;
  font-size: 14px;
}

/* ========== WHY CHOOSE US ========== */
.why-choose {
  padding: 80px 0;
  background-color: var(--white);
}

.why-choose__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.why-choose__title {
  margin-bottom: 3rem;
}

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

.why-item {
  text-align: center;
  padding: 2rem;
  border-radius: 12px;
  background-color: var(--light-gray);
  transition: all 0.3s ease;
}

.why-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.why-item__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.why-item__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.why-item__text {
  color: var(--text-light);
  line-height: 1.6;
}

/* ========== CTA SECTION ========== */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
  color: var(--white);
  text-align: center;
}

.cta-section__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.cta-section__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.cta-section__text {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.cta-section__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

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

.cta-section .button--secondary:hover {
  background-color: var(--white);
  color: var(--primary-blue);
}

/* ========== ABOUT CONTENT ========== */
.about-content {
  padding: 80px 0;
  background-color: var(--white);
}

.about-content__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-content__text {
  padding-right: 2rem;
}

.about-content__title {
  text-align: left;
  margin-bottom: 2rem;
}

.about-content__paragraphs p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
  font-size: 1.125rem;
  line-height: 1.7;
}

.about-content__image {
  position: relative;
}

.about-content__img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

/* ========== MISSION VALUES ========== */
.mission-values {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.mission-values__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.mission-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: all 0.3s ease;
}

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

.mission-card__title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.mission-card__text {
  color: var(--text-light);
  line-height: 1.6;
}

/* ========== PRODUCT SPECS ========== */
.product-card__specs {
  margin-bottom: 1.5rem;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.spec-label {
  font-weight: 600;
  color: var(--text-dark);
}

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

/* ========== CONTACT FORM ========== */
.form-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 2rem;
  text-align: center;
}

/* ========== MAP SECTION ========== */
.map-section {
  padding: 80px 0;
  background-color: var(--white);
}

.map-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.map-section__title {
  margin-bottom: 1rem;
}

.map-section__text {
  color: var(--text-light);
  font-size: 1.125rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.map-placeholder {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-placeholder iframe {
  width: 100%;
  height: 400px;
  border: none;
  filter: grayscale(100%);
}

/* ========== FAQ SECTION ========== */
.faq-section {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.faq-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.faq-section__title {
  margin-bottom: 3rem;
}

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

.faq-item {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.faq-question {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.faq-answer {
  color: var(--text-light);
  line-height: 1.6;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
  .menu__body {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--white);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 2rem;
    transition: left 0.3s ease;
    box-shadow: var(--shadow-lg);
  }

  .menu__body.active {
    left: 0;
  }

  .menu__list {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .menu__icon {
    display: block;
  }

  .menu__icon.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu__icon.active span:nth-child(2) {
    opacity: 0;
  }

  .menu__icon.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .hero__title {
    font-size: 2.5rem;
  }

  .hero__subtitle {
    font-size: 1.125rem;
  }

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

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

  .about__content {
    padding-right: 0;
  }

  .about__title {
    text-align: center;
  }

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

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

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

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

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

@media (max-width: 480px) {
  .hero__title {
    font-size: 2rem;
  }

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

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

  .product-card__actions {
    flex-direction: column;
  }

  .contact__form-wrapper {
    padding: 1.5rem;
  }
}

/* ========== SMOOTH SCROLLING ========== */
html {
  scroll-behavior: smooth;
}

/* ========== UTILITY CLASSES ========== */
.text-center {
  text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }