/* ==========================================================================
   DS CorpBD - V2 Clean Corporate Light Design
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --primary-color: #1a4a2b; /* Deep Forest Green */
  --primary-light: #2b7a48;
  --accent-color: #c5a059; /* Elegant Golden */
  --bg-color: #ffffff; 
  --bg-secondary: #f4f7f6; /* Very light green/gray */
  --text-dark: #1e293b; 
  --text-light: #ffffff;
  --text-muted: #64748b;
  --card-bg: #ffffff; 
  --border-color: #e2e8f0; 
  --transition: all 0.3s ease; 
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-dark);
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; border-radius: 8px; }

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section { padding: 6rem 0; }
.section:nth-child(even) { background-color: var(--bg-secondary); }

.section-title {
  text-align: left; font-size: 2.5rem; font-weight: 700;
  color: var(--text-dark); margin-bottom: 3rem;
  display: flex; align-items: center; gap: 1rem;
}
.section-title::before {
  content: ''; display: block; width: 40px; height: 3px;
  background-color: var(--primary-color);
}

.btn {
  display: inline-block; padding: 0.8rem 2rem; font-weight: 600;
  border-radius: 4px; cursor: pointer; transition: var(--transition);
  border: 1px solid transparent; text-align: center; font-size: 0.95rem;
}
.btn-primary {
  background-color: var(--primary-color); color: var(--text-light);
}
.btn-primary:hover {
  background-color: var(--primary-light); transform: translateY(-2px); box-shadow: var(--shadow);
}
.btn-accent {
  background-color: var(--accent-color); color: var(--text-light);
}
.btn-accent:hover {
  filter: brightness(1.1); transform: translateY(-2px); box-shadow: var(--shadow);
}
.btn-outline {
  background: transparent; border-color: var(--primary-color);
  color: var(--primary-color);
}
.btn-outline:hover { background: var(--primary-color); color: var(--text-light); }

/* Solid Clean Navbar */
.navbar {
  background-color: #ffffff; border-bottom: 1px solid var(--border-color);
  position: sticky; top: 0; left: 0; width: 100%; z-index: 1000;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.navbar .container { display: flex; justify-content: space-between; align-items: center; height: 80px; }
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-brand img { height: 45px; }
.nav-brand span { font-size: 1.4rem; font-weight: 700; color: var(--primary-color); letter-spacing: 0.5px; }

.nav-links { display: flex; align-items: center; gap: 35px; }
.nav-link { font-weight: 500; color: var(--text-muted); font-size: 0.95rem; }
.nav-link:hover, .nav-link.active { color: var(--primary-color); }

.nav-actions { display: flex; align-items: center; gap: 15px; }
.navbar .nav-toggle { display: none; font-size: 1.5rem; cursor: pointer; color: var(--text-dark); }

/* Hero Section - Edge-to-Edge Full Screen */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(rgba(26, 74, 43, 0.5), rgba(26, 74, 43, 0.82)), url('https://images.pexels.com/photos/2802527/pexels-photo-2802527.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat fixed;
  position: relative; overflow: hidden;
  padding: 0; margin-top: -80px;
  text-align: center;
}
.hero .container { position: relative; z-index: 2; padding-top: 80px; }
.hero-text { max-width: 1000px; margin: 0 auto; }
.hero .giant-text { font-size: 7.5rem; margin-bottom: 1rem; font-weight: 800; color: #ffffff !important; text-shadow: 0 10px 30px rgba(0,0,0,0.5); letter-spacing: -2px; line-height: 1.1; }
.hero .subtitle-text { font-size: 1.8rem; margin-bottom: 2.5rem; color: #e0f0e8 !important; font-family: 'Inter', sans-serif; text-shadow: 0 4px 15px rgba(0,0,0,0.5); font-weight: 300; }
.btn-outline-light { background: transparent; border: 2px solid #fff; color: #fff; }
.btn-outline-light:hover { background: #fff; color: var(--primary-color); box-shadow: var(--shadow); }

/* About Snippet */
.about-content { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: center; }
.about-text h2 { font-size: 2rem; color: var(--text-dark); margin-bottom: 1rem; font-weight: 700; }
.about-image img { box-shadow: var(--shadow-hover); border-radius: 16px; }

/* Clean Cards */
.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.product-card {
  background: var(--card-bg); border: 1px solid var(--border-color); border-radius: 8px;
  overflow: hidden; transition: var(--transition);
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); border-color: var(--primary-color); }
.product-img { height: 200px; width: 100%; object-fit: cover; border-radius: 0; }
.product-info { padding: 1.5rem; }
.product-info h3 { color: var(--text-dark); font-size: 1.3rem; margin-bottom: 0.5rem; }
.product-info p { font-size: 0.95rem; color: var(--text-muted); }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-color); }
.faq-question {
  padding: 1.5rem 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  font-weight: 600; color: var(--text-dark); font-size: 1.1rem;
}
.faq-question i { color: var(--primary-color); transition: transform 0.3s ease; }
.faq-question.active i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer p { padding-bottom: 1.5rem; color: var(--text-muted); }

/* Team Section */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; margin-top: 3rem; }
.team-card { text-align: center; }
.team-img { width: 100%; aspect-ratio: 1; object-fit: contain; border-radius: 50%; margin-bottom: 1rem; border: 4px solid #fff; box-shadow: var(--shadow); }
.team-info h3 { color: var(--text-dark); font-size: 1.2rem; }
.team-info p { color: var(--primary-color); font-weight: 500; font-size: 0.9rem; }

/* Standard Gallery */
.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1.5rem;
}
.gallery-item { border-radius: 8px; overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item.hidden { display: none; }
.text-center { text-align: center; }

/* Footer */
.footer { background: var(--primary-color); color: rgba(255,255,255,0.8); padding: 4rem 0 1.5rem; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 3rem; margin-bottom: 3rem; }
.footer-col h4 { font-size: 1.1rem; margin-bottom: 1.5rem; color: #fff; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.footer-links li { margin-bottom: 0.8rem; }
.footer-links a:hover { color: #fff; text-decoration: underline; }
.footer-bottom { text-align: center; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.85rem; }

/* Support Modal */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0, 0, 0, 0.5); backdrop-filter: blur(4px);
  display: flex; justify-content: center; align-items: center; z-index: 2000;
  opacity: 0; visibility: hidden; transition: var(--transition);
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-content {
  background: #ffffff; border-radius: 12px; padding: 2.5rem; width: 90%; max-width: 500px; position: relative;
  transform: translateY(-20px); transition: var(--transition); box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.modal-overlay.active .modal-content { transform: translateY(0); }
.modal-close { position: absolute; top: 15px; right: 20px; font-size: 1.5rem; cursor: pointer; color: var(--text-muted); }
.modal-close:hover { color: var(--text-dark); }
.modal-title { color: var(--text-dark); margin-bottom: 1.5rem; font-size: 1.8rem; font-weight: 700; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; margin-bottom: 0.5rem; color: var(--text-dark); font-weight: 500; font-size: 0.9rem; }
.form-group input, .form-group textarea {
  width: 100%; padding: 0.8rem; border: 1px solid var(--border-color); border-radius: 6px; font-family: inherit; transition: var(--transition);
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--primary-color); box-shadow: 0 0 0 3px rgba(26, 74, 43, 0.1); }

/* Page Header */
.page-header { padding: 6rem 0 3rem; background: var(--bg-secondary); border-bottom: 1px solid var(--border-color); }
.page-header h1 { font-size: 3rem; color: var(--text-dark); font-weight: 800; margin-bottom: 0.5rem; }
.page-header p { font-size: 1.1rem; color: var(--text-muted); }

/* Responsive */
@media (max-width: 992px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero::after { display: none; }
  .hero { background: linear-gradient(rgba(244, 247, 246, 0.9), rgba(244, 247, 246, 0.9)), url('https://images.pexels.com/photos/2802527/pexels-photo-2802527.jpeg') center/cover; }
  .hero p { margin: 0 auto 2.5rem; }
  .about-content { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .navbar .nav-toggle { display: block; }
  .nav-links.active {
    display: flex; flex-direction: column; position: absolute; top: 80px; left: 0; width: 100%;
    background: #fff; padding: 1.5rem 0; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); gap: 10px;
  }
  .nav-actions.active {
    display: flex; flex-direction: column; position: absolute; top: 280px; left: 0; width: 100%;
    background: #fff; padding: 0 0 1.5rem; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); border-top: 1px solid var(--border-color);
  }
  .hero h1 { font-size: 2.5rem; }
}
