/* ============================================
   KRIPA TEXTILES - CSS Stylesheet
   Inspired by Yarnex Demo Design
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700&display=swap');

@font-face {
  font-family: appFont; /* set name */
  src: url(./fonts/Aviano-Serif-Regular.otf); /* url of the font */
}

:root {
  --color-primary: #B49763;
  --color-primary-dark: #967b4f;
  --color-secondary: #8B2C31;
  --color-dark: #1A1A1A;
  --color-darker: #111111;
  --color-light: #F7F5F0;
  --color-cream: #F6F5ED;
  --color-white: #ffffff;
  --color-text: #888888;
  --color-text-light: #aaaaaa;
  --color-border: rgba(255, 255, 255, 0.1);
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-dark);
  overflow-x: hidden;
  /* line-height: 1.7; */
}

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

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

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

ul {
  list-style: none;
}

.container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 30px;
}

/* ---- PRELOADER ---- */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s, visibility 0.6s;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid var(--color-border);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-icon {
  width: 42px;
  height: 42px;
  background: transparent;
  border: 2px solid var(--color-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.nav-logo-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-primary);
}

.nav-logo-text {
  color: var(--color-white);
}

.nav-logo-text h2 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
}

.nav-logo-text span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-primary);
  display: block;
  margin-top: -2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  color: var(--color-white);
  padding: 8px 18px;
  font-size: 15px;
  font-weight: 400;
  position: relative;
  border-radius: 6px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 30px;
}

.nav-cta {
  background: var(--color-primary);
  color: var(--color-dark) !important;
  padding: 10px 28px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  letter-spacing: 0.5px;
}

.nav-cta:hover {
  background: var(--color-white) !important;
  color: var(--color-dark) !important;
}

.nav-cta::after {
  display: none !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background: var(--color-white);
  transition: var(--transition);
  display: block;
}

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

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

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

/* ---- HERO SECTION ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.3) 0%, rgba(26, 26, 26, 0.3) 50%, rgba(17, 17, 17, 0.3) 100%);
}

.hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  text-align: center;
}

.hero-content {
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(180, 151, 99, 0.15);
  border: 1px solid rgba(180, 151, 99, 0.3);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
  font-size: 13px;
  color: var(--color-primary);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
}

.hero h1 {
  font-size: clamp(40px, 5vw, 68px);
  color: var(--color-white);
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero h1 span {
  color: var(--color-primary);
  display: block;
}

.hero-desc {
  font-size: 17px;
  color: var(--color-text-light);
  margin-bottom: 36px;
  max-width: 600px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary, .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  font-family: var(--font-body);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-dark);
  border: 2px solid var(--color-primary);
}

.btn-primary:hover {
  background: transparent;
  color: var(--color-primary);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn-primary svg, .btn-outline svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.hero-image {
  display: none;
}

.hero-stats {
  display: flex;
  gap: 50px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--color-border);
  justify-content: center;
  width: 100%;
  max-width: 600px;
}

.hero-stat h3 {
  font-size: 36px;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.hero-stat p {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---- SECTION COMMONS ---- */
.section {
  padding: 100px 0;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-primary);
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-badge-dot {
  width: 6px;
  height: 6px;
  background-color: rgb(180, 151, 99);
  border-radius: 50%;
  display: inline-block;
}

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--color-white);
  margin-bottom: 20px;
  line-height: 1.15;
}

.section-desc {
  font-size: 16px;
  max-width: 600px;
  /* line-height: 1.8; */
}

.section-header {
  margin-bottom: 60px;
}

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

.section-header.center .section-desc {
  margin: 0 auto;
}

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

.bg-light .section-title {
  color: var(--color-dark);
}

.bg-light .section-desc {
  color: #666;
}

.bg-light .product-card {
  background: var(--color-white);
  border-color: #e8e4dd;
}

.bg-light .product-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.bg-light .product-card-body h4 {
  color: var(--color-white);
}

.bg-light .product-card-body p {
  color: #666;
}

.bg-light .cert-card {
  background: var(--color-white);
  border-color: #e8e4dd;
}

.bg-light .cert-card:hover {
  background: rgba(180, 151, 99, 0.08);
}

.bg-light .cert-card h4 {
  color: var(--color-dark);
}

.bg-light .cert-card p {
  color: #666;
}

.bg-light .about-feature {
  background: var(--color-white);
  border-color: #e8e4dd;
}

.bg-light .about-feature h4 {
  color: var(--color-dark);
}

.bg-light .about-feature p {
  color: #666;
}

.bg-light .contact-item {
  background: var(--color-white);
  border-color: #e8e4dd;
}

.bg-light .contact-item h4 {
  color: var(--color-dark);
}

.bg-light .contact-item p {
  color: #555;
}

.bg-light .form-group input,
.bg-light .form-group textarea {
  background: var(--color-white);
  border-color: #ddd;
  color: var(--color-dark);
}

.bg-light .form-group input::placeholder,
.bg-light .form-group textarea::placeholder {
  color: #999;
}

.bg-light .form-group input:focus,
.bg-light .form-group textarea:focus {
  border-color: var(--color-primary);
}

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

.bg-cream .section-title {
  color: var(--color-dark);
}

/* ---- ABOUT SECTION ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-img-large {
  grid-row: 1 / 3;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
}

.about-img-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-small {
  border-radius: 16px;
  overflow: hidden;
}

.about-img-small img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.about-experience {
  background: var(--color-primary);
  color: var(--color-dark);
  padding: 24px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 600;
}

.about-experience h3 {
  font-size: 42px;
  line-height: 1;
}

.about-experience p {
  font-size: 14px;
  line-height: 1.4;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.about-feature {
  background: rgba(180, 151, 99, 0.08);
  border: 1px solid rgba(180, 151, 99, 0.15);
  padding: 24px;
  border-radius: 14px;
  transition: var(--transition);
}

.about-feature:hover {
  border-color: var(--color-primary);
  transform: translateY(-4px);
}

.about-feature-icon {
  width: 48px;
  height: 48px;
  background: var(--color-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.about-feature-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--color-dark);
}

.about-feature h4 {
  color: var(--color-white);
  font-size: 16px;
  margin-bottom: 6px;
  font-family: var(--font-body);
  font-weight: 600;
}

.about-feature p {
  font-size: 13px;
  line-height: 1.6;
}

/* ---- VISION & MISSION ---- */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.vm-card {
  background: rgba(180, 151, 99, 0.06);
  border: 1px solid rgba(180, 151, 99, 0.12);
  padding: 40px;
  border-radius: 20px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.vm-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--color-primary);
  border-radius: 4px;
}

.vm-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-6px);
}

.vm-card h3 {
  color: var(--color-white);
  font-size: 26px; 
  margin-bottom: 16px;
}

.vm-card p {
  font-size: 15px;
  /* line-height: 1.8; */
}

/* ---- CERTIFICATIONS ---- */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.cert-card {
  background: rgba(180, 151, 99, 0.06);
  border: 1px solid rgba(180, 151, 99, 0.12);
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  transition: var(--transition);
}

.cert-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-6px);
  background: rgba(180, 151, 99, 0.12);
}

.cert-logo {
  width: 120px;
  height: 120px;
  background: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  border: 2px solid rgba(180, 151, 99, 0.2);
  transition: var(--transition);
}

.cert-card:hover .cert-logo {
  border-color: var(--color-primary);
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.cert-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: var(--transition);
}

.cert-card h4 {
  color: var(--color-white);
  font-size: 18px;
  margin-bottom: 12px;
  font-family: var(--font-body);
  font-weight: 700;
}

.cert-card p {
  font-size: 13px;
  line-height: 1.6;
}

/* ---- PROCESS / WHAT WE DO ---- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

@media (max-width: 1200px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

@media (max-width: 480px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

.process-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
}

.process-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.process-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.process-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.process-card:hover .process-card-img img {
  transform: scale(1.1);
}

.process-card-body {
  padding: 24px;
}

.process-card h4 {
  color: var(--color-white);
  font-size: 18px;
  margin-bottom: 12px;
  font-family: var(--font-body);
  font-weight: 700;
}

.process-card p {
  font-size: 14px;
  /* line-height: 1.7; */
}

/* ---- PRODUCTS SECTION ---- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.product-card {
  background: transparent;
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.product-card-img {
  aspect-ratio:1;
  overflow: hidden;
  position: relative;
  border-radius: 16px;
}

/* .product-card-img::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.75) 100%);
  z-index: 1;
  transition: var(--transition); 
} */

/* .product-card:hover .product-card-img::before {
  background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.6) 100%);
} */

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

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

.product-card-body {
  position: absolute;
  background-color: rgba(0,0,0,0.6); 

  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px 14px;
  z-index: 2;
}

.product-card-body h4 {
  color: var(--color-white);
  font-size: 16px;
  margin-bottom: 0;
  font-family: var(--font-body);
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

/* Responsive adjustments for products */
@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .product-card-body h4 {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* ---- WHY CHOOSE US ---- */
.wcu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.wcu-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wcu-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(180, 151, 99, 0.06);
  border: 1px solid rgba(180, 151, 99, 0.1);
  padding: 20px 24px;
  border-radius: 14px;
  transition: var(--transition);
}

.wcu-item:hover {
  border-color: var(--color-primary);
  transform: translateX(8px);
}

.wcu-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.wcu-check svg {
  width: 14px;
  height: 14px;
  fill: var(--color-dark);
}

.wcu-item p {
  color: var(--color-white);
  font-size: 15px;
  font-weight: 500;
}

.wcu-image {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.wcu-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* ---- CONTACT SECTION ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.contact-map {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  height: 100%;
  min-height: 400px;
  background: var(--color-darker);
  border: 1px solid var(--color-border);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: block;
}

.map-link {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--color-primary);
  color: var(--color-dark) !important;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
  z-index: 10;
}

.map-link:hover {
  background: var(--color-white);
  transform: translateY(-3px);
  text-decoration: none !important;
}

.map-link svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-dark);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px;
  background: rgba(180, 151, 99, 0.06);
  border: 1px solid rgba(180, 151, 99, 0.1);
  border-radius: 14px;
  transition: var(--transition);
}

.contact-item:hover {
  border-color: var(--color-primary);
}

.contact-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--color-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--color-dark);
}

.contact-item h4 {
  color: var(--color-white);
  font-size: 16px;
  margin-bottom: 6px;
  font-family: var(--font-body);
  font-weight: 600;
}

.contact-item p {
  font-size: 14px;
  /* line-height: 1.7; */
}

.contact-item a {
  color: var(--color-primary);
}

.contact-item a:hover {
  text-decoration: underline;
}



/* ---- FOOTER ---- */
.footer {
  background: var(--color-darker);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.5fr 0.2fr 0.2fr 0.4fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--color-border);
}

.footer-about p {
  margin: 16px 0 24px;
  font-size: 14px;
  /* line-height: 1.8; */
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.footer-social a svg {
  width: 16px;
  height: 16px;
  fill: var(--color-white);
}

.footer h4 {
  color: var(--color-white);
  margin-bottom: 24px;
  font-family: var(--font-body);
  font-weight: 600;
  text-align: -webkit-center;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
  list-style-type: disc;
}

.footer-links-grid li {
  white-space: nowrap;
}

/* .footer-product-col {
  text-align: center;
} */

/* .footer-product-col .footer-links-grid {
  justify-content: center;
} */

.footer-product-col .footer-links-grid li {
  text-align: left;
}

.footer-links a {
  font-size: 14px;
  color: var(--color-text);
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  fill: var(--color-primary);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: #666;
}

/* ---- SCROLL TO TOP ---- */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--color-primary);
  color: var(--color-dark);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 99;
  box-shadow: 0 4px 15px rgba(180, 151, 99, 0.3);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-4px);
}

.scroll-top svg {
  width: 20px;
  height: 20px;
}

/* ---- ANIMATIONS ---- */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
  }

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

  .hero-desc {
    margin: 0 auto 36px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    flex: 0 0 auto;
    max-width: 360px;
  }

  .hero-stats {
    justify-content: center;
  }

  .about-grid,
  .wcu-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(17, 17, 17, 0.98);
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    backdrop-filter: blur(20px);
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero-image {
    display: none;
  }

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

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

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

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

  .form-row {
    flex-direction: column;
  }

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

  .section {
    padding: 70px 0;
  }
}

@media (max-width: 480px) {
  .cert-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
}
