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

body,
html {
  font-family: "Segoe UI", sans-serif;
  color: #333;
  scroll-behavior: smooth;
}

:root {
  --primary-color: #eee;
  --secondary-color: #c29863;
}

section {
  margin-bottom: 50px;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.btn {
  background: var(--secondary-color);
  color: #fff;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 3px;
  border: none;
  font-size: 18px;
}

.btn:hover {
  cursor: pointer;
}
/*================= Top Header */
.top-header {
  background: #1f1f1f;
  color: var(--primary-color);
  font-size: 14px;
  padding: 10px 0;
}

.top-header .left-icons a {
  margin-right: 15px;
  color: var(--primary-color);
}

.top-header .middle-info {
  flex: 1;
  text-align: center;
  font-size: 14px;
}

.top-header .middle-info i {
  margin-right: 5px;
}

.top-header .right-links a {
  color: var(--primary-color);
  margin-left: 10px;
}

/*===================  Main Header */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 20px 80px;
  border-bottom: 1px solid var(--primary-color);
  position: relative;
  z-index: 999;
}

.main-header .logo img {
  width: 120px;
  height: auto;
}

.main-header nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
  transition: all 0.3s ease;
}

.main-header nav a {
  color: #000;
  font-weight: 500;
  transition: color 0.3s;
}

.main-header nav a:hover {
  color: var(--secondary-color);
}

.booking-btn {
  background: var(--primary-color);
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.3s;
}

.booking-btn:hover {
  background: var(--secondary-color);
  color: #fff;
}

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

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #000;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/*==================================================
                     Hero Section 
  ==============================================*/
.hero {
  background: #ccc url("../images/hero.jpg") no-repeat center center / cover;
  color: #fff;
  text-align: left;
  padding: 120px 0;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin-left: 5%;
}

.hero-content .subtitle {
  color: #ccc;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  border-left: 3px solid var(--secondary-color);
  padding-left: 10px;
  margin-bottom: 10px;
}

.hero-content h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 15px;
}

.hero-content .desc {
  font-size: 16px;
}

.hero-content .btn {
  margin-top: 20px;
}

/* ============== Services Section */
.services-section {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 40px;
}

.section-subtitle {
  display: inline-block;
  font-size: 14px;
  color: #c18a46;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1f1f1f;
  line-height: 1.3;
}

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

.service-card {
  position: relative;
  background: #fff;
  border: 1px solid #e0e0e0;
  padding: 30px 20px;
  text-align: left;
  overflow: hidden;
  transition: all 0.4s ease;
  height: 250px;
}

.service-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.icon-box {
  width: 80px;
  height: 80px;
  background: #c29863;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  margin: 0 auto 15px;
}

.service-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px;
  color: #1f1f1f;
}

.service-content p {
  width: 80%;
  font-size: 15px;
  color: #777;
  line-height: 1.6;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.read-more {
  position: absolute;
  height: 100%;
  text-align: center;
  right: 0;
  top: 0;
  background: #f5f5f5;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: bold;
  color: #c18a46;
  letter-spacing: 1px;
  writing-mode: vertical-rl;
  cursor: pointer;
  transition: background 0.5s;
}

.read-more span {
  display: inline-block;
  transform: rotate(90deg);
}

.service-card:hover .read-more {
  display: block;
  background: #1f1f1f;
  color: #fff;
}

.service-card:hover .service-content p {
  opacity: 1;
  max-height: 200px;
  margin-top: 15px;
}

/*===============================================
            <!-- Who We Are Section --> 
 ================================================*/
.who-we-are {
  background-color: #f8f8f8;
  padding: 60px 20px;
  font-family: "Segoe UI", sans-serif;
}

.stats-counters {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.counter-box {
  text-align: center;
  padding: 20px;
}

.counter-box i {
  font-size: 36px;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  margin-bottom: 10px;
  padding: 20px;
  border-radius: 10px;
}

.counter-box i:hover {
  background-color: #000;
  transition: ease 0.5s;
}

.counter-box h3 {
  font-size: 28px;
  color: #000;
  margin-bottom: 5px;
}

.counter-box p {
  font-size: 14px;
  color: #555;
}

.who-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.who-left {
  background: #c18a46;
  color: #fff;
  padding: 40px 30px;
}

.who-left h2 {
  font-size: 24px;
  margin-bottom: 30px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.feature-item i {
  font-size: 24px;
}

.feature-item h4 {
  font-size: 16px;
  margin-bottom: 5px;
}

.feature-item p {
  font-size: 14px;
  opacity: 0.85;
}

.who-right .subheading {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
  color: #c18a46;
  display: inline-block;
  margin-bottom: 10px;
}

.who-right h3 {
  font-size: 26px;
  color: #1f1f1f;
  margin-bottom: 15px;
}

.who-right p {
  color: #444;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.progress-box {
  margin-bottom: 20px;
}

.progress-box span {
  font-size: 14px;
  color: #1f1f1f;
  margin-bottom: 5px;
  display: block;
}

.progress-bar {
  height: 6px;
  background: #ddd;
  border-radius: 5px;
  overflow: hidden;
}

.progress {
  height: 6px;
  background: #c18a46;
}

.call-box {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
}

.call-box i {
  font-size: 22px;
  color: #c18a46;
}

.call-box span {
  font-size: 13px;
  color: #777;
}

.call-box strong {
  font-size: 16px;
  color: #000;
}

/*===============================================
            <!-- Premium services Section --> 
 ================================================*/
.branded-services-section {
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  margin-bottom: 50px;
}

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

.section-subtitle {
  font-size: 14px;
  color: #c58a42;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: inline-block;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1d1d1d;
}

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

.image-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.image-card:hover {
  transform: translateY(-6px);
}

.image-card .image {
  height: 200px;
  background-size: cover;
  background-position: center;
  transition: 0.4s ease;
}

.image-card .content {
  padding: 25px 20px;
}

.image-card h3 {
  font-size: 20px;
  color: #1d1d1d;
  margin-bottom: 10px;
  font-weight: 600;
}

.image-card p {
  font-size: 15px;
  color: #555;
  margin-bottom: 12px;
}

.read {
  font-size: 14px;
  color: #c58a42;
  text-decoration: none;
  font-weight: 600;
}

/*===============================================
            <!-- Capabilities Section --> 
 ================================================*/
.section-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.text-content {
  flex: 1;
  max-width: 550px;
}

.text-content h4 {
  color: #d48b28;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 14px;
}

.text-content h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.text-content p {
  font-size: 15px;
  color: #555;
  margin-bottom: 24px;
}

.accordion {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
}

.accordion-item {
  border-top: 1px solid #eee;
}

.accordion-header {
  background: #f9f9f9;
  padding: 16px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.accordion-header.active {
  background: #222;
  color: #fff;
}

.accordion-content {
  padding: 16px;
  display: none;
  font-size: 14px;
  color: #555;
}

.accordion-header.active + .accordion-content {
  display: block;
}

.image-content {
  flex: 1;
  position: relative;
  text-align: center;
}

.image-content img {
  max-width: 100%;
  height: auto;
}

.rating-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 2px solid #d48b28;
  padding: 10px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  font-weight: 600;
  color: #222;
}

.stars {
  color: #fbbf24;
}

/*=========================================================
                   Testimonials Section 
  =============================================================*/
.testimonials-section {
  background: #f4f4f4;
  padding: 100px 20px;
  text-align: center;
  margin-top: 20px;
}

.testimonials-section .section-header {
  margin-bottom: 60px;
}

.testimonials-section .section-subtitle {
  color: #c58a42;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: inline-block;
}

.testimonials-section h2 {
  font-size: 32px;
  color: #1d1d1d;
  font-weight: 700;
}

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

.testimonial-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
}

.testimonial-content p {
  font-size: 15px;
  color: #555;
  font-style: italic;
  margin-bottom: 25px;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.client-info img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #c58a42;
}

.client-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1d1d1d;
  margin: 0;
}

.client-info span {
  font-size: 13px;
  color: #888;
}

/*=========================================================
                   Get in Touch Section 
  =============================================================*/
.get-in-touch-section {
  padding: 60px 20px;
  font-family: "Poppins", sans-serif;
}

.touch-card {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.touch-left,
.touch-right {
  flex: 1;
  min-width: 300px;
  padding: 40px;
}

.touch-left h2 {
  font-size: 28px;
  color: #1f1f1f;
  margin-bottom: 20px;
}

.touch-left h2 span {
  color: #c18a46;
}

.touch-left p {
  font-size: 15px;
  color: #555;
  margin-bottom: 30px;
}

.contact-info {
  list-style: none;
  padding: 0;
}

.contact-info li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #333;
}

.contact-info i {
  color: #c18a46;
  margin-right: 10px;
}

/* Form Styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  width: 100%;
}

.btn-submit {
  background-color: #c18a46;
  color: #fff;
  padding: 12px 18px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-submit i {
  margin-left: 8px;
}

.btn-submit:hover {
  background-color: #a77235;
}

/* ======================================================
            Foter section
==========================================================*/
footer {
  background-color: #1a1a1a;
  padding: 60px 20px 20px;
  position: relative;
  margin-top: 50px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-col {
  flex: 1;
  min-width: 220px;
}

.footer-col h3 {
  font-size: 18px;
  margin-bottom: 16px;
  position: relative;
}

.footer-col h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background-color: #d48b28;
  margin-top: 4px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
  color: #bbb;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  color: #ccc;
  font-size: 16px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #d48b28;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #bbb;
}

.footer-links li:hover,
.footer-contact li:hover {
  color: #fff;
  cursor: pointer;
}

.footer-contact li i {
  color: #d48b28;
  margin-right: 10px;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  padding: 20px 0 0;
  margin-top: 40px;
  font-size: 13px;
  color: #aaa;
}

.footer-bottom span {
  color: #d48b28;
}

/* ==================================================================
                                Responsive  CSS
  ==================================================================*/
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  .top-header {
    display: none;
  }

  .main-header {
    padding: 10px 20px;
  }
  .menu-toggle {
    display: flex;
  }

  .main-header .logo img {
    width: 70px;
  }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--secondary-color);
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }

  nav.open {
    max-height: 400px;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
    padding: 20px;
    gap: 15px;
  }

  .main-header nav a {
    color: #fff;
  }

  .main-header nav a:hover {
    color: var(--primary-color);
  }

  .booking-btn {
    display: none;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .booking-btn {
    margin-top: 15px;
  }

  .top-header {
    font-size: 12px;
    padding: 8px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .explore-link {
    writing-mode: horizontal-tb;
    position: static;
    transform: none;
    margin-top: 15px;
  }

  .who-content-grid {
    grid-template-columns: 1fr;
  }

  .stats-counters {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .who-left,
  .who-right {
    padding: 30px 20px;
  }

  .branded-services-section {
    padding: 10px 20px;
  }

  .section-container {
    flex-direction: column;
    padding: 10px 20px;
  }

  .get-in-touch-section {
    padding: 10px 20px;
  }

  .touch-card {
    flex-direction: column;
  }

  .touch-left,
  .touch-right {
    padding: 25px;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  .footer-col h3::after {
    margin-left: auto;
    margin-right: auto;
  }
  .social-icons {
    justify-content: center;
  }
}
