/* Google Fonts: Outfit (headings) and Inter (body) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@500;700;800&display=swap');

:root {
  /* Color Palette: Strictly Saffron, White, and dark grey for text */
  --primary: #FF9933; /* Saffron */
  --primary-hover: #e68a2e;
  --secondary: #1A1A1A; /* Text black/dark grey instead of blue */
  --secondary-hover: #000000;
  --bg-color: #FFFFFF;
  --bg-light: #FAFAFA; /* Off-white for section variation */
  --text-dark: #1A1A1A;
  --text-muted: #555555;
  --border-color: #EAEAEA;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Transitions & Shadows */
  --transition: all 0.3s ease-in-out;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
}

/* Base Styles Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-color);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 80px; /* Offset for sticky header */
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--secondary);
  line-height: 1.2;
}

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

ul {
  list-style: none;
}

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

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 80px 0;
}

.bg-light { background-color: var(--bg-light); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }
.bg-secondary { background-color: var(--bg-color); color: var(--text-dark); border-top: 1px solid var(--border-color); }
.bg-secondary h2, .bg-secondary h3 { color: var(--text-dark); }

/* Typography Utilities */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 50px;
}
.bg-secondary .section-subtitle { color: var(--text-muted); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 1rem;
}
.btn i { margin-left: 8px; }
.btn-primary { background-color: var(--primary); color: white; }
.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 15px -3px rgba(255,153,51,0.2);
}
.btn-secondary { background-color: transparent; color: var(--secondary); border: 2px solid var(--secondary); }
.btn-secondary:hover { background-color: var(--secondary); color: white; }

/* Sticky Header - Changed to White */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--bg-color);
  color: var(--text-dark);
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo span { color: var(--primary); }
.logo i { color: var(--primary); }
.nav-menu { display: flex; gap: 30px; align-items: center; }
.nav-menu a {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 1rem;
  position: relative;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }
.nav-menu .btn-primary { padding: 10px 20px; font-size: 0.9rem; color: white; }
.nav-menu .btn-primary::after { display: none; }
.mobile-toggle {
  display: none; font-size: 1.5rem; color: var(--text-dark); background: none; border: none; cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  height: calc(100vh - 80px);
  min-height: 600px;
  background-color: var(--text-dark);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: url('images/hero_bg.jpg') center/cover no-repeat;
  opacity: 0.4;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}
.hero span.badge {
  display: inline-block;
  background-color: var(--primary);
  color: white;
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: 4rem;
  color: white;
  margin-bottom: 20px;
  text-transform: capitalize;
}
.hero p {
  font-size: 1.2rem;
  color: #F8F9FA;
  margin-bottom: 30px;
}
.hero-buttons {
  display: flex; gap: 20px;
}
.hero .btn-secondary { color: white; border-color: white; }
.hero .btn-secondary:hover { background-color: white; color: var(--secondary); border-color: white; }

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.feature-card {
  background: white;
  padding: 40px 30px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
  border-bottom: 4px solid transparent;
}
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--primary);
}
.feature-icon {
  width: 70px; height: 70px;
  margin: 0 auto 20px;
  background-color: rgba(255, 153, 51, 0.1); /* Saffron transparent */
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: var(--primary); /* Saffron icon */
  transition: var(--transition);
}
.feature-card:hover .feature-icon { background-color: var(--primary); color: white; }
.feature-card h3 { font-size: 1.5rem; margin-bottom: 15px; }

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}
.product-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  border: 1px solid var(--border-color);
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.product-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-bottom: 4px solid var(--primary);
}
.product-content { padding: 25px; }
.product-content h3 { font-size: 1.4rem; margin-bottom: 10px; }
.product-content p { color: var(--text-muted); margin-bottom: 20px; font-size: 0.95rem; }
.product-features {
  display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px;
}
.product-features li {
  display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--text-dark);
}
.product-features li i { color: var(--primary); }

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  position: relative;
  border-top: 4px solid var(--primary);
}
.testimonial-card i.fa-quote-left {
  position: absolute; top: 20px; right: 20px; font-size: 3rem; color: rgba(255, 153, 51, 0.1);
}
.testimonial-text { font-style: italic; color: var(--text-muted); margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 15px; }
.testimonial-author img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.testimonial-author h4 { font-size: 1.1rem; margin-bottom: 2px; color: var(--text-dark); }
.testimonial-author span { font-size: 0.85rem; color: var(--primary); font-weight: 600; text-transform: uppercase; }

/* Partners */
.partners-wrap { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 40px; opacity: 0.6; }
.partners-wrap img { height: 50px; filter: grayscale(100%); transition: var(--transition); }
.partners-wrap i { color: var(--text-muted) !important; transition: var(--transition); }
.partners-wrap i:hover { color: var(--primary) !important; opacity: 1; transform: scale(1.05); }

/* Contact Forms */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  background: white;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
}
.contact-info { padding: 50px; background: var(--bg-light); border-right: 1px solid var(--border-color); }
.contact-info h3 { font-size: 2rem; margin-bottom: 20px; }
.contact-details { margin-top: 30px; display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; align-items: flex-start; gap: 15px; }
.contact-item i { width: 40px; height: 40px; background: rgba(255, 153, 51, 0.1); color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; border: 1px solid var(--primary); }
.contact-item h4 { font-size: 1.1rem; margin-bottom: 5px; color: var(--text-dark); }
.contact-item p { color: var(--text-muted); }
.contact-form { padding: 50px; background: white; }
.form-group { margin-bottom: 20px; }
.form-control {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: var(--font-body);
  transition: var(--transition);
  background: white;
}
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(255, 153, 51, 0.1); }
textarea.form-control { resize: vertical; height: 150px; }
.contact-form .btn-primary { width: 100%; }

/* Inner Page Header */
.page-header {
  height: 300px;
  background-color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--primary);
}
.page-header::before {
  content: ''; position: absolute; top:0; left:0; right:0; bottom:0;
  background: url('images/hero_bg.jpg') center/cover;
  opacity: 0.3;
}
.page-header h1 { color: white; font-size: 3rem; position: relative; z-index: 1; }

/* About Page Styles */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-image { border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-lg); border-left: 8px solid var(--primary); }
.about-content h2 { font-size: 2.5rem; margin-bottom: 20px; }
.about-content p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 20px; }

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 20px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover; transition: var(--transition);
}
.gallery-item::after {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  opacity: 0; transition: var(--transition);
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover::after { opacity: 0.8; }

/* Footer Section - Changed to White */
.footer { background-color: white; color: var(--text-dark); padding: 60px 0 20px; border-top: 2px solid var(--border-color); }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-col .logo { color: var(--text-dark); }
.footer-col h4 { color: var(--text-dark); font-size: 1.3rem; margin-bottom: 20px; position: relative; padding-bottom: 10px; }
.footer-col h4::after { content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 40px; background-color: var(--primary); }
.footer-col p { color: var(--text-muted); margin-bottom: 15px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--text-muted); }
.footer-links a:hover { color: var(--primary); padding-left: 5px; }
.footer-social-links a { color: var(--text-dark) !important; }
.footer-social-links a:hover { color: var(--primary) !important; }
.footer-bottom { border-top: 1px solid var(--border-color); padding-top: 20px; text-align: center; color: var(--text-muted); font-size: 0.9rem; }

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed; bottom: 30px; right: 30px; background-color: #25d366; color: white; width: 60px; height: 60px;
  border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 2rem; box-shadow: var(--shadow-lg);
  z-index: 100; transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); background-color: #20b858; color: white; }

/* Responsive adjustments */
@media (max-width: 900px) {
  .contact-container, .about-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 3rem; }
}
@media (max-width: 768px) {
  .nav-menu {
    position: absolute; top: 80px; left: 0; width: 100%; background: white;
    flex-direction: column; gap: 0; display: none; padding: 20px 0; border-top: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
  }
  .nav-menu.active { display: flex; }
  .nav-menu a { padding: 15px 20px; width: 100%; border-bottom: 1px solid var(--border-color); }
  .nav-menu .btn-primary { width: calc(100% - 40px); margin: 15px 20px; text-align: center; }
  .mobile-toggle { display: block; }
  .hero-buttons { flex-direction: column; }
}
