@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  /* Premium Natural Palette */
  --primary-color: #6C826A;
  /* Deep Sage Green */
  --primary-light: #A5B8A1;
  /* Soft Sage */
  --secondary-color: #FAF8F5;
  /* Warm Beige/Cream */
  --accent-color: #D4A373;
  /* Subtle earthy terracotta/gold */
  --text-dark: #2C3529;
  /* Dark Olive for text */
  --text-light: #6A7A66;
  /* Muted Green */
  --bg-white: #FFFFFF;
  --bg-glass: rgba(255, 255, 255, 0.85);

  --font-main: 'Poppins', sans-serif;

  --padding-section: 100px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 8px;

  --shadow-sm: 0 4px 12px rgba(108, 130, 106, 0.08);
  --shadow-lg: 0 16px 40px rgba(108, 130, 106, 0.12);
  --shadow-hover: 0 20px 48px rgba(108, 130, 106, 0.2);

  --transition-fast: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-slow: 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-main);
}

body {
  background: var(--secondary-color);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ==================================
   HEADER (Glassmorphism)
=================================== */
.main-header {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  max-width: 1300px;
  z-index: 1000;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 40px;
}

.logo a {
  display: flex;
  align-items: center;
  font-size: 26px;
  font-weight: 700;
  text-decoration: none;
  color: var(--primary-color);
  letter-spacing: 1px;
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav a {
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  color: var(--text-dark);
  transition: var(--transition-fast);
  position: relative;
}



.nav a:hover {
  color: var(--primary-color);
}



.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 4px;
  transition: var(--transition-fast);
}

/* ==================================
   BUTTONS
=================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  color: #fff;
  padding: 16px 36px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 50px;
  /* Pill shape for modern look */
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
  letter-spacing: 0.5px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, var(--primary-color), var(--accent-color));
  z-index: -1;
  transition: opacity 0.4s ease;
  opacity: 0;
}

.btn:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  color: #fff;
}

.btn:hover::before {
  opacity: 1;
}

/* ==================================
   HERO SECTION
=================================== */
.hero {
  height: 90vh;
  min-height: 600px;
  background-image: url("../images/banner.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  padding: 0 10%;
  position: relative;
  border-bottom-left-radius: 80px;
  border-bottom-right-radius: 80px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  margin-bottom: 60px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26, 36, 25, 0.8) 0%, rgba(26, 36, 25, 0.3) 100%);
}

.hero-content {
  position: relative;
  max-width: 600px;
  z-index: 2;
  animation: fadeUp 1s ease-out forwards;
}

.hero-content h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-content p {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  font-weight: 300;
}

/* ==================================
   SECTION DEFAULTS
=================================== */
.section-title {
  text-align: center;
  margin-bottom: 60px;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--text-dark);
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--primary-color);
  margin: 16px auto 0;
  border-radius: 2px;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
}

/* ==================================
   PRODUCTS & CARDS
=================================== */
.products,
.featured-products,
.shop {
  padding: var(--padding-section) 10%;
  background: var(--secondary-color);
}

.product-grid,
.product-grids,
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.product,
.product-card {
  background: var(--bg-white);
  padding: 30px;
  text-align: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-slow);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(165, 184, 161, 0.15);
}

.product img,
.product-img img,
.product-card img {
  width: 100%;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  transition: var(--transition-slow);
  object-fit: cover;
  aspect-ratio: 1/1;
}

.product:hover,
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.product:hover img,
.product-card:hover img {
  transform: scale(1.05);
}

.product h3,
.product-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.product p,
.price {
  color: var(--accent-color);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 24px;
}

/* ==================================
   ABOUT SECTION
=================================== */
.about {
  padding: var(--padding-section) 10%;
  background: var(--bg-white);
}

.about-container {
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-image {
  flex: 1;
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-image::before {
  content: '';
  position: absolute;
  inset: -20px 20px 20px -20px;
  border: 2px solid var(--primary-light);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about-content {
  flex: 1;
}

.about-content h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
  line-height: 1.2;
}

.about-content p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 36px;
}

/* ==================================
   OFFERS SECTION
=================================== */
.offers {
  padding: var(--padding-section) 10%;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: #fff;
}

.offers .section-title {
  color: #fff;
}

.offers .section-title::after {
  background: var(--accent-color);
}

.offers-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.offer-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 50px 30px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition-fast);
}

.offer-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-10px);
}

.offer-card h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #fff;
}

.offer-card p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.offer-card .btn {
  background: #fff;
  color: var(--primary-color);
}

.offer-card .btn:hover {
  background: var(--accent-color);
  color: #fff;
}

/* ==================================
   PRODUCT MEDIA SECTION  (redesigned)
=================================== */
.product-media {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* ── Cinematic video backdrop ── */
.pm-video-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.pm-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pm-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
      rgba(26, 36, 25, 0.90) 0%,
      rgba(26, 36, 25, 0.70) 55%,
      rgba(108, 130, 106, 0.45) 100%);
}

/* ── Content wrapper ── */
.pm-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 120px 10%;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

/* ── Left info panel ── */
.pm-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-color);
  background: rgba(212, 163, 115, 0.15);
  border: 1px solid rgba(212, 163, 115, 0.35);
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
}

.pm-title {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.pm-title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--accent-color), #f0c87a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pm-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: 48px;
  max-width: 480px;
}

/* Stats row */
.pm-stats {
  display: flex;
  gap: 36px;
  margin-bottom: 48px;
}

.pm-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pm-stat-num {
  font-size: 30px;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
}

.pm-stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pm-cta {
  background: var(--accent-color);
  box-shadow: 0 8px 24px rgba(212, 163, 115, 0.45);
}

.pm-cta:hover {
  background: #c9935a;
  box-shadow: 0 12px 32px rgba(212, 163, 115, 0.6);
}

.pm-cta::before {
  background: linear-gradient(120deg, var(--accent-color), #f0c87a);
}

/* ── Right: floating product spotlight ── */
.pm-spotlight {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.pm-product-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  position: relative;
  transition: var(--transition-fast);
  animation: floatCard 5s ease-in-out infinite;
}

.pm-card-alt {
  animation-delay: 0.8s;
  animation-duration: 5.5s;
  margin-left: 40px;
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.pm-product-card:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(212, 163, 115, 0.4);
  transform: translateY(-6px) scale(1.02);
}

.pm-product-img {
  width: 90px;
  height: 90px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

.pm-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.pm-product-card:hover .pm-product-img img {
  transform: scale(1.1);
}

.pm-product-info {
  flex: 1;
}

.pm-product-info h4 {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 5px;
}

.pm-product-info span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

/* Badges */
.pm-product-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: 50px;
  background: var(--primary-color);
  color: #fff;
  text-transform: uppercase;
  flex-shrink: 0;
}

.pm-badge-gold {
  background: linear-gradient(90deg, var(--accent-color), #f0c87a);
  color: #2C3529;
}

/* Animated play hint */
.pm-play-hint {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
  padding: 0 8px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition-fast);
}

.pm-play-hint:hover {
  color: #fff;
}

.pm-play-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(212, 163, 115, 0.25);
  border: 2px solid var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 16px;
  position: relative;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.pm-play-btn::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(212, 163, 115, 0.35);
  animation: pulsePing 2s ease-out infinite;
}

.pm-play-hint:hover .pm-play-btn {
  background: var(--accent-color);
  color: #fff;
  transform: scale(1.1);
}

@keyframes pulsePing {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

/* ==================================
   TESTIMONIALS
=================================== */
.testimonials {
  padding: var(--padding-section) 10%;
  background: var(--bg-white);
  text-align: center;
}

.testimonial-slider {
  max-width: 800px;
  margin: auto;
  position: relative;
}

.testimonial-slide {
  display: none;
  background: var(--secondary-color);
  padding: 50px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial-slide::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 80px;
  color: rgba(165, 184, 161, 0.3);
  font-family: serif;
  line-height: 1;
}

.testimonial-slide.active {
  display: block;
  animation: fadeIn 0.8s ease forwards;
}

.testimonial-slide p {
  font-size: 20px;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.testimonial-slide h4 {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ==================================
   SHOP PAGE SPECIFICS
=================================== */
.shop-banner,
.about-banner {
  background-image: url("../images/about-banner.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 180px 10% 120px;
  text-align: center;
  position: relative;
  border-bottom-left-radius: 80px;
  border-bottom-right-radius: 80px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  margin-bottom: 60px;
}

.shop-banner::before,
.about-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(108, 130, 106, 0.85) 0%, rgba(212, 163, 115, 0.75) 100%);
  z-index: 1;
}

.shop-banner h1,
.about-banner h1,
.about-banner p {
  position: relative;
  color: #fff;
  z-index: 2;
}

.shop-banner h1,
.about-banner h1 {
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 700;
  letter-spacing: 2px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  margin-bottom: 15px;
}

.about-banner p {
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 300;
  opacity: 0.9;
}

.shop-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  background: #fff;
  padding: 20px 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.shop-top select {
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(165, 184, 161, 0.5);
  font-size: 16px;
  outline: none;
  background: var(--secondary-color);
  color: var(--text-dark);
  font-family: inherit;
  cursor: pointer;
}

/* ==================================
   ABOUT PAGE EXTRAS
=================================== */
.about-company,
.mission,
.why,
.team {
  padding: var(--padding-section) 10%;
}

.mission,
.team {
  background: var(--secondary-color);
}

.about-grid,
.mission-grid,
.why-grid,
.team-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}

.about-grid {
  grid-template-columns: 1fr 1fr;
}

.mission-grid,
.why-grid,
.team-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.about-img img,
.team-card img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.mission-box,
.why-card,
.team-card {
  background: var(--bg-white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
  text-align: center;
}

.mission-box:hover,
.why-card:hover,
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.mission-box h3,
.why-card h3,
.team-card h3 {
  color: var(--primary-color);
  margin-bottom: 16px;
  font-size: 24px;
}

.why-icon {
  font-size: 46px;
  color: var(--primary-color);
  margin-bottom: 24px;
  display: inline-block;
}

/* ==================================
   CONTACT & FORMS
=================================== */
.contact-section {
  padding: 140px 10% 100px;
  background: var(--secondary-color);
}

.contact-section h2 {
  font-size: clamp(28px, 4vw, 40px);
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 50px;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto 60px;
}

.info-item {
  text-align: center;
  padding: 40px 30px;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.info-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.info-item i {
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 24px;
  display: block;
}

.info-item p {
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.5;
}

.social-links {
  text-align: center;
  margin-top: 40px;
}

.social-links a {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--bg-white);
  color: var(--primary-color);
  font-size: 22px;
  margin: 0 12px;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.social-links a:hover {
  background: var(--primary-color);
  color: #fff;
  transform: scale(1.1) translateY(-4px);
  box-shadow: var(--shadow-lg);
}

form {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-white);
  padding: 60px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.input-field {
  margin-bottom: 28px;
}

.input-field label {
  display: block;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-dark);
  font-size: 15px;
}

.input-field input,
.input-field textarea {
  width: 100%;
  padding: 18px 24px;
  border: 2px solid rgba(165, 184, 161, 0.3);
  border-radius: var(--radius-md);
  background: var(--secondary-color);
  font-size: 16px;
  font-family: inherit;
  transition: var(--transition-fast);
  color: var(--text-dark);
}

.input-field input:focus,
.input-field textarea:focus {
  border-color: var(--primary-color);
  outline: none;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(108, 130, 106, 0.1);
}

form button {
  width: 100%;
  margin-top: 10px;
  background: var(--primary-color);
  color: #fff;
  padding: 16px 36px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

form button:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  background: var(--accent-color);
}

/* ==================================
   FOOTER
=================================== */
.main-footer {
  background: #2C3529;
  color: #fff;
  padding: 80px 10% 30px;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1fr;
  gap: 60px;
  align-items: flex-start;
  margin-bottom: 60px;
}

.footer-col h3 {
  color: var(--accent-color);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col>p {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  font-size: 14px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition-fast);
  display: inline-block;
}

.footer-col ul a:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

/* Footer contact details */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.6;
}

.footer-contact li i {
  color: var(--accent-color);
  margin-top: 3px;
  min-width: 16px;
  font-size: 15px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-contact a:hover {
  color: var(--accent-color);
}

.footer-socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 50%;
  font-size: 15px;
  transition: var(--transition-fast);
  text-decoration: none;
}

.footer-socials a:hover {
  background: var(--accent-color);
  transform: translateY(-4px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  opacity: 0.7;
  font-size: 14px;
  letter-spacing: 0.3px;
}

.footer-bottom p a {
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-bottom p a:hover {
  color: #fff;
  text-decoration: underline;
}

/* ==================================
   ANIMATIONS & MOBILE
=================================== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (max-width: 1100px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 992px) {

  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .pm-content {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 100px 6%;
  }

  .pm-card-alt {
    margin-left: 0;
  }

  .about-image::before {
    display: none;
  }

  .contact-info {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 800px) {
  :root {
    --padding-section: 60px;
  }

  .header-container {
    padding: 15px 5%;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 5%;
    width: 90%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: none;
    flex-direction: column;
    padding: 30px 0;
    box-shadow: var(--shadow-lg);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
  }

  .nav ul {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .nav.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    height: auto;
    padding: 160px 5% 100px;
    min-height: 500px;
  }

  .about-content h2 {
    font-size: 28px;
  }

  .pm-content {
    padding: 80px 5%;
  }

  .pm-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .pm-stat-num {
    font-size: 24px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .main-footer {
    padding: 60px 6% 20px;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

  form {
    padding: 30px 20px;
  }
}