/* ============================================
   HORIZONE WOOD TIMBER — Main Stylesheet
   ============================================ */

/* ---- CSS Custom Properties ---- */
:root {
  /* Colors */
  --color-dark-green: #2c3e2d;
  --color-dark-green-deep: #1a2b1b;
  --color-gold: #dcb14f;
  --color-gold-hover: #c9a043;
  --color-gold-light: #f0d98c;
  --color-warm-beige: #f5f0e8;
  --color-warm-cream: #faf7f2;
  --color-cream-light: #f0ebe1;
  --color-text-dark: #202236;
  --color-text-body: #555555;
  --color-text-muted: #888888;
  --color-white: #ffffff;
  --color-dark: #202236;
  --color-dark-footer: #151827;
  --color-border: #e5ddd0;
  --color-card-shadow: rgba(32, 34, 54, 0.08);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'DM Sans', 'Segoe UI', Tahoma, sans-serif;

  /* Spacing */
  --section-padding: 100px 0;
  --container-max: 1340px;
  --container-padding: 0 24px;

  /* Transitions */
  --transition-fast: 0.25s ease;
  --transition-base: 0.35s ease;
  --transition-slow: 0.5s ease;
  --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.15);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text-body);
  background-color: var(--color-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

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

/* ---- Utility Classes ---- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
}

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

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

.text-white-70 {
  color: rgba(255, 255, 255, 0.7);
}

.section-padding {
  padding: var(--section-padding);
}

.mt-60 {
  margin-top: 60px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  cursor: pointer;
  border: 2px solid transparent;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin: 0 auto;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.5s ease;
  z-index: -1;
}

.btn:hover::after {
  left: 100%;
}

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

.btn-gold:hover {
  background-color: var(--color-gold-hover);
  border-color: var(--color-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(220, 177, 79, 0.4);
}

.btn-dark {
  background-color: var(--color-dark);
  color: var(--color-white);
  border-color: var(--color-dark);
}

.btn-dark:hover {
  background-color: var(--color-dark-green);
  border-color: var(--color-dark-green);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(32, 34, 54, 0.3);
}

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

.btn-outline-white:hover {
  background-color: var(--color-white);
  color: var(--color-dark);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1rem;
}

/* ---- Section Tags & Headings ---- */
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 16px;
  position: relative;
}

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

.section-title {
  font-size: 2.8rem;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.title-underline {
  width: 60px;
  height: 3px;
  background: var(--color-gold);
  margin-bottom: 24px;
  border-radius: 2px;
}

.title-underline.center {
  margin-left: auto;
  margin-right: auto;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 600px;
  line-height: 1.8;
}

.text-center .section-desc {
  margin-left: auto;
  margin-right: auto;
}

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

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--transition-base);
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.site-header.scrolled .main-nav {
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
}

.site-header.scrolled .nav-links a {
  color: var(--color-dark);
}

.site-header.scrolled .nav-links a.active,
.site-header.scrolled .nav-links a:hover {
  color: var(--color-gold);
}

.site-header.scrolled .hamburger span {
  background-color: var(--color-dark);
}

/* Header Top Bar */
.header-top {
  background-color: var(--color-dark);
  padding: 8px 0;
  transition: all var(--transition-base);
  overflow: hidden;
  max-height: 40px;
}

.site-header.scrolled .header-top {
  max-height: 0;
  padding: 0;
  opacity: 0;
}

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

.header-top-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-top-left a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition-fast);
}

.header-top-left a:hover {
  color: var(--color-gold);
}

.header-top-left .divider {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.7rem;
}

.header-top-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-top-right a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  transition: color var(--transition-fast);
}

.header-top-right a:hover {
  color: var(--color-gold);
}

/* Main Nav */
.main-nav {
  background-color: transparent;
  padding: 16px 0;
  transition: all var(--transition-base);
}

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

/* Logo */
.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 1001;
  width: 300px;
}

.logo-main {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: 4px;
  line-height: 1;
  transition: color var(--transition-base);
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--color-gold);
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-top: 2px;
  transition: color var(--transition-base);
}

.site-header.scrolled .logo-main {
  color: var(--color-dark);
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition-fast);
}

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

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

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

.nav-cta-mobile {
  display: none;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-white);
  transition: all var(--transition-base);
  border-radius: 2px;
}

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

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

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

.site-header.scrolled .hamburger span {
  background-color: var(--color-dark);
}

/* Header Accent Line */
.header-accent-line {
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light), var(--color-gold));
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.slides-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s ease;
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease-out;
  will-change: transform;
}

.slide.active .slide-bg {
  transform: scale(1);
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(26, 43, 27, 0.85) 0%,
    rgba(44, 62, 45, 0.6) 50%,
    rgba(26, 43, 27, 0.75) 100%
  );
  z-index: 1;
}

.slide-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-top: 90px;
  text-align:center;
}

.slide-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 20px;
  padding-bottom: 0;
}

.slide-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.slide-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 36px;
  /*max-width: 560px;*/
}

.slide-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Slider Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  color: var(--color-white);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.slider-arrow:hover {
  background: var(--color-gold);
  color: var(--color-dark);
  border-color: var(--color-gold);
}

.slider-prev {
  left: 30px;
}

.slider-next {
  right: 30px;
}

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all var(--transition-base);
  border: 2px solid transparent;
}

.dot.active {
  background: var(--color-gold);
  border-color: var(--color-gold);
  transform: scale(1.2);
}

.dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 90px;
  right: 40px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  writing-mode: vertical-lr;
}

.scroll-arrow {
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ============================================
   HERO VIDEO (Replaces Image Slider Background)
   - video fills the hero section like the old slide-bg did
   - object-fit: cover keeps it responsive on all screen sizes
   - muted + autoplay + loop + playsinline set in HTML for autoplay to work
   ============================================ */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  background-color: #1a2b1b; /* fallback color while video loads */
}

/* Older browsers that don't support object-fit: at least fill the area */
.hero-video:not([src]) {
  background-image: url('images/slide1.jpg');
  background-size: cover;
  background-position: center;
}

/* Slider arrows & dots are no longer used (single video, no slides).
   Force-hide them in case any markup remains. */
.slider-arrow,
.slider-dots {
  display: none !important;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  background-color: var(--color-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-img-wrapper img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform var(--transition-slow);
}

.about-img-wrapper:hover img {
  transform: scale(1.03);
}

.about-img-accent {
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 200px;
  height: 200px;
  border: 4px solid var(--color-gold);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about-experience-badge {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background-color: var(--color-gold);
  color: var(--color-dark);
  padding: 24px 20px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

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

.exp-text {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.4;
}

.about-content .section-title {
  font-size: 2.5rem;
}

.about-text {
  margin-bottom: 16px;
  color: var(--color-text-body);
  line-height: 1.8;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: var(--color-dark);
}

.about-feature-item i {
  color: var(--color-gold);
  font-size: 1.1rem;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
  background-color: var(--color-dark-green);
  background-image: 
    radial-gradient(ellipse at 20% 50%, rgba(220, 177, 79, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(220, 177, 79, 0.03) 0%, transparent 50%);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  animation-delay: var(--delay, 0s);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
  transform: scaleX(0);
  transition: transform var(--transition-base);
  transform-origin: left;
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-hover));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform var(--transition-base);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-icon i {
  font-size: 1.5rem;
  color: var(--color-dark);
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-white);
  margin-bottom: 12px;
}

.service-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products-section {
  background-color: var(--color-warm-cream);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  animation-delay: var(--delay, 0s);
}

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

.product-image {
  position: relative;
  overflow: hidden;
  height: 260px;
}

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

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

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 43, 27, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}

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

.product-info {
  padding: 24px;
}

.product-title {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--color-dark);
}

.product-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ============================================
   STATS / COUNTER SECTION
   ============================================ */
.stats-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.stats-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://images.unsplash.com/photo-1522413452208-996ff3f3e740?w=1600&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.stats-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(26, 43, 27, 0.92) 0%,
    rgba(44, 62, 45, 0.88) 100%
  );
}

.stats-inner {
  position: relative;
  z-index: 2;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.stat-item {
  text-align: center;
  padding: 20px;
}

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

.stat-suffix {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-gold);
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 8px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-choose-section {
  background-color: var(--color-white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.why-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform var(--transition-slow);
}

.why-image:hover img {
  transform: scale(1.02);
}

.why-content .section-title {
  font-size: 2.4rem;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 36px;
}

.why-feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why-feature-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--color-warm-beige), var(--color-cream-light));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.why-feature-item:hover .why-feature-icon {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-hover));
}

.why-feature-icon i {
  font-size: 1.3rem;
  color: var(--color-gold);
  transition: color var(--transition-base);
}

.why-feature-item:hover .why-feature-icon i {
  color: var(--color-dark);
}

.why-feature-text h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--color-dark);
}

.why-feature-text p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
  background-color: var(--color-warm-beige);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  position: relative;
  animation-delay: var(--delay, 0s);
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--color-gold);
  opacity: 0.15;
  position: absolute;
  top: 10px;
  left: 24px;
  line-height: 1;
}

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

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.testimonial-stars i {
  color: var(--color-gold);
  font-size: 0.85rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--color-text-body);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
  border: none;
  padding: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--color-gold);
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 2px;
}

.author-info span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://images.unsplash.com/photo-1610769108626-e05369d7bc2e?w=1600&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(26, 43, 27, 0.93) 0%,
    rgba(44, 62, 45, 0.88) 50%,
    rgba(26, 43, 27, 0.93) 100%
  );
}

.cta-inner {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 2.8rem;
  color: var(--color-white);
  margin-bottom: 16px;
}

.cta-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

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

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background-color: var(--color-dark-footer);
  color: rgba(255, 255, 255, 0.7);
}

.footer-main {
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
  gap: 40px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.footer-logo-main {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: 3px;
  line-height: 1;
}

.footer-logo-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--color-gold);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-top: 3px;
}

.footer-about {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 24px;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  transition: all var(--transition-base);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-social a:hover {
  background: var(--color-gold);
  color: var(--color-dark);
  border-color: var(--color-gold);
  transform: translateY(-3px);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-white);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

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

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

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

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

.footer-contact li {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  align-items: flex-start;
}

.footer-contact i {
  color: var(--color-gold);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition-fast);
}

.footer-contact a:hover {
  color: var(--color-gold);
}

.footer-contact span {
  font-size: 0.88rem;
  line-height: 1.6;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   WHATSAPP FLOAT BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all var(--transition-base);
  animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
  color: var(--color-white);
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1); }
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 34px;
  width: 44px;
  height: 44px;
  background: var(--color-dark-green);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-base);
  border: 2px solid var(--color-gold);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--color-gold);
  color: var(--color-dark);
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: var(--delay, 0s);
}

.reveal-up {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
  opacity: 1;
  transform: translate(0);
}

/* Hero slide animations */
.animate-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.slide.active .animate-fade {
  opacity: 1;
  transform: translateY(0);
}

.slide.active .animate-fade:nth-child(1) { transition-delay: 0.2s; }
.slide.active .animate-fade:nth-child(2) { transition-delay: 0.4s; }
.slide.active .animate-fade:nth-child(3) { transition-delay: 0.6s; }
.slide.active .animate-fade:nth-child(4) { transition-delay: 0.8s; }

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

/* Large desktop and below (max 1200px) */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .services-grid .service-card:nth-child(4),
  .services-grid .service-card:nth-child(5) {
    grid-column: span 1;
  }

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

/* Tablet landscape (max 992px) */
@media (max-width: 992px) {
  :root {
    --section-padding: 80px 0;
  }

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

  /* Navigation - Mobile Menu */
  .nav-cta-desktop {
    display: none;
  }

  .nav-cta-mobile {
    display: block;
    margin-top: 16px;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: var(--color-dark-footer);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 36px 36px;
    gap: 0;
    transition: right var(--transition-smooth);
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.3);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    padding: 14px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

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

  .nav-links a::after {
    display: none;
  }

  /* Hero */
  .slide-content h1 {
    font-size: 2.8rem;
  }

  .slider-arrow {
    width: 44px;
    height: 44px;
    font-size: 0.85rem;
  }

  .slider-prev { left: 16px; }
  .slider-next { right: 16px; }

  .scroll-indicator {
    display: none;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-img-wrapper img {
    height: 400px;
  }

  .about-content .section-title {
    font-size: 2.2rem;
  }

  .about-experience-badge {
    left: 20px;
    bottom: 20px;
  }

  /* Services */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid .service-card:nth-child(5) {
    grid-column: span 2;
    max-width: 50%;
    margin: 0 auto;
  }

  /* Products */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .stat-number {
    font-size: 2.8rem;
  }

  /* Why Choose */
  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-image img {
    height: 400px;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid .testimonial-card:nth-child(3) {
    grid-column: span 2;
    max-width: 50%;
    margin: 0 auto;
  }

  /* CTA */
  .cta-title {
    font-size: 2.2rem;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

/* Tablet portrait (max 768px) */
@media (max-width: 768px) {
  :root {
    --section-padding: 70px 0;
  }

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

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

  /* Header Top - hide on mobile */
  .header-top {
    display: none;
  }

  /* Hero */
  .hero-slider {
    min-height: 550px;
  }

  .slide-content h1 {
    font-size: 2.2rem;
  }

  .slide-content p {
    font-size: 0.95rem;
    margin-bottom: 28px;
  }

  .slide-buttons .btn {
    padding: 12px 24px;
    font-size: 0.85rem;
  }

  /* About */
  .about-experience-badge {
    left: 10px;
    bottom: 10px;
    padding: 16px 14px;
  }

  .exp-number {
    font-size: 2rem;
  }

  .about-img-accent {
    display: none;
  }

  .about-content .section-title {
    font-size: 1.9rem;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .services-grid .service-card:nth-child(5) {
    grid-column: span 2;
    max-width: 100%;
  }

  .service-card {
    padding: 28px 20px;
  }

  .service-icon {
    width: 56px;
    height: 56px;
  }

  .service-icon i {
    font-size: 1.2rem;
  }

  /* Products */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .product-image {
    height: 200px;
  }

  .product-info {
    padding: 18px;
  }

  /* Stats */
  .stats-section {
    padding: 60px 0;
  }

  .stat-number {
    font-size: 2.4rem;
  }

  .stat-suffix {
    font-size: 2rem;
  }

  /* Why Choose */
  .why-content .section-title {
    font-size: 1.8rem;
  }

  .why-image img {
    height: 320px;
  }

  .why-feature-item {
    gap: 14px;
  }

  .why-feature-icon {
    width: 48px;
    height: 48px;
  }

  .why-feature-icon i {
    font-size: 1.1rem;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid .testimonial-card:nth-child(3) {
    grid-column: span 1;
    max-width: 100%;
  }

  .testimonial-card {
    padding: 28px;
  }

  /* CTA */
  .cta-section {
    padding: 70px 0;
  }

  .cta-title {
    font-size: 1.8rem;
  }

  .cta-text {
    font-size: 0.95rem;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-main {
    padding: 60px 0 30px;
  }

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

/* Mobile (max 480px) */
@media (max-width: 480px) {
  :root {
    --section-padding: 60px 0;
    --container-padding: 0 16px;
  }

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

  .section-tag {
    font-size: 0.7rem;
    letter-spacing: 2px;
  }

  .section-desc {
    font-size: 0.95rem;
  }

  /* Hero */
  .hero-slider {
    min-height: 500px;
    height: 100svh;
  }

  .slide-content {
    padding-top: 60px;
  }

  .slide-content h1 {
    font-size: 1.8rem;
  }

  .slide-content p {
    font-size: 0.88rem;
    margin-bottom: 24px;
  }

  .slide-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .slide-buttons .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 0.8rem;
  }

  .slider-dots {
    bottom: 24px;
  }

  .dot {
    width: 10px;
    height: 10px;
  }

  /* About */
  .about-img-wrapper img {
    height: 300px;
  }

  .about-content .section-title {
    font-size: 1.6rem;
  }

  .about-features {
    margin-bottom: 24px;
  }

  .about-feature-item {
    font-size: 0.9rem;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .services-grid .service-card:nth-child(5) {
    grid-column: span 1;
    max-width: 100%;
  }

  .service-card {
    padding: 24px 20px;
  }

  /* Products */
  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-image {
    height: 220px;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stat-item {
    padding: 12px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-suffix {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  /* Why */
  .why-content .section-title {
    font-size: 1.5rem;
  }

  .why-image img {
    height: 260px;
  }

  .why-features {
    gap: 20px;
  }

  /* Testimonials */
  .testimonial-card {
    padding: 24px;
  }

  /* CTA */
  .cta-title {
    font-size: 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .cta-buttons .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }

  /* Buttons */
  .btn {
    padding: 12px 24px;
    font-size: 0.85rem;
  }

  .btn-lg {
    padding: 14px 28px;
    font-size: 0.9rem;
  }

  /* WhatsApp */
  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 20px;
    right: 20px;
    font-size: 1.5rem;
  }

  .back-to-top {
    bottom: 80px;
    right: 24px;
    width: 38px;
    height: 38px;
  }
}

/* ============================================
   CUSTOM SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-warm-cream);
}

::-webkit-scrollbar-thumb {
  background: var(--color-dark-green);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold);
}

/* ============================================
   SELECTION
   ============================================ */
::selection {
  background: var(--color-gold);
  color: var(--color-dark);
}

::-moz-selection {
  background: var(--color-gold);
  color: var(--color-dark);
}
