/* ==========================================================================
   Yashaswin Overseas Private Limited - Design System & Stylesheet
   Theme: Trustworthy, sustainable, and premium
   Colors: Deep Forest Green, Warm Gold, Sand & Clean Grays
   ========================================================================== */

/* Google Font Imports are in HTML */

:root {
  /* Color Palette */
  --forest-green: #0e3a24;
  --forest-green-light: #165335;
  --forest-green-dark: #072214;
  --gold: #d4af37;
  --gold-hover: #b89222;
  --gold-light: #f3e5ab;
  --bg-main: #f9fbf9;
  --bg-card: #ffffff;
  --bg-forest-card: #0e3a24;
  --text-dark: #101c15;
  --text-muted: #5c6c62;
  --text-light: #ffffff;
  --border-color: #e2e8f0;
  --success-color: #2e7d32;

  /* Font Families */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Layout Spacing */
  --max-width: 1200px;
  --header-height: 80px;

  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ==========================================================================
   Base Styles & Reset
   ========================================================================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--forest-green);
}

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

ul {
  list-style: none;
}

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

/* ==========================================================================
   Reusable UI Components
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.grid {
  display: grid;
  gap: 2rem;
}

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

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

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
  gap: 0.5rem;
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 0.95rem 2.25rem;
  font-size: 1.05rem;
}

.btn-full {
  display: flex;
  width: 100%;
}

.btn-gold {
  background-color: var(--gold);
  color: var(--forest-green-dark);
}

.btn-gold:hover {
  background-color: var(--gold-hover);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--text-light);
  color: var(--text-light);
}

.btn-outline:hover {
  background-color: var(--text-light);
  color: var(--forest-green);
  transform: translateY(-2px);
}

.btn-outline-forest {
  background-color: transparent;
  border-color: var(--forest-green);
  color: var(--forest-green);
}

.btn-outline-forest:hover {
  background-color: var(--forest-green);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(14, 58, 36, 0.2);
}

.btn-whatsapp-direct {
  background-color: #25D366;
  color: #fff;
  border: none;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition-smooth);
  width: 100%;
}

.btn-whatsapp-direct:hover {
  background-color: #128C7E;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-email-direct {
  background-color: var(--gold);
  color: var(--forest-green-dark);
  border: none;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition-smooth);
  width: 100%;
}

.btn-email-direct:hover {
  background-color: var(--gold-hover);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Section Common Styling */
.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.tag-white {
  color: var(--gold-light);
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  position: relative;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 3rem auto;
}

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

.shadow-lg {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.rounded-2xl {
  border-radius: 1rem;
}

.overflow-hidden {
  overflow: hidden;
}

/* ==========================================================================
   Header / Navigation
   ========================================================================== */

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: var(--transition-smooth);
}

.main-header.scrolled {
  background-color: rgba(14, 58, 36, 0.95);
  backdrop-filter: blur(10px);
  height: 70px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.header-container {
  max-width: var(--max-width);
  height: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.company-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text-light);
  line-height: 1;
}

.logo-text .company-name {
  color: var(--text-light);
}

/* Adjust colors in active state or dark BG */
.main-header.scrolled .logo-text .company-name {
  color: var(--text-light);
}

.company-sub {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.5px;
}

.text-gold {
  color: var(--gold);
}

.nav-menu {
  display: none;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold);
  transition: var(--transition-smooth);
}

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

.mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.mobile-toggle .bar {
  width: 100%;
  height: 3px;
  background-color: var(--text-light);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

@media (min-width: 1024px) {
  .nav-menu {
    display: flex;
    align-items: center;
    gap: 2.25rem;
  }
  .mobile-toggle {
    display: none;
  }
}

/* Mobile Nav Menu Active States */
.nav-menu.mobile-active {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100vh;
  background-color: var(--forest-green-dark);
  padding: 8rem 2rem 2rem 2rem;
  gap: 2rem;
  box-shadow: -10px 0 30px rgba(0,0,0,0.3);
  z-index: 999;
}

.mobile-toggle.active .bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.mobile-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active .bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}


/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  background-color: var(--forest-green-dark);
  color: var(--text-light);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(7, 34, 20, 0.95) 0%, rgba(14, 58, 36, 0.8) 50%, rgba(7, 34, 20, 0.9) 100%);
  z-index: 1;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: slowZoom 20s infinite alternate;
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 1.5rem 6rem 1.5rem;
}

.hero-content {
  max-width: 700px;
}

.hero-badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  background-color: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 20px;
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--text-light);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

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

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

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

@media (min-width: 480px) {
  .hero-actions {
    flex-direction: row;
  }
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  z-index: 3;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 60px;
}

@media (min-width: 768px) {
  .hero-wave svg {
    height: 100px;
  }
}

@keyframes slowZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}


/* ==========================================================================
   Trust & Certifications Bar
   ========================================================================== */

.trust-bar {
  padding: 3rem 0;
  background-color: var(--bg-main);
  border-bottom: 1px solid var(--border-color);
  position: relative;
  z-index: 4;
}

.trust-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

.trust-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.certifications-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  justify-items: center;
  align-items: center;
}

@media (min-width: 640px) {
  .certifications-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cert-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(14, 58, 36, 0.05);
  transition: var(--transition-smooth);
}

.cert-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(14, 58, 36, 0.08);
}

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


/* ==========================================================================
   About Us Section
   ========================================================================== */

.about-section {
  padding: 6rem 0;
  background-color: var(--bg-main);
}

.about-visual {
  position: relative;
}

.image-stack {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.image-stack-item-top {
  border-radius: 12px;
  overflow: hidden;
  border: 6px solid white;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.about-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 6px;
}

.experience-badge {
  background-color: var(--forest-green);
  color: var(--text-light);
  padding: 2rem;
  border-radius: 12px;
  border-left: 6px solid var(--gold);
  box-shadow: 0 15px 35px rgba(14, 58, 36, 0.25);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.exp-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.exp-text {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.about-bullet-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.bullet-item {
  display: flex;
  gap: 1rem;
}

.bullet-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background-color: rgba(14, 58, 36, 0.1);
  border-radius: 50%;
  color: var(--forest-green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bullet-item h4 {
  font-size: 1.1rem;
  color: var(--forest-green);
  margin-bottom: 0.25rem;
}

.bullet-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.stats-counter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
}

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

.stat-num {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--forest-green);
  margin-bottom: 0.25rem;
}

.stat-lbl {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
}

@media (min-width: 1024px) {
  .about-section {
    padding: 8rem 0;
  }
  .image-stack {
    display: block;
    height: 480px;
  }
  .image-stack-item-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 85%;
    z-index: 2;
  }
  .image-stack-item-bottom {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    z-index: 3;
  }
}


/* ==========================================================================
   Product Categories Section
   ========================================================================== */

.products-section {
  padding: 6rem 0;
  background-color: #f2f6f3;
  position: relative;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  background-color: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(14, 58, 36, 0.04);
  border: 1px solid rgba(14, 58, 36, 0.05);
  transition: var(--transition-bounce);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(14, 58, 36, 0.12);
}

.product-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--forest-green);
  color: var(--gold);
  padding: 0.25rem 0.75rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 20px;
  border: 1px solid var(--gold);
  z-index: 10;
}

.product-info {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-category-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--forest-green);
}

.product-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex-grow: 0;
}

.product-list {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-grow: 1;
}

.product-list li {
  font-size: 0.9rem;
  color: var(--text-dark);
  padding-left: 1.25rem;
  position: relative;
}

.product-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 800;
}

/* ==========================================================================
   Services / Features Section
   ========================================================================== */

.services-section {
  padding: 6rem 0;
  background-color: var(--bg-main);
}

.service-card {
  background-color: var(--bg-card);
  padding: 3rem 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  border: 1px solid var(--border-color);
  transition: var(--transition-bounce);
  text-align: center;
  position: relative;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 4px;
  background-color: var(--gold);
  transition: var(--transition-smooth);
  border-radius: 0 0 4px 4px;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(14, 58, 36, 0.06);
  border-color: rgba(14, 58, 36, 0.1);
}

.service-card:hover::after {
  width: 40%;
}

.service-icon-box {
  width: 70px;
  height: 70px;
  background-color: rgba(14, 58, 36, 0.05);
  border-radius: 50%;
  color: var(--forest-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem auto;
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon-box {
  background-color: var(--forest-green);
  color: var(--gold);
  transform: scale(1.05);
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
}


/* ==========================================================================
   Contact & Enquiry Section
   ========================================================================== */

.contact-section {
  padding: 6rem 0;
  background-color: #f2f6f3;
}

.bg-forest-card {
  background: linear-gradient(135deg, var(--forest-green-dark) 0%, var(--forest-green) 100%);
  color: var(--text-light);
}

.contact-info-panel {
  padding: 3rem 2rem;
}

@media (min-width: 768px) {
  .contact-info-panel {
    padding: 4rem 3rem;
  }
}

.panel-title {
  font-size: 2rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.panel-desc {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
  font-size: 1.05rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.contact-detail-item {
  display: flex;
  gap: 1.25rem;
}

.detail-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-detail-item h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 0.25rem;
}

.contact-detail-item p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}

.contact-form-panel {
  background-color: var(--bg-card);
  color: var(--text-dark);
  padding: 3rem 2rem;
  position: relative;
}

@media (min-width: 768px) {
  .contact-form-panel {
    padding: 4rem 3rem;
  }
}

.form-title {
  font-size: 1.6rem;
  margin-bottom: 2rem;
  color: var(--forest-green);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--forest-green);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  background-color: var(--bg-main);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  outline: none;
  transition: var(--transition-smooth);
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--forest-green);
  background-color: white;
  box-shadow: 0 0 0 3px rgba(14, 58, 36, 0.1);
}

.btn-arrow {
  transition: var(--transition-smooth);
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* Success State Styles */
.success-message {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  padding: 3rem;
  z-index: 10;
}

.success-message.active {
  display: flex;
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(46, 125, 50, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  color: var(--success-color);
}

.success-message h3 {
  font-size: 1.8rem;
  color: var(--forest-green);
  margin-bottom: 1rem;
}

.success-message p {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 450px;
}


/* ==========================================================================
   Footer Section
   ========================================================================== */

.footer {
  background-color: var(--forest-green-dark);
  color: var(--text-light);
  padding: 5rem 0 2rem 0;
  border-top: 2px solid var(--gold);
}

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

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
}

.footer-logo {
  display: inline-block;
  margin-bottom: 1.5rem;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  max-width: 350px;
}

.footer-cert-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag-badge {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  font-size: 0.75rem;
  color: var(--gold-light);
}

.footer h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1.75rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--gold);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

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

.footer-contact-info li {
  display: flex;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

.footer-icon {
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom .tagline {
  color: var(--gold-light);
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.hover-underline:hover {
  text-decoration: underline;
}

.block {
  display: block;
}

.opacity-80 {
  opacity: 0.8;
}

/* ==========================================================================
   Animations & Classes
   ========================================================================== */

/* Fade/Slide Ins */
.animate-fade-in {
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
}

.animate-slide-up {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-slide-up-delayed {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}

.animate-slide-up-delayed-more {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
}

/* Scroll trigger reveals */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

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

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