:root {
  --primary-color: #7A3E2B;      /* Warm Terracotta Brown */
  --secondary-color: #C97B63;    /* Soft Peach */
  --accent-color: #E6B07A;       /* Sand Gold */
  --text-dark: #2B2B2B;          /* Rich Dark */
  --text-light: #FFFFFF;
  --background-light: #FAF6F2;   /* Cream Cotton Feel */
  --border-light: #E8E2DC;

  /* Design tokens used throughout the site */
  --ivory: #FAF6F2;
  --charcoal: #2D2D2D;
  --gold: #E6B07A;
  --terracotta: #7A3E2B;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif; /* Set default font globally */
}

body {
  background: var(--background-light);
  color: var(--text-dark);
  line-height: 1.7;
}

/* TOP BAR */
.topbar {
  background: #2D2D2D;
  color: var(--text-light);
  font-size: 13px;
  padding: 10px 0;
  letter-spacing: 0.3px;
  border-top: 3px solid var(--accent-color);
}

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

.topbar-info a {
  color: var(--text-light);
  text-decoration: none;
  transition: 0.3s;
}

.topbar-info a:hover {
  color: var(--accent-color);
}

.topbar-right {
  display: flex;
  align-items: center;
}

.topbar-tagline {
  margin-right: 20px;
  opacity: 0.95;
  font-style: italic;
  font-size: 12px;
}

.topbar i {
  margin-right: 6px;
  color: var(--accent-color);
}

/* Social Icons */
.social-links a {
  color: var(--text-light);
  margin-left: 12px;
  font-size: 15px;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transition: 0.3s ease;
}

.social-links a:hover {
  background: var(--accent-color);
  color: #fff;
  transform: translateY(-2px);
}

/* HEADER */
.main-header {
  background: #fff;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

/* LOGO */
.logo {
  font-size: 26px;
  font-weight: 700;
  text-decoration: none;
  color: var(--text-dark);
}

.logo span {
  color: var(--accent-color);
}
.logo img {
  height: 80px;
  width: auto;
}

/* NAV MENU */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  padding: 10px 15px;
  transition: 0.3s ease;
  position: relative;
  letter-spacing: 0.3px;
}

.nav-menu a:hover {
  color: var(--accent-color);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 15px;
  background: var(--accent-color);
  transition: 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: calc(100% - 30px);
}

/* Header Search Bar */
.search-form {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 30px;
  padding: 2px 5px 2px 18px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.search-form:focus-within {
  border-color: var(--accent-color);
  box-shadow: 0 4px 15px rgba(122, 62, 43, 0.1);
}

.search-form input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 13px;
  width: 160px;
  color: var(--text-dark);
  transition: width 0.4s ease;
}

.search-form input:focus {
  width: 220px;
}

.search-form button {
  border: none;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.search-form button:hover {
  background: var(--accent-color);
  transform: scale(1.05);
}

/* Header Actions & CTA */
.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.btn-cta {
  background: var(--primary-color);
  color: white;
  padding: 10px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(122, 62, 43, 0.2);
}

.btn-cta:hover {
  background: var(--secondary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(122, 62, 43, 0.3);
}

/* DROPDOWN */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  list-style: none;
  min-width: 200px;
}

.dropdown-menu li a {
  display: block;
  padding: 10px;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* MOBILE MENU */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* RESPONSIVE */
@media(max-width: 768px) {

  .top-flex {
    flex-direction: column;
    gap: 5px;
    text-align: center;
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    display: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }

  .nav-menu.show {
    display: flex;
  }

  .nav-menu li {
    border-bottom: 1px solid #eee;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
  }
}

/* MODERN HERO SECTION */
.hero-modern {
  padding: 50px 0;
  background: linear-gradient(
      rgba(253, 250, 247, 0.85),
      rgba(253, 250, 247, 0.85)
    ),
    url('../img/banner.png');
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
}

.hero-badge {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(122, 62, 43, 0.08);
  color: var(--primary-color);
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 25px;
  border: 1px solid rgba(122, 62, 43, 0.1);
}

.hero-text-box h1 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 25px;
}

.hero-text-box h1 span {
  color: var(--primary-color);
  font-style: italic;
  font-weight: 400;
  font-family: "Josefin Sans", sans-serif;
}

.hero-text-box p {
  font-size: 18px;
  color: #555;
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 25px;
}

.btn-hero-main {
  background: var(--primary-color);
  color: #fff;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(122, 62, 43, 0.25);
}

.btn-hero-main:hover {
  background: var(--text-dark);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  color: #fff;
}

.btn-hero-link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}

.btn-hero-link:hover {
  color: var(--primary-color);
  gap: 15px;
}

/* Hero Image Organic Morphing */
.hero-img-container {
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.image-frame {
  position: relative;
  width: 90%;
  max-width: 500px;
  aspect-ratio: 1/1.1;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.2);
  animation: morphingShape 12s infinite alternate ease-in-out;
}

@keyframes morphingShape {
  0% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  50% { border-radius: 40% 60% 70% 30% / 50% 70% 30% 50%; }
  100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

.floating-trust-card {
  position: absolute;
  bottom: 10%;
  left: -20px;
  background: #fff;
  padding: 22px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  z-index: 10;
  border: 1px solid var(--border-light);
}

.floating-trust-card .stat {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 4px;
}

.floating-trust-card .label {
  font-size: 11px;
  font-weight: 700;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 991px) {
  .hero-modern { padding: 60px 0; text-align: center; }
  .hero-text-box p { margin: 0 auto 35px; }
  .hero-btns { justify-content: center; }
  .hero-img-container { justify-content: center; margin-top: 60px; }
  .floating-trust-card { left: 50%; transform: translateX(-50%); bottom: -30px; }
}

/* Section */
.section {
  padding: 40px 0;
}

.section h2 {
  text-align: center; /* Keep centered for general sections */
  font-family: "Playfair Display", serif;
  margin-bottom: 30px;
}

/* UNIQUE CATEGORY SHOWCASE */
.fabric-categories {
  padding: 50px 0;
  background: var(--background-light);
}

.category-header {
  position: relative;
}

.category-pretitle {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 13px;
  font-weight: 700;
  color: var(--secondary-color);
}

.category-main-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--text-dark);
}

.category-main-title span {
  color: var(--primary-color);
  font-style: italic;
}

.title-divider {
  width: 80px;
  height: 3px;
  background: var(--accent-color);
  margin: 15px auto 0;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.category-card {
  position: relative;
  background: #fff;
  padding: 15px;
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 15px 35px rgba(122, 62, 43, 0.08);
}

.category-badge {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 5;
  background: var(--accent-color);
  color: #fff;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.category-img-box {
  position: relative;
  width: 100%;
  height: 300px; /* FIXED CONTAINER SIZE */
  background-color: var(--background-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  overflow: hidden;
}

.category-img-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain; /* ENTIRE FABRIC VISIBLE */
  transition: transform 0.5s ease;
}

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

.category-info {
  padding: 20px 10px 10px;
  text-align: center;
}

.category-info h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.btn-category-action {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 14px;
  position: relative;
  padding-bottom: 4px;
}

.btn-category-action::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 40px;
  height: 2px;
  background: var(--accent-color);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.category-card:hover .btn-category-action::after {
  width: 100%;
}

/* PREMIUM TRUST BAR SECTION */
.premium-trust-bar {
  background: #ffffff;
  padding: 40px 0;
  border-bottom: 1px solid var(--border-light);
  position: relative;
  z-index: 10;
  margin-top: -30px; /* Overlap effect */
  border-radius: 50px 50px 0 0;
  box-shadow: 0 -15px 30px rgba(0,0,0,0.03);
  overflow: hidden;
}

.trust-marquee {
  width: 100%;
  display: flex;
}

.trust-track {
  display: flex;
  align-items: center;
  gap: 30px;
  animation: trustScroll 25s linear infinite;
}

.trust-card {
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 280px;
  padding: 20px 25px;
  background: var(--background-light);
  border-radius: 20px;
  border: 1px solid rgba(122, 62, 43, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  flex-shrink: 0;
}

.trust-card:hover {
  background: #fff;
  border-color: var(--accent-color);
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(122, 62, 43, 0.12);
}

.trust-icon-container {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(122, 62, 43, 0.15);
  flex-shrink: 0;
  transition: 0.3s;
}

.trust-card:hover .trust-icon-container {
  transform: rotate(-8deg);
}

.trust-icon-container i {
  font-size: 24px;
  color: #fff;
}

.trust-info h6 {
  margin: 0;
  font-weight: 600;
  font-size: 16px;
  color: var(--text-dark);
  letter-spacing: 0.2px;
}

.trust-info p {
  margin: 0;
  font-size: 13px;
  color: #888;
  line-height: 1.2;
  margin-top: 2px;
}

@keyframes trustScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-100% - 15px)); }
}

@media (max-width: 768px) {
  .premium-trust-bar { 
    padding: 35px 0; 
    border-radius: 35px 35px 0 0;
    background: linear-gradient(to bottom, #fff5f2, #ffffff); /* Warm Mobile Background */
  }
  
  .trust-card { 
    min-width: 250px; 
    padding: 15px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 123, 99, 0.2); /* Peach Border */
  }

  .trust-card:nth-child(odd) i { color: var(--accent-color); }
  .trust-card:nth-child(even) .trust-icon-container { background: var(--accent-color); }
}

.about-banner {
  width: 100%;
  height: 350px; /* Slightly taller banner */
  background: url('../../assets/img/about1.png') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

/* Dark overlay for text readability */
.banner-overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.55), rgba(0,0,0,0.25));
  display: flex;
  align-items: center;
}

/* Text Styling */
.about-banner h1 {
  color: white;
  font-size: 48px; /* Larger heading for impact */
  font-weight: 600;
  margin-bottom: 6px;
}

.about-banner h1 span {
  color: var(--accent-color);
  font-family: "Josefin Sans", sans-serif;
}

.about-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  max-width: 520px;
}

/* MOBILE RESPONSIVE */
@media(max-width: 768px) {
  .about-banner {
    height: 250px;
  }

  .about-banner h1 {
    font-size: 28px;
  }

  .about-banner p {
    font-size: 14px;
  }
}

/* Story */
/* PREMIUM ARTISAN SECTION */
.artisan-section {
  background: #ffffff;
  padding: 50px 0;
  overflow: hidden;
}

/* Image Stack Layout */
.artisan-image-stack {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

.main-image img {
  width: 100%;
  border-radius: 40px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.overlay-image {
  position: absolute;
  bottom: -40px;
  right: -30px;
  width: 50%;
  border: 10px solid #fff;
  border-radius: 30px;
  z-index: 2;
}
.floating-experience {
  position: absolute;
  top: 40px;
 
  left: -25px;
  background: var(--primary-color);
  color: #fff;
  padding: 15px 25px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(122, 62, 43, 0.3);
  z-index: 3;
  text-align: center;
}

.floating-experience .number {
  display: block;
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
}

.floating-experience .text {
  font-size: 11px;
 
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Content Side */
.artisan-content .accent-label {
  color: var(--secondary-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 13px;
  display: block;
  margin-bottom: 12px;
}

.artisan-content .display-heading {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  font-family: "Josefin Sans", sans-serif;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.artisan-content .display-heading span {
  color: var(--primary-color);
  font-family: "Josefin Sans", sans-serif;
  font-style: italic;
  font-weight: 400;
}

.artisan-content .intro-p {
  font-size: 18px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 35px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.feature-box {
  display: flex;
  gap: 15px;
}

.icon-wrap {
  width: 50px;
  height: 50px;
  background: var(--background-light);
  color: var(--primary-color);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  border: 1px solid var(--border-light);
  transition: 0.3s ease;
}

.feature-box h5 {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 4px;
}

.feature-box p {
  font-size: 13px;
  color: #888;
  margin: 0;
  line-height: 1.4;
}

.btn-discover{
  background: var(--primary-color);
  color: #fff;
  padding: 16px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s;
 
ver {
  box-shadow: 0 10px 20px rgba(122, 62, 43, 0.2);
}
}
.btn-discover:hover {
  background: var(--text-dark);
  color: #fff;
  transform: translateY(-3px);
}

.btn-enquire-link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 700;
  margin-left: 25px;
  transition: 0.3s;
}

.btn-enquire-link:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

/* MOBILE REFINEMENT */
@media (max-width: 768px) {
  .artisan-section { padding: 60px 0; }
  .artisan-image-stack { margin-bottom: 70px; }
  .overlay-image { right: -10px; border-width: 5px; }
  .floating-experience { top: 20px; left: -10px; padding: 10px 15px; }
  .floating-experience .number { font-size: 24px; }
  .feature-grid { grid-template-columns: 1fr; }
  .btn-wrap { display: flex; flex-direction: column; gap: 15px; text-align: center; }
  .btn-enquire-link { margin-left: 0; }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .category-card {
    padding: 10px;
  }

  .category-img-box {
    height: 180px;
    padding: 15px;
  }

  .section-banner {
    height: 220px;
  }

  .banner-content h2 {
    font-size: 22px;
  }
  .banner-content p {
    font-size: 14px;
  }
}

.section-banner {
  height: 320px;
  background: url('../img/Etsy_banner_5.webp') center/cover no-repeat;
  position: relative;
  margin-bottom: 50px;
  border-radius: 12px;
  overflow: hidden;
}

/* Soft cotton overlay */
.section-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(122, 62, 43, 0.75) 0%,
    rgba(201, 123, 99, 0.45) 50%,
    rgba(250, 246, 242, 0.1) 100%
  );
}

/* Overlay container */
.banner-overlay {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

/* Content */
.banner-content {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  color: var(--text-light);
}

/* Heading */
.banner-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

/* Paragraph */
.banner-content p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 20px;
  max-width: 500px;
}

/* Button */
.banner-btn {
  display: inline-block;
  background: var(--accent-color);
  color: #fff;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.banner-btn:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .section-banner {
    height: 240px;
  }

  .banner-content h2 {
    font-size: 24px;
  }

  .banner-content p {
    font-size: 14px;
  }
}
/*---------------------------------------------
new arrival
-------------------------------------------------*/
/******** NEW ARRIVALS ********/
.new-arrivals {
  padding: 20px 0;
  background: var(--background-light);
  font-family: 'Poppins', sans-serif;
}

.section-head {
  text-align: center;
  margin-bottom: 45px;
}

.section-head h2 {
  font-size: 38px;
  font-weight: 700;
  color: var(--text-dark);
  font-family: "Josefin Sans", sans-serif;
}

.section-head p {
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 700;
  margin-top: 5px;
}

/******** SLIDER ********/
.slider-wrapper {
  position: relative;
}

.product-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 5px 50px; 
}

.product-slider::-webkit-scrollbar {
  display: none;
}

/******** PRODUCT CARD ********/
.product-card {
  min-width: 320px; /* Spatially larger for a premium feel */
  background: #fff;
  border-radius: 0; /* Modern clean edges */
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  border: 1px solid var(--border-light);
}

.product-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(122, 62, 43, 0.12);
  border-color: var(--accent-color);
}

/* Badge for New Arrivals */
.product-card .badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--primary-color);
  color: #fff;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  z-index: 5;
}

/******** IMAGE BOX ********/
.img-box {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  background: #f3f3f3;
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

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

/******** BUTTON GROUP ********/
.action-buttons {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  opacity: 0;
  transition: 0.3s ease;
}

.product-card:hover .action-buttons {
  opacity: 1;
}

/******** BUTTON STYLE ********/
/* BUTTON GROUP CENTER */
.action-buttons {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  display: flex;
  justify-content: center;
  opacity: 0;
  transition: 0.3s ease;
}

/* SHOW BUTTON ON HOVER */
.product-card:hover .action-buttons {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* VIEW DETAILS BUTTON ONLY */
.view-detail {
  background: linear-gradient(135deg, #f4a261, #e76f51);
  color: white;
  font-size: 13px;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  transition: 0.25s ease;
  white-space: nowrap;
}

/* HOVER EFFECT */
.view-detail:hover {
  transform: scale(1.07);
  background: black;
  color: white;
}

/* REMOVE WHATSAPP BUTTON */
.whatsapp-btn {
  display: none;
}

/******** TEXT ********/
.product-card h3 {
  font-size: 14px;
  margin: 12px 12px 6px;
  line-height: 1.4;
  font-weight: 600;
  color: #222;
}

.price {
  font-size: 14px;
  font-weight: 700;
  margin: 0 12px 14px;
}

.price span {
  text-decoration: line-through;
  color: #999;
  margin-right: 6px;
}

/******** ARROWS ********/
.slide-btn {
  position: absolute;
  top: 40%;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: var(--primary-color);
  color: #fff;
  font-size: 20px;
  box-shadow: 0 8px 25px rgba(122, 62, 43, 0.3);
  cursor: pointer;
  z-index: 9;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-btn:hover {
  background: var(--text-dark);
  transform: scale(1.1);
}

.prev { left: -18px; }
.next { right: -18px; }

/******** VIEW MORE BUTTON ********/
.view-more-container {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

.btn-view-more {
  display: inline-block;
  padding: 15px 50px;
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 14px;
  transition: all 0.4s ease;
  text-decoration: none;
}

.btn-view-more:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(122, 62, 43, 0.25);
}

/******** VIEW MORE BUTTON ********/
.view-more-container {
  text-align: center;
  margin-top: 20px;
}

.btn-view-more {
  display: inline-block;
  padding: 14px 45px;
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  transition: all 0.4s ease;
  text-decoration: none;
}

.btn-view-more:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(122, 62, 43, 0.2);
}

/******** TABLET ********/
@media (max-width: 992px) {
  .product-card {
    min-width: calc(33.33% - 14px);
  }
}

/******** MOBILE ********/
@media (max-width: 768px) {

  .product-slider {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    overflow: hidden;
  }

  .product-card {
    min-width: 100%;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
  }

  .slide-btn {
    display: none;
  }

  /* BUTTON CONTAINER */
  .action-buttons {
    opacity: 0;
    bottom: 14px;
    display: flex;
    justify-content: center;
    width: 100%;
    position: absolute;
    transition: 0.25s ease;
  }

  /* SHOW ON HOVER */
  .product-card:hover .action-buttons {
    opacity: 1;
  }

  /* VIEW DETAILS BUTTON */
  .view-detail {
    font-size: 13px;
    padding: 10px 18px;
    border-radius: 30px;
    background: linear-gradient(135deg, #f4a261, #e76f51);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 5px 14px rgba(0,0,0,0.18);
    transform: translateY(10px);
    transition: 0.25s ease;
  }

  /* SMOOTH POP EFFECT */
  .product-card:hover .view-detail {
    transform: translateY(0);
  }

  /* HIDE WHATSAPP */
  .whatsapp-btn {
    display: none;
  }
}
.faq-premium {
  background: #F2EBE7; /* Soft Premium Linen Tone */
  padding: 50px 0;
}

.faq-premium .small-title {
  display: block;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--secondary-color);
  margin-bottom: 12px;
}

.faq-premium .main-title {
  font-size: clamp(32px, 5vw, 42px);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.faq-premium .subtitle {
  color: #666;
  max-width: 600px;
  margin: 0 auto 60px;
  font-size: 16px;
  line-height: 1.6;
}

/* FAQ Search Bar */
.faq-search-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.faq-search-box {
  position: relative;
  background: #fff;
  border-radius: 50px;
  padding: 5px 5px 5px 25px;
  display: flex;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border: 1px solid var(--border-light);
  transition: 0.3s;
}

.faq-search-box:focus-within {
  border-color: var(--primary-color);
  box-shadow: 0 15px 35px rgba(122, 62, 43, 0.1);
}

.faq-search-box i {
  color: var(--primary-color);
  font-size: 18px;
  margin-right: 15px;
}

.faq-search-box input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 15px;
  color: var(--text-dark);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.faq-card:hover {
  border-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(122, 62, 43, 0.05);
}

.faq-card.active {
  border-color: var(--primary-color);
  box-shadow: 0 15px 40px rgba(122, 62, 43, 0.1);
}

.faq-question {
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.faq-question p {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  transition: color 0.3s ease;
  line-height: 1.4;
}

.faq-card.active .faq-question p {
  color: var(--primary-color);
}

.faq-toggle {
  width: 36px;
  height: 36px;
  background: var(--background-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  transition: all 0.4s ease;
  flex-shrink: 0;
}

.faq-toggle i {
  font-size: 14px;
  transition: transform 0.4s ease;
}

.faq-card.active .faq-toggle {
  background: var(--primary-color);
  color: #fff;
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 30px;
}

.faq-card.active .faq-answer {
  max-height: 1000px;
  padding-bottom: 30px;
}

.faq-answer p {
  margin: 0;
  color: #555;
  line-height: 1.8;
  font-size: 15px;
  border-top: 1px solid var(--border-light);
  padding-top: 20px;
}

/* Support CTA Card */
.support-card {
  background: #fff;
  padding: 40px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  gap: 30px;
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid var(--border-light);
  box-shadow: 0 10px 40px rgba(0,0,0,0.04);
}

.support-icon {
  width: 70px;
  height: 70px;
  background: var(--background-light);
  color: var(--primary-color);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  flex-shrink: 0;
}

.support-text h4 {
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.support-text p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.btn-support {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid var(--accent-color);
  transition: 0.3s;
}

.btn-support:hover {
  color: var(--text-dark);
  border-color: var(--primary-color);
}

@media (max-width: 768px) {
  .faq-premium { padding: 60px 0; }
  .support-card { flex-di  
  .faq-question p { font-size: 16px; }
  .faq-answer { padding: 0 20px; }
  .faq-card.active .faq-answer { padding-bottom: 25px; }
  .faq-toggle { width: 32px; height: 32px; }
}
}

.bulk-section {
  padding: 50px 0;
  background: rgba(250,247,242,0.9);
  font-family: 'Poppins', sans-serif;
}

.bulk-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,0.1);
}

/* LEFT IMAGE */
.bulk-image {
  width: 55%;
  height: 360px;
}

.bulk-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RIGHT CARD */
.bulk-content {
  width: 45%;
  background: white;
  padding: 40px 36px;
}

.bulk-content h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 15px;
  color: #666;
  margin-bottom: 18px;
}

/* BULLET POINTS */
.bulk-points {
  list-style: none;
  padding: 0;
  margin-bottom: 18px;
}

.bulk-points li {
  font-size: 14.5px;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.bulk-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #c07a3f;
}

/* CONTACT ROW */
.bulk-contact {
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
  font-weight: 500;
}

/* RESPONSIVE */
@media(max-width: 992px){
  .bulk-wrapper {
    flex-direction: column;
  }

  .bulk-image,
  .bulk-content {
    width: 100%;
  }

  .bulk-image {
    height: 280px;
  }
}

@media(max-width: 600px){
  .bulk-content {
    padding: 26px 20px;
  }

  .bulk-content h2 {
    font-size: 22px;
  }
}

/*------------------------------------------------
About Section
-------------------------------------------------*/
.luxury-about {
  background: linear-gradient(135deg, #f9f7f3, #ffffff);
}

.image-stack-modern {
  position: relative;
  align-items: flex-start !important;
}

/* Main image stays top */
.main-image-wrapper {
  align-self: flex-start;
}

/* Secondary image aligned better */
.secondary-image-modern {
  position: absolute;
  top: 65%;
  right: 0;
  width: 60%;
}


.floating-glass-card {
  top: 16px !important;
  left: 16px !important;
  bottom: auto !important;
}
.action-buttons-modern {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 20px;
  flex-wrap: wrap;
}

/* Equal button sizing (Desktop) */
.action-buttons-modern a {
  min-width: 210px;
  justify-content: center;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
  .action-buttons-modern {
    flex-direction: column;
    align-items: stretch;
  }

  .action-buttons-modern a {
    width: 100%;
    min-width: unset;
    padding: 14px 20px;
    font-size: 15px;
  }
}



.floating-glass-card i {
  color: #7A3E2B;
  font-size: 22px;
}

.luxury-badge {
  display: inline-block;
  padding: 6px 14px;
  background: #7A3E2B;
  color: #fff;
  font-size: 13px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.luxury-title {
  font-weight: 800;
  line-height: 1.2;
}

.luxury-title span {
  color: #7A3E2B;
}

.timeline-modern {
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
}

.timeline-card {
  padding: 18px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.timeline-card:hover {
  transform: translateY(-6px);
}

.timeline-card span {
  font-weight: 700;
  color: #7A3E2B;
}

.timeline-card.highlight {
  background: linear-gradient(135deg, #CFAE70, #7A3E2B);
  color: #fff;
}

.timeline-card.highlight span {
  font-weight: 700;
  color: #000;
}

.btn-primary-luxury {
  background: #7A3E2B;
  color: #fff;
  padding: 12px 24px;
  border-radius: 999px;
}

.btn-outline-luxury {
  border: 2px solid #7A3E2B;
  padding: 12px 24px;
  border-radius: 999px;
}

.ls-1 { letter-spacing: 1px; }
.ls-2 { letter-spacing: 2px; }

.text-accent { color: var(--accent-color) !important; }

/*-------------------------------------------------
Contact Section
-------------------------------------------------*/
.themed-contact {
  background: #FAF7F2;
}

.contact-info-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(230, 176, 122, 0.3); /* Soft Gold border */
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  box-shadow: 0 10px 30px rgba(122, 62, 43, 0.03);
}

.contact-info-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-color);
  box-shadow: 0 20px 40px rgba(122, 62, 43, 0.06);
  background: linear-gradient(to bottom, #ffffff, #fffdfa);
}

.contact-info-card i {
  font-size: 42px;
  color: var(--primary-color);
  margin-bottom: 25px;
  display: inline-block;
}

.contact-info-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-dark);
  font-family: "Josefin Sans", sans-serif;
}

/* TITLE */
.contact-title {
  font-weight: 800;
  color: #2E2E2E;
}

.contact-subtitle {
  color: #6b6b6b;
}

/* MAP BOX */
.map-box {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.map-box iframe {
  filter: grayscale(0.2) contrast(1.1); /* Subtle premium map look */
}

/* CONTACT INFO STACK */
.contact-info-stack {
  padding: 18px;
  display: grid;
  gap: 14px;
}

.info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.info-item i {
  font-size: 20px;
  color: #C65A3A;
}

/* FORM */
.themed-form {
  background: #ffffff;
  padding: 45px;
  border-radius: 20px;
  border: 1px solid var(--border-light);
  box-shadow: 0 15px 45px rgba(0,0,0,0.04);
}

.themed-form h3 {
  font-family: "Josefin Sans", sans-serif;
  color: #2E2E2E;
}

/* INPUTS */
.themed-input {
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  padding: 14px 18px;
  background-color: #fdfdfd;
  transition: 0.3s;
}

.themed-input:focus {
  border-color: var(--accent-color);
  background-color: #fff;
  box-shadow: 0 0 0 4px rgba(230, 176, 122, 0.15);
}

/* BUTTON */
.btn-submit-themed {
  background: var(--primary-color);
  color: white;
  padding: 14px 35px;
  border-radius: 4px; /* More architectural premium feel */
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: none;
  transition: 0.3s;
  box-shadow: 0 6px 15px rgba(122, 62, 43, 0.15);
}

.btn-submit-themed:hover {
  background: #5A2B1D; /* Darker terracotta */
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

/*---------------------------------------------
Shop Section
--------------------------------------------*/
.shop-section {
  background: var(--background-light);
  padding: 40px 0;
}

.shop-header .badge-outline {
  display: inline-block;
  padding: 5px 15px;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.shop-header h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--text-dark);
  font-family: "Josefin Sans", sans-serif;
}

.shop-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 40px 0;
}

.filter-btn {
  padding: 12px 28px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  color: #666;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
  box-shadow: 0 10px 20px rgba(122, 62, 43, 0.15);
  transform: translateY(-2px);
}

#productGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.product-box {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover .product-box {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.06);
  border-color: var(--accent-color);
}

.product-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #f8f8f8;
}

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

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

.hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(45, 45, 45, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.4s ease;
  backdrop-filter: blur(2px);
}

.product-card:hover .hover-overlay {
  opacity: 1;
}

.btn-view-details {
  background: #fff;
  color: var(--text-dark);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-view-details:hover {
  background: var(--primary-color);
  color: #fff;
  transform: scale(1.05);
}

.product-info {
  padding: 25px 20px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-info .cat-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--secondary-color);
  font-weight: 700;
  margin-bottom: 8px;
  display: block;
}

.product-info h5 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.4;
  font-family: "Josefin Sans", sans-serif;
}

@media (max-width: 768px) {
  .shop-section { padding: 60px 0; }
  #productGrid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
  .product-info { padding: 15px 10px; }
  .product-info h5 { font-size: 14px; }
  .filter-btn { padding: 8px 18px; font-size: 12px; }
}
/*-------------------------------------------------
product detail page
-----------------------------------------------*/

/* PRODUCT DETAILS SECTION */
.product-details-section {
  background: var(--ivory);
  padding: 60px 20px;
}

/* CONTAINER */
.product-details-section .container {
  max-width: 1200px;
  margin: auto;
}

/* GRID LAYOUT */
.product-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* LEFT IMAGE */
.product-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  transition: transform 0.4s ease;
}

.product-image img:hover {
  transform: scale(1.04);
}

/* RIGHT INFO */
.product-info {
  color: var(--charcoal);
}

/* CATEGORY TAG */
.product-category {
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 14px;
  margin-bottom: 6px;
}

/* PRODUCT NAME */
.product-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 14px;
}

/* DESCRIPTION */
.product-description {
  line-height: 1.7;
  font-size: 15px;
  color: #555;
}

/* META DETAILS */
.product-meta {
  margin-top: 18px;
  display: grid;
  gap: 8px;
  font-size: 14px;
}

.product-meta strong {
  color: var(--charcoal);
}

/* ENQUIRY BUTTON */
.btn-enquiry {
  display: inline-block;
  margin-top: 24px;
  padding: 12px 28px;
  background: var(--terracotta);
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: 0.3s ease;
}

.btn-enquiry:hover {
  background: var(--charcoal);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .product-details-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-title {
    font-size: 26px;
  }

  .btn-enquiry {
    padding: 10px 22px;
    font-size: 13px;
  }
}




/* Footer */
/* ================= FOOTER ================= */
footer, .main-footer {
  background: linear-gradient(135deg, #231F1E, #2D2D2D);
  color: rgba(255, 255, 255, 0.9);
  padding: 70px 20px 30px;
  border-top: 3px solid var(--accent-color);
  position: relative;
  overflow: hidden;
}

/* subtle glow effect */
footer::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, var(--accent-color), transparent);
  opacity: 0.06;
  border-radius: 50%;
}

/* ================= GRID ================= */
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

/* ================= LOGO ================= */
.footer-logo img {
  height: 80px;
  margin-bottom: 12px;
  transition: 0.3s ease;
}

.footer-logo img:hover {
  transform: scale(1.05);
}

/* ================= TEXT ================= */
footer p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75); /* FIXED visibility */
  max-width: 260px;
}

/* ================= HEADINGS ================= */
footer h4 {
  color: var(--accent-color);
  font-size: 15px;
  margin-bottom: 15px;
  font-weight: 600;
  position: relative;
}

/* underline accent */
footer h4::after {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--accent-color);
  position: absolute;
  bottom: -6px;
  left: 0;
}

/* ================= LINKS ================= */
footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer ul li {
  margin-bottom: 10px;
}

footer a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s ease;
}

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

/* ================= CONTACT ================= */
.footer-contact ul {
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

footer i {
  color: var(--accent-color);
}

/* ================= SOCIAL ================= */
.footer-social {
  margin-top: 12px;
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.footer-social a:hover {
  background: var(--accent-color);
  color: #000;
  transform: translateY(-3px);
}

/* ================= FOOTER BOTTOM ================= */
.footer-bottom {
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  flex-wrap: wrap;
  gap: 10px;
}

/* brand highlight */
.footer-bottom strong {
  color: var(--accent-color);
}

/* credits */
.footer-bottom a {
  color: var(--secondary-color);
  font-weight: 600;
}

.footer-bottom a:hover {
  color: var(--accent-color);
}

/* ================= SCROLL TOP ================= */
.scroll-top {
  position: fixed;
  right: 18px;
  bottom: 20px;
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  color: #fff;
  border-radius: 50%;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 9999;
}

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

.scroll-top:hover {
  transform: translateY(-3px) scale(1.05);
}

/* ================= FIX HORIZONTAL SCROLL ================= */
body {
  overflow-x: hidden;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  footer h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  footer p {
    margin: auto;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}