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

:root {
  /* Earthy Olive & White Theme */
  --bg-color: #ffffff; 
  --bg-section: #ffffff; 
  --bg-secondary: #f9f9f9; 
  --text-main: #4a5d23; /* Olive Green */
  --text-muted: #6b823e; /* Lighter Olive */
  --accent: #d4af37; /* Premium Gold */
  --accent-copper: #b87333; /* Copper */
  --accent-silver: #c0c0c0; /* Silver */
  --accent-glow: rgba(74, 93, 35, 0.15);
  --border-color: rgba(74, 93, 35, 0.15);
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Montserrat', sans-serif;
  --granite-texture: none;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Navbar */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: all 0.4s ease;
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  background-image: none;
  backdrop-filter: blur(10px);
  padding: 1rem 5%;
  box-shadow: 0 4px 20px rgba(74, 93, 35, 0.08);
  border-bottom: 1px solid var(--border-color);
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.5px;
}

.logo-footer {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1rem;
}

nav ul.nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

nav a {
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

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

/* Dropdown Menu */
li.dropdown {
  position: relative;
  padding: 1rem 0;
}

li.dropdown .arrow {
  font-size: 0.7rem;
  margin-left: 4px;
  vertical-align: middle;
}

ul.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--bg-secondary);
  box-shadow: 0 10px 30px rgba(74, 93, 35, 0.15);
  border-radius: 8px;
  list-style: none;
  min-width: 200px;
  opacity: 0;
  transform: translateY(10px);
  visibility: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  padding: 0.5rem 0;
}

li.dropdown:hover ul.dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

ul.dropdown-menu li a {
  padding: 0.8rem 1.5rem;
  display: block;
  font-weight: 500;
}

ul.dropdown-menu li a:hover {
  background-color: var(--bg-color);
  color: var(--accent);
}

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

nav .nav-links > li > a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 5%;
  overflow: hidden;
  background: linear-gradient(135deg, #f5f7f0 0%, #e8eddf 50%, #f0f2eb 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(74, 93, 35, 0.05) 0%, transparent 60%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 800px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s forwards 0.2s;
  color: var(--text-main);
}

.hero h1 span {
  color: var(--accent);
  font-style: italic;
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 600px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s forwards 0.4s;
  line-height: 1.8;
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  color: #ffffff;
  background-color: var(--accent);
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 1.5px solid var(--accent);
  box-shadow: 0 10px 20px var(--accent-glow);
}

.btn:hover {
  background-color: transparent;
  color: var(--accent);
  box-shadow: none;
  transform: translateY(-2px);
}

/* Products Section */
.products {
  padding: 8rem 5%;
  background-color: var(--bg-section);
  background-image: var(--granite-texture);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header span {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 0.8rem;
  font-weight: 600;
  display: block;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--text-main);
}

.section-subtitle {
  color: var(--text-muted);
  margin-top: 1rem;
  font-size: 0.9rem;
  font-style: italic;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
}

.product-card {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background-color: var(--bg-secondary);
  background-image: none;
  border: 1px solid var(--border-color);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: translateY(40px);
  box-shadow: 0 10px 30px rgba(74, 93, 35, 0.06);
}

.product-card.visible {
  opacity: 1;
  transform: translateY(0);
}

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

.product-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
  background-color: var(--bg-secondary);
}

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

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

.product-info {
  padding: 2rem;
  text-align: center;
}

.product-info h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: var(--text-main);
}

.product-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.about {
  padding: 8rem 5%;
  background-color: var(--bg-section);
  background-image: var(--granite-texture);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text h2 {
  font-family: var(--font-heading);
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(74, 93, 35, 0.15);
  position: relative;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Sidebar Quote Panel */
.quote-side-btn {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: bottom left;
  background-color: var(--accent);
  color: #ffffff;
  border: none;
  padding: 12px 24px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 -4px 15px rgba(74, 93, 35, 0.1);
  z-index: 1001;
  transition: all 0.3s ease;
}

.quote-side-btn:hover {
  background-color: #fff;
  color: var(--accent);
}

.quote-panel {
  position: fixed;
  top: 0;
  left: -400px;
  width: 380px;
  height: 100vh;
  background-color: var(--bg-section);
  background-image: none;
  box-shadow: 20px 0 50px rgba(74, 93, 35, 0.1);
  z-index: 1002;
  transition: left 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  overflow-y: auto;
  padding: 3rem 2rem;
  border-right: 1px solid var(--border-color);
}

.quote-panel.open {
  left: 0;
}

.close-panel {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.3s;
}

.close-panel:hover {
  color: var(--accent);
}

.panel-header {
  margin-bottom: 2rem;
}

.panel-header h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.panel-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-main);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-main);
  background-color: var(--bg-secondary);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-glow);
}

.submit-btn {
  width: 100%;
  margin-top: 0.5rem;
  cursor: pointer;
  text-align: center;
  background-color: var(--accent-copper);
  border-color: var(--accent-copper);
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(184, 115, 51, 0.15);
}

.submit-btn:hover {
  background-color: transparent;
  color: var(--accent-copper);
  box-shadow: none;
}

/* WhatsApp Floating Icon */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 25px rgba(37, 211, 102, 0.4);
}

/* Footer */
footer {
  background-color: var(--bg-secondary);
  background-image: none;
  padding: 5rem 5% 2rem;
  border-top: 1px solid var(--border-color);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

footer .logo-footer,
.footer-col h4 {
  font-family: var(--font-heading);
  color: var(--text-main);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

footer .logo-footer {
  color: var(--accent);
}

.footer-col p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0.8rem; line-height: 1.7;
}

.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

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

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(74, 93, 35, 0.05);
  color: var(--text-muted);
  transition: all 0.3s ease;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Animations */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .hero h1 {
    font-size: 3.2rem;
  }
  .about {
    grid-template-columns: 1fr;
  }
  nav ul.nav-links {
    display: none; 
  }
}

@media (max-width: 768px) {
  .quote-panel {
    width: 320px;
  }
}
