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

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Header & Navigation */
header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: white;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.top-header {
  padding: 0.5rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.8rem 0;
}

.logo {
  height: auto;
  width: 200px;
  object-fit: contain;
  display: block;
}

.navbar {
  background: white;
  height: 35px;
  display: flex;
  align-items: center;
}

.nav-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: center;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #007bff;
}

.hamburger {
  display: none;
}

/* Hero Section */
.hero {
  height: 80vh;
  position: relative;
  background: url('image/AdobeStock_272472268-3.webp') no-repeat center/cover;
  margin-top: 95px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 1rem;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

/* Buttons */
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: transform 0.3s ease;
}

.btn-primary {
  background: #007bff;
  color: white;
}

.btn-secondary {
  background: #333;
  color: white;
  margin-top: 1rem;
}

.btn-primary:hover, .btn-secondary:hover {
  transform: translateY(-2px);
}

/* Content Sections */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1rem;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.content-grid.reverse {
  direction: rtl;
}

.content-grid.reverse > * {
  direction: ltr;
}

.image-box img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.text-box h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.benefits-list {
  list-style: none;
  margin: 1rem 0;
}

.benefits-list li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.benefits-list li::before {
  content: "•";
  color: #007bff;
  position: absolute;
  left: 0;
}

/* Testimonials */
.testimonials {
  background: #f8f9fa;
  padding: 4rem 0;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.stars {
  color: #ffd700;
  margin-bottom: 1rem;
}

.author {
  display: block;
  margin-top: 1rem;
  font-weight: 500;
  color: #666;
}

/* Contact Form */
.contact-form {
  padding: 4rem 1rem;
  background-color: #f3f4f6;
}

.contact-form h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.contact-form .form-container {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  margin-bottom: 1.5rem;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #007bff;
  outline: none;
}

.contact-form button {
  background-color: #007bff;
  color: white;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #0056b3;
}

@media (max-width: 768px) {
  .content-grid {
    grid-template-columns: 1fr;
  }
}

/* Footer */
footer {
  background: #333;
  color: white;
  padding: 2rem 0;
}

.footer-info {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
  margin-bottom: 1rem;
}

.footer-info a {
  color: white;
  text-decoration: none;
}

.footer-copyright {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
