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

:root {
  --primary-color: #1A1A1A; /* Deep Charcoal */
  --secondary-color: #D4AF37; /* Very subtle muted gold/sand */
  --bg-light: #FAFAFA;
  --bg-dark: #222222;
  --text-main: #333333;
  --text-muted: #777777;
  --white: #FFFFFF;
  --transition-smooth: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Playfair Display', serif; font-weight: 500; color: var(--primary-color); }
a { text-decoration: none; color: inherit; transition: color 0.3s ease; }

/* Header / Navbar */
.top-announcement {
  position: fixed; top: 0; left: 0; width: 100%; 
  background: linear-gradient(90deg, #0a0a0a 0%, #2a2215 50%, #0a0a0a 100%); color: var(--white); 
  text-align: center; padding: 10px 15px; 
  font-family: 'Inter', sans-serif; font-size: 0.8rem; letter-spacing: 2px; 
  z-index: 1001; text-transform: uppercase;
}
.top-announcement .company { color: var(--secondary-color); font-weight: 700; }
.top-announcement .services { font-weight: 500; opacity: 0.9; }

header {
  position: fixed; top: 38px; left: 0; width: 100%; padding: 60px 5%;
  display: flex; justify-content: flex-end; align-items: center;
  z-index: 1000; transition: background-color var(--transition-smooth), padding var(--transition-smooth);
}
header.scrolled {
  background-color: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px);
  padding: 15px 5%; box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.logo { position: absolute; left: 50%; top: 60%; transform: translate(-50%, -50%); display: inline-flex; align-items: center; justify-content: center; transition: all var(--transition-smooth); }
.logo img { display: block; transition: transform var(--transition-smooth), filter var(--transition-smooth); }

header.scrolled .logo img { height: 50px !important; width: auto !important; filter: drop-shadow(0 2px 5px rgba(0,0,0,0.1)); mix-blend-mode: multiply !important; }

.nav-links { display: flex; gap: 30px; list-style: none; margin-left: auto; }
.nav-links li a { font-size: 0.95rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; color: var(--white); position: relative; transition: color var(--transition-smooth); }
header.scrolled .nav-links li a { color: var(--primary-color); }
.nav-links li a::after { content: ''; position: absolute; width: 0%; height: 1px; bottom: -4px; left: 0; background-color: var(--secondary-color); transition: width 0.3s ease; }
.nav-links li a:hover::after, .nav-links li a.active::after { width: 100%; }

.menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001; }
.menu-toggle span { display: block; width: 25px; height: 3px; background-color: var(--white); transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease; }
header.scrolled .menu-toggle span, header.light-nav .menu-toggle span { background-color: var(--primary-color); }

/* Hero Slider */
.hero-slider { position: relative; width: 100vw; height: 100vh; overflow: hidden; background-color: #000; }
.slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; visibility: hidden; z-index: 1; }
.slide.active { opacity: 1; visibility: visible; z-index: 2; }
.slide-img-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; }
.slide-bg { width: 100%; height: 100%; object-fit: cover; transform: scale(1.1); }

/* Overlay for text readability - UPDATED FOR HIGH CONTRAST */
.slide::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.8) 100%);
  z-index: 2;
}

.slide-content { position: relative; z-index: 3; height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 140px 5% 0; color: var(--white); }
.slide-subtitle { font-family: 'Inter', sans-serif; font-size: 1rem; letter-spacing: 4px; text-transform: uppercase; margin-bottom: 20px; opacity: 0; transform: translateY(20px); text-shadow: 0 2px 4px rgba(0,0,0,0.8); }
.slide-title { font-size: 5rem; line-height: 1.1; margin-bottom: 30px; opacity: 0; transform: translateY(30px); max-width: 900px; text-shadow: 0 4px 12px rgba(0,0,0,0.7); color: var(--white); }
.slide-btn { display: inline-block; padding: 15px 40px; border: 1px solid var(--white); color: var(--white); font-size: 0.9rem; letter-spacing: 2px; text-transform: uppercase; position: relative; overflow: hidden; opacity: 0; transform: translateY(20px); background: transparent; cursor: pointer; text-shadow: 0 2px 4px rgba(0,0,0,0.8); box-shadow: 0 4px 15px rgba(0,0,0,0.3);}
.slide-btn::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: var(--white); transform: translateX(-100%); transition: transform 0.4s ease; z-index: -1; }
.slide-btn:hover::before { transform: translateX(0); }
.slide-btn:hover { color: var(--primary-color); text-shadow: none; box-shadow: none;}
.slider-controls { position: absolute; bottom: 40px; left: 5%; z-index: 10; display: flex; gap: 15px; }
.dot { width: 10px; height: 10px; border-radius: 50%; background-color: rgba(255,255,255,0.4); cursor: pointer; transition: background-color 0.3s ease; }
.dot.active { background-color: var(--white); transform: scale(1.2); }

/* Global Sections & Layouts */
section { padding: 100px 5%; }
.bg-muted { background-color: #f4f4f4; }
.bg-dark { background-color: var(--primary-color); color: var(--white); }
.bg-dark h2, .bg-dark h3 { color: var(--white); }

.section-header { text-align: center; margin-bottom: 60px; }
.section-subtitle { font-size: 0.9rem; color: var(--secondary-color); text-transform: uppercase; letter-spacing: 3px; margin-bottom: 15px; display: block; }
.section-title { font-size: 3rem; color: var(--primary-color); }

.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split-content h2 { margin-bottom: 20px; font-size: 2.5rem; }
.split-content p { margin-bottom: 20px; font-size: 1.1rem; color: var(--text-muted); }
.bg-dark .split-content p { color: #cccccc; }
.split-image img { width: 100%; border-radius: 4px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }

.caption-block { padding: 15px; background: var(--white); border-left: 4px solid var(--secondary-color); margin-top: 15px; font-style: italic; color: var(--text-muted); font-size: 0.95rem; }
.bg-dark .caption-block { background: #222; border-left: 4px solid var(--secondary-color); color: #ccc; }

/* Categories Grid */
.categories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.category-card { position: relative; height: 500px; overflow: hidden; cursor: pointer; border-radius: 4px;}
.category-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1); }
.category-overlay { position: absolute; bottom: 0; left: 0; width: 100%; padding: 30px; background: linear-gradient(to top, rgba(0,0,0,0.9), transparent); color: var(--white); }
.category-card:hover .category-img { transform: scale(1.08); }
.category-name { font-size: 1.8rem; margin-bottom: 5px; color: var(--white); }
.category-link { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; border-bottom: 1px solid var(--white); padding-bottom: 2px; }

/* Product Masonry Style */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 30px; }
.product-item { position: relative; overflow: hidden; border-radius: 8px; height: 400px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.product-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); }
.product-item:hover img { transform: scale(1.1); }
.product-info { position: absolute; bottom: -100px; left: 0; width: 100%; padding: 20px; background: rgba(255,255,255,0.95); transition: bottom 0.4s ease; text-align: center; }
.product-item:hover .product-info { bottom: 0; }
.product-info h3 { font-size: 1.2rem; margin-bottom: 5px; color: var(--primary-color);}
.product-info p { font-size: 0.9rem; color: var(--text-muted); }

/* Trust Banner */
.trust-banner { background-color: transparent; padding: 60px 0; text-align: center; border-bottom: none; overflow: hidden; }
.trust-banner h3 { font-size: 1.5rem; margin-bottom: 40px; color: var(--text-muted); padding: 0 5%; }
.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
}
.marquee-content {
  display: flex;
  align-items: center;
  gap: 80px;
  padding-right: 80px;
  animation: scroll-marquee 25s linear infinite;
  width: max-content;
}
.marquee-content:hover { animation-play-state: paused; }
.marquee-content img { height: 80px; object-fit: contain; transition: transform 0.3s ease; mix-blend-mode: multiply; }
.marquee-content img:hover { transform: scale(1.05); }

@keyframes scroll-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Contact Forms */
.contact-form { background: var(--white); padding: 40px; border-radius: 8px; box-shadow: 0 10px 40px rgba(0,0,0,0.05); }
.form-group { margin-bottom: 25px; }
.form-group label { display: block; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; color: var(--text-muted); }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 15px; border: 1px solid #ddd; border-radius: 4px; font-family: 'Inter', sans-serif; font-size: 1rem; background: var(--bg-light); transition: border-color 0.3s ease, background 0.3s ease; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--primary-color); background: var(--white); }
.submit-btn { width: 100%; padding: 18px; background: var(--primary-color); color: var(--white); border: none; font-family: 'Inter', sans-serif; font-size: 1rem; text-transform: uppercase; letter-spacing: 2px; cursor: pointer; border-radius: 4px; transition: background 0.3s ease; }
.submit-btn:hover { background: #000; }

/* Google Map wrapper */
.map-responsive { overflow:hidden; padding-bottom:56.25%; position:relative; height:0; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); margin-top: 20px;}
.map-responsive iframe { left:0; top:0; height:100%; width:100%; position:absolute; border:0; }

/* Footer */
footer { 
  background-color: #FFFFFF; 
  color: var(--text-main); 
  padding: 100px 5% 40px; 
  border-top: none; 
  margin-top: 0; 
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; margin-bottom: 60px; }
.footer-brand h2 { color: var(--primary-color); margin-bottom: 20px; }
.footer-brand p { color: var(--text-muted); max-width: 400px; line-height: 1.8; }
.footer-links h4 { font-family: 'Inter', sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 25px; color: var(--primary-color); }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: var(--text-muted); font-weight: 500; transition: color 0.3s ease; }
.footer-links a:hover { color: var(--secondary-color); }
.footer-bottom { border-top: 1px solid rgba(0, 0, 0, 0.1); padding-top: 30px; display: flex; justify-content: space-between; color: var(--text-muted); font-size: 0.9rem; font-weight: 500; }

/* Subpage Light Navigation */
header.light-nav { background-color: transparent; }
header.light-nav.scrolled { background-color: rgba(255, 255, 255, 0.95); }
header.light-nav .logo, header.light-nav .nav-links li a { color: var(--primary-color); }
.page-header { padding-top: 150px; padding-bottom: 80px; background-color: #F8F6F0; text-align: center; }
.page-header .section-title { color: var(--primary-color); }
.page-header .section-subtitle { color: var(--secondary-color); }

/* Responsive */
@media(max-width: 900px) {
  .menu-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 250px; height: 100vh;
    background-color: var(--white); flex-direction: column;
    align-items: center; justify-content: center;
    transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: -5px 0 30px rgba(0,0,0,0.1);
    z-index: 1000;
  }
  .nav-links.open { right: 0; }
  .nav-links li a { color: var(--primary-color); font-size: 1.2rem; }
  header.scrolled .nav-links li a { color: var(--primary-color); }
  .menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); background-color: var(--primary-color); }
  .menu-toggle.open span:nth-child(2) { opacity: 0; }
  .menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); background-color: var(--primary-color); }

  .marquee-content img { height: 60px; }
  .marquee-content { gap: 40px; padding-right: 40px; animation-duration: 20s; }

  .slide-title { font-size: 3rem; }
  .categories-grid { grid-template-columns: 1fr; }
  .split-section { grid-template-columns: 1fr; }
  .category-card { height: 400px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 15px; padding-top: 20px; }
  .footer-bottom p { width: 100%; margin: 0; font-size: 0.85rem; }
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 2px 4px 15px rgba(0,0,0,0.3);
}
.whatsapp-float svg {
  width: 35px;
  height: 35px;
  fill: #FFF;
}
@media (max-width: 768px) {
  .top-announcement {
    font-size: 0.55rem;
    letter-spacing: 0;
    padding: 8px 2px;
    white-space: nowrap;
    width: 100%;
    overflow: hidden;
  }
  .top-announcement span {
    margin: 0 3px !important;
  }
  header {
    top: 25px;
  }
  .whatsapp-float { width: 50px; height: 50px; bottom: 20px; right: 20px; }
  .whatsapp-float svg { width: 28px; height: 28px; }
}
