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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  line-height: 1.6;
}

/* Smooth scroll */
html { scroll-behavior: smooth; }

/* Scroll offset for fixed nav */
section[id] { scroll-margin-top: 70px; }

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  z-index: 1000;
  padding: 0 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.logo span { color: #b8860b; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #555;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

.nav-links a:hover { color: #b8860b; }

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: #333;
  transition: 0.3s;
}

/* Hero */
.hero {
  height: 100vh;
  background: linear-gradient(135deg, rgba(0,0,0,0.55), rgba(0,0,0,0.3)),
    url('../images/hero-bg.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 300;
  letter-spacing: 3px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content h1 strong { font-weight: 700; }

.hero-content p {
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 35px;
  opacity: 0.9;
}

.btn {
  display: inline-block;
  padding: 14px 40px;
  background: #b8860b;
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.btn:hover {
  background: #9a7209;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid #b8860b;
  color: #b8860b;
}

.btn-outline:hover {
  background: #b8860b;
  color: #fff;
}

/* Sections */
section {
  padding: 90px 5%;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.2rem;
  font-weight: 300;
  color: #1a1a1a;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.section-title h2 strong { font-weight: 700; }

.section-title p {
  color: #888;
  max-width: 550px;
  margin: 0 auto;
}

.section-title .line {
  width: 60px;
  height: 3px;
  background: #b8860b;
  margin: 15px auto 0;
}

/* Services */
#services { background: #fafaf8; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: #fff;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid #eee;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #1a1a1a;
  letter-spacing: 1px;
}

.service-card p {
  color: #777;
  font-size: 0.92rem;
}

/* Portfolio */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.portfolio-item:hover img { transform: scale(1.08); }

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff;
  padding: 30px 20px 20px;
}

.portfolio-overlay h4 { font-size: 1.1rem; letter-spacing: 1px; }
.portfolio-overlay p { font-size: 0.85rem; opacity: 0.8; }

/* About */
#about { background: #fafaf8; }

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.about-image {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.about-text h3 {
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.about-text h3 strong { font-weight: 700; }

.about-text p {
  color: #666;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.stats {
  display: flex;
  gap: 40px;
  margin-top: 30px;
}

.stat h4 {
  font-size: 2rem;
  color: #b8860b;
  font-weight: 700;
}

.stat p {
  font-size: 0.85rem;
  color: #888;
  margin: 0;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  background: #fff;
  padding: 35px;
  border: 1px solid #eee;
}

.testimonial-card p {
  color: #666;
  font-style: italic;
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #b8860b;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
}

.author-info h5 { font-size: 0.95rem; color: #1a1a1a; }
.author-info span { font-size: 0.8rem; color: #999; }

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, #1a1a1a, #333);
  color: #fff;
  text-align: center;
  padding: 80px 5%;
}

.cta-banner h2 {
  font-size: 2.2rem;
  font-weight: 300;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.cta-banner h2 strong { font-weight: 700; }

.cta-banner p {
  opacity: 0.7;
  margin-bottom: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Contact */
#contact { background: #fafaf8; }

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.contact-info p {
  color: #666;
  margin-bottom: 25px;
  font-size: 0.95rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-detail .icon {
  width: 45px;
  height: 45px;
  background: #b8860b;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail h5 { font-size: 0.9rem; color: #1a1a1a; }
.contact-detail span { font-size: 0.85rem; color: #888; }

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #ddd;
  margin-bottom: 15px;
  font-family: inherit;
  font-size: 0.9rem;
  background: #fff;
  outline: none;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #b8860b;
}

.contact-form textarea { height: 130px; resize: vertical; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

/* Privacy & Terms */
.legal-section {
  background: #fff;
  padding: 90px 5%;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h3 {
  font-size: 1.3rem;
  color: #1a1a1a;
  margin: 30px 0 12px;
}

.legal-content p {
  color: #666;
  font-size: 0.92rem;
  margin-bottom: 12px;
}

.legal-content ul {
  color: #666;
  font-size: 0.92rem;
  margin: 0 0 15px 25px;
}

.legal-content ul li { margin-bottom: 6px; }

/* Footer */
footer {
  background: #1a1a1a;
  color: #aaa;
  padding: 50px 5% 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.footer-col p {
  font-size: 0.85rem;
  line-height: 1.8;
}

.footer-col a {
  display: block;
  color: #aaa;
  text-decoration: none;
  font-size: 0.85rem;
  margin-bottom: 10px;
  transition: color 0.3s;
}

.footer-col a:hover { color: #b8860b; }

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  margin-top: 40px;
  border-top: 1px solid #333;
  font-size: 0.8rem;
}

/* Mobile */
@media (max-width: 768px) {
  .menu-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    padding: 20px 5%;
    gap: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }

  .nav-links.active { display: flex; }

  .hero-content h1 { font-size: 2.2rem; }

  .about-container,
  .contact-container {
    grid-template-columns: 1fr;
  }

  .about-image { height: 300px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats { gap: 25px; }
}
