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

/* BODY */
body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #F5F2F2;
    color: #2B2B2B;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: white;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* LOGO */
.logo h1 {
    font-size: 20px;
    letter-spacing: 3px;
}

.logo .subtitle {
    font-size: 10px;
    color: #777;
}

/* NAV LINKS */
#navMenu {
    display: flex;
    align-items: center;
}

#navMenu a {
    margin-left: 25px;
    text-decoration: none;
    color: #2B2B2B;
    font-size: 14px;
}

/* BOOK BUTTON */
.book-btn {
    background: #D8B4A0;
    padding: 8px 16px;
    border-radius: 5px;
}

/* HOVER */
#navMenu a:hover {
    opacity: 0.7;
}

/* HAMBURGER */
.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* HERO */
.hero {
    text-align: center;
    padding: 80px 20px;
    margin-top: 40px;
}

.hero h2 {
    font-size: 34px;
    margin-bottom: 15px;
}

.hero p {
    color: #666;
    font-size: 16px;
}

.hero button {
    margin-top: 25px;
    padding: 12px 28px;
    background-color: #D8B4A0;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}
/* HERO SECTION UPGRADE */
.hero {
    position: relative;
    height: 90vh;
    background: url('https://images.unsplash.com/photo-1588776814546-ec7e8d1e0b2f') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* OVERLAY */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
}

/* CONTENT */
.hero-content {
    position: relative;
    text-align: center;
    color: white;
    max-width: 600px;
    padding: 20px;
}

.hero-content h2 {
    font-size: 38px;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 16px;
    margin-bottom: 25px;
    color: #e0e0e0;
}

.hero-content button {
    padding: 12px 30px;
    background-color: #D8B4A0;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
section {
    padding-left: 20px;
    padding-right: 20px;
}

.services,
.cta {
    max-width: 1100px;
    margin: auto;
}

/* WHATSAPP BUTTON */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    font-size: 22px;
    padding: 15px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 1000;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

html {
    scroll-behavior: smooth;
}
/* WHATSAPP FLOATING BUTTON */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.25);
    z-index: 999;
    transition: transform 0.2s ease;
}

/* ICON INSIDE */
.whatsapp-float img {
    width: 30px;
    height: 30px;
}

/* HOVER EFFECT */
.whatsapp-float:hover {
    transform: scale(1.1);
}

/* SERVICES */
.services {
    padding: 50px 20px;
}

.services h3 {
    text-align: center;
    margin-bottom: 30px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.card {
    background: white;
    min-height: 120px;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
}

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

/* CTA */
.cta {
    text-align: center;
    padding: 60px 20px;
}

.cta button {
    padding: 12px 25px;
    background: #2B2B2B;
    color: white;
    border: none;
    cursor: pointer;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    font-size: 13px;
    background: white;
    margin-top: 30px;
}

/* MOBILE */
@media (max-width: 768px) {

    .hamburger {
        display: block;
    }

    #navMenu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 20px;
        background: white;
        width: 200px;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    #navMenu a {
        margin: 10px 0;
    }

    #navMenu.active {
        display: flex;
    }
}
/* SLIDER */
.hero {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.slide.active {
    opacity: 1;
    transform: scale(1);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

/* OVERLAY */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(20, 15, 15, 0.55);
}

/* ABOUT SECTION */
.about {
    padding: 80px 20px;
    background: #ffffff;
}

.about-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    gap: 40px;
    align-items: center;
}

/* TEXT */
.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.about-text p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* TRUST POINTS */
.trust-points {
    margin-top: 20px;
}

.trust-points div {
    margin-bottom: 10px;
    font-size: 14px;
}

/* IMAGE */
.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

/* MOBILE */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
    }
}
/* SERVICES GRID */

@media (max-width: 768px) {

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 480px) {

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.havella-about {
  background: #f8f5f2;
  padding: 80px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* TEXT */
.about-text h2 {
  font-size: 38px;
  color: #2a2a2a;
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-text p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

.about-text .lead {
  font-size: 16px;
}

/* STATS */
.stats {
  display: flex;
  gap: 40px;
  margin: 30px 0;
}

.stats h3 {
  color: #c89b6d;
  font-size: 28px;
  margin-bottom: 5px;
}

.stats span {
  font-size: 12px;
  letter-spacing: 1px;
  color: #777;
  text-transform: uppercase;
}

/* CTA */
.cta {
  text-decoration: none;
  color: #c89b6d;
  font-weight: 500;
  border-bottom: 1px solid #c89b6d;
  padding-bottom: 4px;
  transition: 0.3s;
}

.cta:hover {
  opacity: 0.7;
}

/* IMAGE */
.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

/* BADGE */
.badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: white;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  font-size: 14px;
}

.badge strong {
  display: block;
  color: #2a2a2a;
}

.badge span {
  color: #999;
  font-size: 12px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .container {
    grid-template-columns: 1fr;
  }

  .about-text h2 {
    font-size: 28px;
  }

  .stats {
    justify-content: space-between;
  }
}
/* TESTIMONIALS */
.testimonials {
    padding: 80px 20px;
    background: #F5F2F2;
    text-align: center;
}

.testimonials h3 {
    margin-bottom: 40px;
    font-size: 26px;
}

/* GRID */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: auto;
}

/* CARD */
.testimonial-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
}

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

/* MOBILE */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}
/* BEFORE AFTER */
.before-after {
    padding: 80px 20px;
    text-align: center;
    background: white;
}

.ba-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: auto;
    margin-top: 30px;
}

.ba-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}

.ba-card p {
    font-size: 14px;
    color: #555;
}

/* MOBILE */
@media (max-width: 768px) {
    .ba-grid {
        grid-template-columns: 1fr;
    }
}

/* BOOKING */
.booking {
    padding: 80px 20px;
    background: #F5F2F2;
    text-align: center;
}

.booking-form {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

.booking-form textarea {
    min-height: 100px;
    resize: none;
}

.booking-form button {
    padding: 12px;
    background: #D8B4A0;
    border: none;
    cursor: pointer;
    font-size: 14px;
}
/* FOOTER */
.footer {
    background: white;
    padding: 40px 20px;
    text-align: center;
}

.footer h3 {
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.footer p {
    color: #777;
    font-size: 13px;
}

.footer-links p {
    margin-top: 5px;
}
.havella-footer {
  background: #281623;
  color: #ccc;
  padding: 60px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
}

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

/* BRAND */
.footer-brand h3 {
  color: #fff;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* SOCIALS */
.socials a {
  display: inline-block;
  margin-right: 10px;
  color: #ccc;
  border: 1px solid #333;
  padding: 8px 10px;
  border-radius: 6px;
  transition: 0.3s;
}

.socials a:hover {
  color: #c89b6d;
  border-color: #c89b6d;
}

/* LINKS */
.footer-links h4,
.footer-cta h4 {
  color: #fff;
  margin-bottom: 15px;
}

.footer-links a {
  display: block;
  color: #aaa;
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 14px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #c89b6d;
}

/* BUTTON */
.footer-btn {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #c89b6d;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1px;
  transition: 0.3s;
}

.footer-btn:hover {
  background: #c89b6d;
  color: #281623;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid #281623;
  margin-top: 40px;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}

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

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}
/* SPLIT CTA SECTION */
.cta-split {
    display: flex;
    gap: 40px;
    padding: 80px 20px;
    background: #F5F2F2;
    max-width: 1100px;
    margin: auto;
    align-items: center;
}

/* LEFT SIDE */
.cta-booking {
    flex: 1;
}

.cta-booking h3 {
    font-size: 26px;
    margin-bottom: 10px;
}

.cta-booking p {
    color: #666;
    margin-bottom: 20px;
}

.cta-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #D8B4A0;
    color: black;
    text-decoration: none;
    border-radius: 5px;
}

/* RIGHT SIDE */
.cta-contact {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 10px;
}

.cta-contact h4 {
    margin-bottom: 15px;
}

.cta-contact p {
    margin-bottom: 10px;
    font-size: 14px;
    color: #555;
}

/* MOBILE */
@media (max-width: 768px) {
    .cta-split {
        flex-direction: column;
        text-align: center;
    }
}
.contact-modern {
  background: #f6f4f1;
  padding: 80px 20px;
}

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

/* MAP */
.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border-radius: 12px;
}

/* RIGHT SIDE */
.contact-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* CARDS */
.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.contact-cards .card {
  background: #fff;
  padding: 18px;
  border-radius: 12px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-cards i {
  color: #c96a2b;
  font-size: 18px;
}

/* FORM */
.contact-form {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.contact-form h3 {
  margin-bottom: 15px;
  border-left: 4px solid #c96a2b;
  padding-left: 10px;
}

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

.form-row {
  display: flex;
  gap: 10px;
}

.form-row input {
  width: 50%;
}

.contact-form textarea {
  min-height: 120px;
}

.contact-form button {
  background: #c96a2b;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #a65320;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .form-row {
    flex-direction: column;
  }

  .form-row input {
    width: 100%;
  }
}
.contact-form select {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
  background: #fff;
  appearance: none;
  cursor: pointer;
}
.contact-form select:focus {
  border-color: #c96a2b;
  outline: none;
}
.hero-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #D8B4A0;
    border-radius: 5px;
    text-decoration: none;
    color: black;
}

/* PAGE HEADER */
.page-header {
    text-align: center;
    padding: 60px 20px;
}

.page-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.page-header p {
    color: #666;
}

/* SERVICES PAGE */
.services-page {
    padding: 40px 20px;
}

/* SERVICE CARD */
.service-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    transition: 0.3s;
}

.service-card h4 {
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.service-card a {
    text-decoration: none;
    font-size: 14px;
    color: #D8B4A0;
}

/* HOVER */
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}/* PAGE HEADER */
.page-header {
    text-align: center;
    padding: 60px 20px;
}

.page-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.page-header p {
    color: #666;
}

/* SERVICES PAGE */
.services-page {
    padding: 40px 20px;
}

/* SERVICE CARD */
.service-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    transition: 0.3s;
}

.service-card h4 {
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.service-card a {
    text-decoration: none;
    font-size: 14px;
    color: #D8B4A0;
}

/* HOVER */
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.services-section {
  padding: 60px 8%;
  background: #f8f6f4;
}

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

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

.service-card:hover {
  transform: translateY(-8px);
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-content {
  padding: 20px;
}

.service-category {
  font-size: 12px;
  color: #c58b6d; /* soft nude accent */
  font-weight: 600;
  letter-spacing: 1px;
}

.service-content h3 {
  margin: 10px 0;
  font-size: 20px;
  color: #222;
}

.service-content p {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.btn-consult {
  display: inline-block;
  padding: 10px 20px;
  background: #c58b6d;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.btn-consult:hover {
  background: #a06d55;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 10px;
  color: #222;
}

.section-subtitle {
  text-align: center;
  font-size: 14px;
  color: #777;
  margin-bottom: 40px;
}

/* PAGE */
body {
  background: #f8f6f4;
  font-family: Arial, sans-serif;
}

/* HEADER */
.booking-header {
  text-align: center;
  margin-top: 40px;
}

.booking-header h1 {
  font-size: 32px;
}

.booking-header p {
  color: #777;
}

/* FORM CARD */
.booking-container {
  max-width: 600px;
  margin: 40px auto;
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* FORM */
.booking-form label {
  display: block;
  margin-top: 15px;
  font-size: 14px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 12px;
  margin-top: 5px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.booking-form textarea {
  resize: none;
  height: 100px;
}

/* BUTTON */
.book-btn-submit {
  margin-top: 20px;
  width: 100%;
  padding: 14px;
  background: #c58b6d;
  color: #fff;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
}

.book-btn-submit:hover {
  background: #a06d55;
}

/* SELECTED SERVICE DISPLAY */
.selected-service {
  background: #f3ece7;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 15px;
  font-size: 14px;
}

.contact-section {
  padding: 50px 20px;
  background: #f7f7f7;
}

.contact-wrapper {
  display: flex;
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

/* MAP */
.contact-map {
  flex: 1;
  min-height: 750px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* RIGHT */
.contact-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* INFO GRID */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.info-card {
  background: white;
  padding: 15px;
  border-radius: 12px;
  display: flex;
  gap: 10px;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.info-card .icon {
  font-size: 18px;
  background: #fff3eb;
  padding: 10px;
  border-radius: 10px;
}

/* FORM */
.form-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-row {
  display: flex;
  gap: 10px;
}

.form-card input,
.form-card textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.form-card textarea {
  height: 120px;
  resize: none;
}

.form-card button {
  width: 100%;
  padding: 12px;
  background: #2B1624;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.social-icons {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-wrapper {
    flex-direction: column;
  }

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

  .form-row {
    flex-direction: column;
  }

  .contact-map {
    min-height: 350px;
  }
}

/* ===== TESTIMONIAL PAGE STYLES ===== */

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #fafafa;
}

/* Page container */
.testimonials-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
}

/* Header */
.page-title {
    text-align: center;
    margin-bottom: 40px;
}

.page-title h1 {
    font-size: 32px;
    color: #222;
    margin-bottom: 10px;
}

.page-title p {
    color: #777;
    font-size: 15px;
}

/* Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

/* Card */
.testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
}

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

/* Quote */
.quote {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 20px;
}

/* Client info */
.client {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #555;
}

.client-info h4 {
    margin: 0;
    font-size: 15px;
    color: #222;
}

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

/* Rating */
.stars {
    margin-top: 8px;
    color: #f5b301;
    font-size: 13px;
}

/* Footer section */
.testimonial-footer {
    text-align: center;
    margin-top: 60px;
    font-size: 13px;
    color: #666;
}

.socials {
    margin-top: 10px;
}

.socials span {
    margin: 0 10px;
}
/* =========================
   REVIEW FORM SECTION
========================= */

.review-section {
    padding: 70px 20px;
    background: #ffffff;
}

.review-container {
    max-width: 650px;
    margin: auto;
    text-align: center;
}

.review-container h2 {
    font-size: 28px;
    margin-bottom: 8px;
    color: #222;
}

.review-container p {
    font-size: 14px;
    color: #777;
    margin-bottom: 30px;
}

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

/* Inputs */
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
    background: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #b8b8b8;
    background: #fff;
}

/* Button */
.review-form button {
    padding: 12px;
    border: none;
    border-radius: 10px;
    background: #222;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}

.review-form button:hover {
    background: #444;
}

/* Responsive spacing */
@media (max-width: 600px) {
    .review-container {
        padding: 0 10px;
    }
}

/* =========================
   ABOUT PAGE
========================= */

.about-section {
    padding: 70px 20px;
    background: #fafafa;
}

.about-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

/* Image */
.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
}

/* Content */
.about-content {
    flex: 1;
}

.about-content h1 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #222;
}

.about-content p {
    font-size: 14.5px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 12px;
}

/* Points */
.about-points {
    margin-top: 20px;
}

.point {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #333;
    font-size: 14px;
}

.point i {
    color: #777;
}

/* Mission */
.mission-section {
    padding: 60px 20px;
    background: #fff;
    text-align: center;
}

.mission-container {
    max-width: 800px;
    margin: auto;
}

.mission-container h2 {
    font-size: 26px;
    margin-bottom: 10px;
}

.mission-container p {
    color: #666;
    font-size: 14.5px;
    line-height: 1.7;
}

/* Team */
.team-section {
    padding: 70px 20px;
    background: #fafafa;
    text-align: center;
}

.team-section h2 {
    font-size: 26px;
    margin-bottom: 30px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: auto;
}

.team-card {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.team-card i {
    font-size: 22px;
    margin-bottom: 10px;
    color: #555;
}

.team-card h3 {
    margin-bottom: 8px;
    font-size: 16px;
}

.team-card p {
    font-size: 13.5px;
    color: #666;
}

/* Footer */
.about-footer {
    padding: 50px 20px;
    text-align: center;
    background: #fff;
}

.about-footer p {
    font-size: 14px;
    color: #444;
    margin-bottom: 15px;
}

.footer-contacts span {
    display: inline-block;
    margin: 0 10px;
    font-size: 13px;
    color: #666;
}

.footer-contacts i {
    margin-right: 5px;
}

/* =========================
   GALLERY PAGE
========================= */

.gallery-section {
    padding: 70px 20px;
    background: #fafafa;
    text-align: center;
}

.gallery-header h1 {
    font-size: 32px;
    color: #222;
    margin-bottom: 10px;
}

.gallery-header p {
    font-size: 14px;
    color: #777;
    margin-bottom: 40px;
}

/* Grid */
.gallery-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 18px;
}

/* Items */
.gallery-item {
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    background: #fff;
    transition: transform 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item:hover {
    transform: translateY(-5px);
}

/* CTA */
.gallery-cta {
    padding: 70px 20px;
    text-align: center;
    background: #fff;
}

.gallery-cta h2 {
    font-size: 26px;
    margin-bottom: 10px;
}

.gallery-cta p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.cta-btn {
    display: inline-block;
    padding: 12px 22px;
    background: #222;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.cta-btn:hover {
    background: #444;
}

#chatbot-toggle {
    position: fixed;
    bottom: 95px;
    right: 25px;
    background: #222;
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    z-index: 9999;
}

#chatbot-box {
    position: fixed;
    bottom: 160px;
    right: 25px;
    width: 320px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 9999;
}

.chat-header {
    background: #222;
    color: #fff;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.chat-body {
    padding: 10px;
    height: 230px;
    overflow-y: auto;
    font-size: 13px;
}

.bot-msg {
    background: #f1f1f1;
    padding: 8px;
    border-radius: 10px;
    margin-bottom: 8px;
}

.user-msg {
    background: #222;
    color: #fff;
    padding: 8px;
    border-radius: 10px;
    margin-bottom: 8px;
    text-align: right;
}

.chat-options {
    display: flex;
    gap: 5px;
    padding: 8px;
}

.chat-options button {
    flex: 1;
    font-size: 11px;
    padding: 6px;
    border: none;
    border-radius: 8px;
    background: #eee;
    cursor: pointer;
}

.chat-input {
    display: flex;
    border-top: 1px solid #eee;
}

.chat-input input {
    flex: 1;
    padding: 10px;
    border: none;
    outline: none;
}

.chat-input button {
    background: #222;
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
}

/* ================= AI POPUP ================= */

#ai-popup {
    position: fixed;
    bottom: 90px;
    right: 25px;
    background: #222;
    color: #fff;
    padding: 12px 14px;
    border-radius: 12px;
    max-width: 260px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    z-index: 10000;

    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: 0.4s ease;
}

#ai-popup.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.ai-title {
    font-size: 12px;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    color: #aaa;
}

.ai-popup-content p {
    margin: 0;
    font-size: 13px;
    line-height: 1.4;
}