/* ================= GLOBAL ================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", sans-serif;
  background: #efede6;
  color: #111;
  scroll-padding-top: 90px; /* prevents section hiding */
}

/* ================= NAVBAR ================= */

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  background: #efede6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 4rem;
  z-index: 1000;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
  font-size: 1.1rem;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: #000;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-weight: bold;
}

/* Nav Links */
.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  position: relative;
  transition: 0.3s ease;
}

.nav-links a:hover {
  opacity: 0.6;
}

/* Contact Button */
.nav-btn {
  padding: 0.8rem 1.6rem;
  border-radius: 30px;
  border: none;
  background: #000;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s ease;
}

.nav-btn:hover {
  opacity: 0.8;
}

/* ================= HERO ================= */

.hero {
  padding: 150px 4rem 4rem;
}

/* Top Layout */
.hero-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3.5rem;
}

/* Heading */
.hero-left h1 {
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.1;
  max-width: 800px;
}

/* Right Description */
.hero-right {
  max-width: 400px;
}

.hero-right p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 1rem;
}

.view-more {
  text-decoration: none;
  font-weight: 600;
  color: #000;
  transition: 0.3s ease;
}

.view-more:hover {
  opacity: 0.6;
}

/* Large Rounded Image */
.hero-image img {
  width: 100%;
  border-radius: 32px;
  display: block;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1100px) {
  .hero-left h1 {
    font-size: 3.2rem;
  }

  .hero-right {
    max-width: 320px;
  }
}

@media (max-width: 900px) {
  .navbar {
    padding: 0 2rem;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding: 130px 2rem 3rem;
  }

  .hero-top {
    flex-direction: column;
    gap: 2rem;
  }

  .hero-left h1 {
    font-size: 2.6rem;
  }

  .hero-right {
    max-width: 100%;
  }
}

/* ================= ABOUT ================= */

.about {
  padding: 100px 4rem;
  background: #efede6; /* same theme */
}

.about-container {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
}

/* Left Side */
.about-left {
  max-width: 600px;
}

.about-left h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.about-left p {
  line-height: 1.7;
  color: #555;
  margin-bottom: 1.2rem;
}

/* Right Side */
.about-right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 350px;
}

.about-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.about-item p {
  color: #666;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 900px) {
  .about {
    padding: 80px 2rem;
  }

  .about-container {
    flex-direction: column;
  }

  .about-right {
    max-width: 100%;
  }
}

/* ================= SERVICES ================= */

.services {
  padding: 100px 4rem;
  background: #efede6;
}

.services-container {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
}

/* Left Side */
.services-left {
  max-width: 500px;
}

.services-left h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.services-left p {
  color: #555;
  line-height: 1.7;
}

/* Right Grid */
.services-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 600px;
}

/* Cards */
.service-card {
  padding: 2rem;
  border: 1px solid #ddd;
  border-radius: 20px;
  transition: 0.3s ease;
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

.service-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: #bbb;
}

/* Responsive */
@media (max-width: 900px) {
  .services {
    padding: 80px 2rem;
  }

  .services-container {
    flex-direction: column;
  }

  .services-right {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
}
/* ================= WHY CHOOSE US ================= */

.why {
  padding: 100px 4rem;
  background: #efede6;
}

.why-container {
  max-width: 1200px;
  margin: auto;
}

.why-header {
  text-align: center;
  margin-bottom: 4rem;
}

.why-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.why-header p {
  max-width: 600px;
  margin: auto;
  color: #555;
  line-height: 1.7;
}

/* Grid */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

/* Cards */
.why-card {
  padding: 2rem;
  border: 1px solid #ddd;
  border-radius: 20px;
  transition: 0.3s ease;
}

.why-card h3 {
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

.why-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: #bbb;
}

/* Responsive */
@media (max-width: 900px) {
  .why {
    padding: 80px 2rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }
}
/* ================= TESTIMONIAL ================= */

.testimonial {
  padding: 100px 4rem;
  background: #efede6;
}

.testimonial-container {
  max-width: 1200px;
  margin: auto;
}

.testimonial-header {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonial-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.testimonial-header p {
  max-width: 600px;
  margin: auto;
  color: #555;
  line-height: 1.7;
}

/* Grid */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Card */
.testimonial-card {
  padding: 2rem;
  border: 1px solid #ddd;
  border-radius: 20px;
  background: #fff;
  transition: 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: #bbb;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 1.8rem;
}

/* Author */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #efede6;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #ddd;
}

.author-img svg {
  width: 22px;
  height: 22px;
}
.testimonial-author h4 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: #777;
}

/* Responsive */
@media (max-width: 1000px) {
  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .testimonial {
    padding: 80px 2rem;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= PREMIUM CONTACT (NO FORM) ================= */

.contact {
  padding: 140px 4rem;
  background: #efede6;
}

.contact-inner {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

/* Heading */
.contact-heading {
  margin-bottom: 5rem;
}

.contact-heading h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.contact-heading p {
  color: #555;
  max-width: 600px;
  margin: auto;
  line-height: 1.7;
}

/* Info Row */
.contact-info {
  display: flex;
  justify-content: center;
  gap: 6rem;
  border-top: 1px solid #ddd;
  padding-top: 3rem;
}

.contact-block span {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 1rem;
}

.contact-block p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #222;
}

.contact-block a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 900px) {
  .contact {
    padding: 100px 2rem;
  }

  .contact-heading h2 {
    font-size: 2.2rem;
  }

  .contact-info {
    flex-direction: column;
    gap: 3rem;
  }
}
/* ================= PREMIUM FOOTER ================= */

.footer {
  padding: 120px 4rem 60px;
  background: #efede6;
  border-top: 1px solid #ddd;
}

/* Top Statement */
.footer-top {
  text-align: center;
  margin-bottom: 4rem;
}

.footer-top h2 {
  font-size: 2.5rem;
  max-width: 800px;
  margin: auto;
  line-height: 1.3;
}

/* Middle Navigation */
.footer-middle {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-middle a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  transition: 0.3s ease;
}

.footer-middle a:hover {
  opacity: 0.6;
}

/* Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: #666;
  border-top: 1px solid #ddd;
  padding-top: 2rem;
}

/* Responsive */
@media (max-width: 900px) {
  .footer {
    padding: 100px 2rem 50px;
  }

  .footer-middle {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
