/* ===== RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-dark: #1f2b33;
  --primary-orange: #f3b33d;
  --primary-orange-hover: #ffc107;
  --text-dark: #1e1e1e;
  --text-light: #4b5565;
  --bg-light: #fcfcfc;
  --bg-white: #ffffff;
  --border-light: #edf2f7;
  --footer-bg: #0f1a22;
  --footer-text: #cfdeed;
  --whatsapp-green: #25D366;
  --whatsapp-hover: #20b859;
  --call-blue: #007bff;
  --call-hover: #0056b3;
  --shadow-sm: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-md: 0 20px 30px -10px rgba(0,0,0,0.2);
  --shadow-lg: 0 24px 40px rgba(0,0,0,0.08);
  --border-radius-lg: 30px;
  --border-radius-md: 24px;
  --border-radius-sm: 12px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.5;
  scroll-behavior: smooth;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

/* ===== HEADER & NAVIGATION ===== */
.header {
  background: var(--primary-dark);
  color: white;
  padding: 0.8rem 0;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: var(--shadow-sm);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
}

.logo-img {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: #d9a74f;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.company-name {
  flex: 1;
  min-width: 0;
  line-height: 1.2;
}

.company-name h1 {
  font-size: clamp(1.2rem, 4vw, 1.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.company-name span {
  font-size: clamp(0.7rem, 2.5vw, 0.9rem);
  color: #c0cfde;
  font-weight: 400;
  display: block;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-links {
  display: flex;
  gap: 1.8rem;
  font-weight: 500;
}

.nav-links a {
  transition: color 0.2s;
  font-size: 1rem;
  white-space: nowrap;
  padding: 0.5rem 0;
}

.nav-links a:hover {
  color: var(--primary-orange);
}

/* ===== SLIDER ===== */
.slider-section {
  margin: 2rem 0 1rem;
}

.slider-container {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16/7;
}

.slider-wrapper {
  display: flex;
  transition: transform 0.4s ease;
  height: 100%;
}

.slide {
  position: relative;
  flex: 0 0 100%;
  display: flex;
  align-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.1) 70%);
  z-index: 1;
}

.slide-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 600px;
}

.slide-content h2 {
  font-size: clamp(1.5rem, 6vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  text-shadow: 0 2px 5px rgba(0,0,0,0.4);
}

.slide-content p {
  font-size: clamp(1rem, 3vw, 1.3rem);
  margin-top: 0.5rem;
  font-weight: 500;
}

.btn {
  display: inline-block;
  background: var(--primary-orange);
  color: var(--text-dark);
  font-weight: 600;
  padding: 0.8rem 2rem;
  border-radius: 60px;
  margin-top: 1.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn:hover {
  background: var(--primary-orange-hover);
  transform: scale(1.02);
}

.btn i {
  margin-left: 0.5rem;
}

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
  transition: 0.2s;
  backdrop-filter: blur(4px);
  border: none;
}

.slider-arrow:hover {
  background: var(--primary-orange);
  color: black;
}

.slider-arrow.prev {
  left: clamp(10px, 2vw, 20px);
}

.slider-arrow.next {
  right: clamp(10px, 2vw, 20px);
}

.slider-nav {
  position: absolute;
  bottom: 20px;
  right: 30px;
  z-index: 10;
  display: flex;
  gap: 12px;
}

.slider-dot {
  width: 14px;
  height: 14px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: 0.2s;
}

.slider-dot.active {
  background: var(--primary-orange);
  border-color: white;
  transform: scale(1.2);
}

/* ===== SECTION TITLES ===== */
.section-title {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 700;
  margin: 2.5rem 0 1.5rem;
  color: var(--primary-dark);
  position: relative;
}

.section-title::after {
  content: '';
  width: 80px;
  height: 5px;
  background: var(--primary-orange);
  position: absolute;
  bottom: -10px;
  left: 0;
  border-radius: 10px;
}

/* ===== PRODUCTS GRID ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: clamp(1rem, 3vw, 2rem);
  margin: 2rem 0;
}

.product-card {
  background: var(--bg-white);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0,0,0,0.04);
  transition: 0.25s ease;
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-orange);
}

.product-image {
  aspect-ratio: 1/1;
  background: #e9eef3;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-details {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-name {
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
  color: var(--primary-dark);
}

.product-spec {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.product-desc {
  color: #2d3a4a;
  margin: 0.5rem 0;
  font-size: 0.95rem;
  line-height: 1.4;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin: 0.5rem 0 0.8rem;
}

.product-price small {
  font-weight: 400;
  font-size: 0.9rem;
  color: #4a5a6e;
}

.contact-order {
  background: var(--primary-dark);
  color: white;
  border: none;
  padding: 0.9rem;
  border-radius: 50px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: auto;
  cursor: pointer;
  transition: 0.2s;
  width: 100%;
}

.contact-order i {
  font-size: 1.2rem;
}

.contact-order:hover {
  background: var(--primary-orange);
  color: var(--primary-dark);
}

/* ===== INFO GRID ===== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.info-card {
  background: var(--bg-white);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: 0 12px 24px rgba(0,0,0,0.02);
  border: 1px solid #eef2f6;
}

.info-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.info-card a {
  color: var(--primary-orange);
  text-decoration: none;
}

.info-card a:hover {
  text-decoration: underline;
}

/* ===== TESTIMONIALS GRID ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.testimonial-card {
  background: #f8fafd;
  border-left: 5px solid var(--primary-orange);
  padding: 1.5rem;
  border-radius: 20px;
  transition: transform 0.2s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
}

.rating {
  color: var(--primary-orange);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.testimonial-author {
  margin-top: 1rem;
}

.testimonial-author strong {
  display: block;
  color: var(--primary-dark);
  font-size: 1.1rem;
}

.testimonial-author span {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ===== CONTACT SECTION ===== */
.contact-block {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 3rem 0;
  background: var(--bg-white);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.contact-info {
  flex: 1 1 300px;
}

.contact-info h2 {
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  margin-bottom: 1.5rem;
  color: var(--primary-dark);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  word-break: break-word;
}

.contact-item i {
  width: 40px;
  height: 40px;
  background: var(--primary-orange);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  flex-shrink: 0;
  font-size: 1.2rem;
}

.contact-item address {
  font-style: normal;
}

.contact-item a {
  color: var(--primary-dark);
  transition: color 0.2s;
}

.contact-item a:hover {
  color: var(--primary-orange);
}

.business-hours {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 2px solid #eef2f6;
}

.business-hours h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

.business-hours p {
  margin: 0.5rem 0;
  color: var(--text-light);
}

.map-container {
  flex: 2 1 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(0,0,0,0.1);
  min-height: 350px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== FLOATING BUTTONS (WhatsApp + Call) ===== */
.floating-wa {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--whatsapp-green);
  width: clamp(60px, 10vw, 70px);
  height: clamp(60px, 10vw, 70px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: clamp(2rem, 6vw, 2.8rem);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  z-index: 99;
  transition: 0.2s;
}

.floating-wa:hover {
  transform: scale(1.1);
  background: var(--whatsapp-hover);
}

.floating-call {
  position: fixed;
  bottom: 110px;  /* 30px (bottom) + 70px (height) + 10px gap */
  right: 30px;
  background: var(--call-blue);
  width: clamp(60px, 10vw, 70px);
  height: clamp(60px, 10vw, 70px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: clamp(2rem, 6vw, 2.8rem);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  z-index: 99;
  transition: 0.2s;
}

.floating-call:hover {
  transform: scale(1.1);
  background: var(--call-hover);
}

/* Brand color variant for call button */
.floating-call.brand-color {
  background: var(--primary-orange);
}
.floating-call.brand-color:hover {
  background: var(--primary-orange-hover);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
  gap: 2.5rem;
}

.footer-col h4 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-col p {
  margin: 0.8rem 0;
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.footer-col a {
  color: var(--footer-text);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--primary-orange);
}

.social-icons {
  display: flex;
  gap: 1.5rem;
  font-size: 1.8rem;
  margin: 2.5rem 0 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.social-icons a {
  color: var(--footer-text);
  transition: color 0.2s;
}

.social-icons a:hover {
  color: var(--primary-orange);
}

.footer-bottom {
  border-top: 1px solid #2b3b48;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
}

.footer-bottom a {
  color: var(--footer-text);
  text-decoration: underline;
}

.footer-bottom a:hover {
  color: var(--primary-orange);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--primary-dark);
    margin-top: 1rem;
    border-radius: 20px;
  }
  
  .nav-links.show {
    display: flex;
  }
  
  .nav-links a {
    font-size: 1.1rem;
    padding: 0.75rem;
    white-space: normal;
    border-radius: 10px;
  }
  
  .nav-links a:hover {
    background: rgba(255,255,255,0.1);
  }
  
  .slider-container {
    aspect-ratio: 16/9;
  }
  
  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  /* Floating buttons mobile adjustments */
  .floating-wa {
    bottom: 20px;
    right: 20px;
  }
  .floating-call {
    bottom: 100px;  /* 20px + 70px + 10px gap */
    right: 20px;
  }
  
  .contact-item {
    font-size: 1rem;
  }
  
  .testimonials-grid {
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .logo-area {
    gap: 0.5rem;
  }
  
  .logo-img {
    width: 50px;
    height: 50px;
  }
  
  .company-name h1 {
    white-space: normal;
    font-size: 1.1rem;
  }
  
  .company-name span {
    white-space: normal;
    font-size: 0.65rem;
  }
  
  .section-title::after {
    width: 60px;
  }
  
  .contact-block {
    padding: 1.5rem;
  }
  
  .contact-item i {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
}

/* ===== UTILITY CLASSES ===== */
.touch-target {
  touch-action: manipulation;
}