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

body {
  font-family: "Poppins", sans-serif;
  background-color: #f8f9fa;
  color: #222;
  scroll-behavior: smooth;
}

/* Header */
header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #00796b;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 40px;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.logo-img:hover {
  transform: scale(1.06);
}

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

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 500;
}

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

/* Hero Section */
.hero {
  background: url("https://images.unsplash.com/photo-1619551731334-bc7a45a7369b") center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding-top: 70px;
}

.hero-content {
  background: rgba(0, 0, 0, 0.6);
  padding: 30px;
  border-radius: 12px;
}

.hero h1 {
  font-size: 2.5rem;
}

.hero p {
  margin: 15px 0;
}

.btn {
  background-color: #ffe082;
  color: #333;
  padding: 10px 18px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
}

.btn:hover {
  background-color: #ffd54f;
}

/* About Section */
.about {
  padding: 100px 40px 60px;
  background: #fff;
  text-align: center;
}

.about h2 {
  color: #00796b;
  margin-bottom: 10px;
}

.about-images {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.about-images img {
  width: 40%;
  border-radius: 10px;
}

/* Products Section */
.products {
  background-color: #f0fdf4;
  padding: 80px 40px;
  text-align: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

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

.card-content {
  padding: 20px;
  text-align: center;
}

.card-content h3 {
  color: #00796b;
  margin-bottom: 10px;
  font-size: 1.25rem;
  font-weight: 600;
}

.card-content p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Details Section */
.details {
  padding: 80px 40px;
  background: #fff;
}

.details ul {
  list-style: none;
  line-height: 2;
  font-size: 1.1rem;
}

.details strong {
  color: #00796b;
}

/* Chat Section */
.chat {
  padding: 80px 40px;
  background-color: #e0f7fa;
  text-align: center;
}

.chat-box {
  background: white;
  border-radius: 10px;
  max-width: 500px;
  margin: 20px auto;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.chat-log {
  height: 200px;
  overflow-y: auto;
  border: 1px solid #ccc;
  padding: 10px;
  text-align: left;
}

.chat-input {
  display: flex;
  margin-top: 10px;
}

.chat-input input {
  flex: 1;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #aaa;
}

.chat-input button {
  padding: 10px 15px;
  border: none;
  background-color: #00796b;
  color: white;
  border-radius: 6px;
  margin-left: 5px;
}

.chat-input button:hover {
  background-color: #004d40;
}

/* Footer */
footer {
  background-color: #00796b;
  color: white;
  text-align: center;
  padding: 15px;
  font-size: 0.9rem;
  margin-top: 40px;
}
/* 🐥 Gallery Section */
.gallery {
  background-color: #ffffff;
  padding: 80px 40px;
  text-align: center;
}

.gallery h2 {
  color: #00796b;
  margin-bottom: 10px;
  font-size: 2.2rem;
  font-weight: 700;
}

.gallery p {
  color: #555;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  background-color: #f1f5f9;
  color: #475569;
  border: none;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  font-family: inherit;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.filter-btn:hover {
  background-color: #e2e8f0;
  transform: translateY(-1px);
}

.filter-btn.active {
  background-color: #00796b;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 121, 107, 0.3);
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.gallery-item.hidden {
  display: none;
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 121, 107, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 20px;
  text-align: center;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  transform: translateY(15px);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay span {
  transform: translateY(0);
}

/* Lightbox Overlay */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 999;
}

.lightbox.active {
  visibility: visible;
  opacity: 1;
}

.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255,255,255,0.2);
  transition: transform 0.2s;
}

.lightbox img:hover {
  transform: scale(1.02);
}

.lightbox::after {
  content: "✕";
  position: absolute;
  top: 20px;
  right: 40px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}



/* Floating Buttons */
.float-btn {
  position: fixed;
  right: 20px;
  width: 55px;
  height: 55px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  z-index: 999;
  transition: transform .3s ease, box-shadow .3s ease;
}

.float-btn img {
  width: 28px;
  height: 28px;
}

.float-btn:hover {
  transform: scale(1.15);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.fb {
  bottom: 230px;
  background: #1877f2;
}

.ig {
  bottom: 160px;
  background: #E1306C;
}


/* Floating WhatsApp Button */
.float-whatsapp {
  position: fixed;
  bottom: 90px;  /* Adjust so it sits above IG & FB */
  right: 20px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: transform .3s ease, box-shadow .3s ease;
}

.float-whatsapp img {
  width: 32px;
  height: 32px;
}

.float-whatsapp:hover {
  transform: scale(1.15);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* Floating tranportion Button */
.transport-section {
  padding: 60px 20px;
  background: #f5fff2;
  text-align: center;
}

.transport-section h2 {
  font-size: 32px;
  color: #0b7a2a;
  margin-bottom: 40px;
  font-weight: 700;
}

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

.transport-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: left;
  transition: .3s ease;
  border-left: 6px solid #0b7a2a;
}

.transport-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.transport-card h3 {
  color: #0b7a2a;
  margin-bottom: 10px;
}

.transport-card p {
  margin: 4px 0;
  font-size: 15px;
  color: #333;
}

.float-map {
  position: fixed;
  bottom: 160px;   /* adjust spacing */
  right: 20px;
  width: 50px;
  height: 50px;
  z-index: 1000;
}

.float-map img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}



/* Floating Buttons (same style) */
.float-btn {
  position: fixed;
  right: 20px;
  width: 55px;
  height: 55px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  z-index: 999;
  transition: transform .3s ease, box-shadow .3s ease;
}

.float-btn img {
  width: 28px;
  height: 28px;
}

.float-btn:hover {
  transform: scale(1.15);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Button positions (adjust spacing if needed) */
.fb  { bottom: 230px; background: #1877f2; }
.ig  { bottom: 160px; background: #E1306C; }
.wa  { bottom: 90px;  background: #25D366; }
.map { bottom: 20px;  background: #ff3b30; }  /* Red map icon */

/* ==========================================================================
   Services Section Style
   ========================================================================== */
.services {
  background-color: #ffffff;
  padding: 80px 40px;
  text-align: center;
}

.services h2 {
  color: #00796b;
  font-size: 2.2rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.section-subtitle {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.service-card {
  background: #f9fbf9;
  border: 1px solid #e8f5e9;
  padding: 35px 25px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.3s ease;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 121, 107, 0.1);
  border-color: #a5d6a7;
}

.service-icon {
  width: 70px;
  height: 70px;
  background: #e8f5e9;
  color: #00796b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.service-icon svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
}

.service-card:hover .service-icon {
  background: #00796b;
  color: #ffffff;
  transform: rotate(10deg) scale(1.05);
}

.service-card h3 {
  color: #00796b;
  margin-bottom: 12px;
  font-size: 1.35rem;
  font-weight: 600;
}

.service-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================================================
   Reviews Section Style
   ========================================================================== */
.reviews {
  background-color: #f0fdf4;
  padding: 80px 40px;
  text-align: center;
}

.reviews h2 {
  color: #00796b;
  font-size: 2.2rem;
  margin-bottom: 10px;
  font-weight: 700;
}

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

.review-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.review-card .rating {
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.review-card .feedback {
  color: #4a5568;
  font-size: 1rem;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 20px;
  flex-grow: 1;
}

.review-card .customer-info {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid #edf2f7;
  padding-top: 15px;
}

.review-card .avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #e0f2f1;
  color: #00796b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.review-card h4 {
  color: #2d3748;
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

.review-card span {
  color: #718096;
  font-size: 0.85rem;
}

/* ==========================================================================
   FAQ Section Styles
   ========================================================================== */
.faq-section {
  background-color: #ffffff;
  padding: 80px 40px;
  text-align: center;
}

.faq-section h2 {
  color: #00796b;
  font-size: 2.2rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.faq-container {
  max-width: 800px;
  margin: 40px auto 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background-color: #f9fbf9;
  border: 1px solid #e8f5e9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  border-color: #a5d6a7;
  box-shadow: 0 6px 15px rgba(0, 121, 107, 0.05);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 600;
  color: #00796b;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #f1f8f5;
}

.faq-icon {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: #00796b;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding-bottom: 20px;
}

.faq-answer p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================================================
   Contact Section Styles
   ========================================================================== */
.contact-section {
  background-color: #f0fdf4;
  padding: 80px 40px;
  text-align: center;
}

.contact-section h2 {
  color: #00796b;
  font-size: 2.2rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  max-width: 1200px;
  margin: 40px auto 0;
  text-align: left;
}

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

.contact-info-card, .contact-form-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  border: 1px solid #e2e8f0;
}

.contact-info-card h3, .contact-form-card h3 {
  color: #00796b;
  font-size: 1.5rem;
  margin-bottom: 25px;
  font-weight: 600;
  border-bottom: 2px solid #e8f5e9;
  padding-bottom: 10px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.info-icon {
  width: 45px;
  height: 45px;
  background-color: #e8f5e9;
  color: #00796b;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-item strong {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #666;
  margin-bottom: 3px;
}

.info-item p {
  color: #222;
  font-size: 1rem;
  margin: 0;
}

.contact-link {
  color: #00796b;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.contact-link:hover {
  color: #004d40;
  text-decoration: underline;
}

.whatsapp-btn-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #25D366;
  color: white;
  text-decoration: none;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  width: 100%;
  text-align: center;
  margin-bottom: 25px;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.25);
  transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.whatsapp-btn-inline:hover {
  background-color: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(37, 211, 102, 0.35);
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #e2e8f0;
}

.map-container iframe {
  display: block;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #444;
}

.form-group input, .form-group select, .form-group textarea {
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  background-color: #f8fafc;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: #00796b;
  box-shadow: 0 0 0 3px rgba(0, 121, 107, 0.15);
  background-color: #ffffff;
}

.submit-btn {
  background-color: #00796b;
  color: white;
  border: none;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
  font-family: inherit;
  box-shadow: 0 4px 12px rgba(0, 121, 107, 0.2);
}

.submit-btn:hover {
  background-color: #004d40;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 121, 107, 0.3);
}

.submit-btn:active {
  transform: translateY(0);
}

/* Contact Form Social Media Buttons Styles */
.contact-form-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid #cbd5e1;
}

.contact-form-social span {
  font-size: 0.95rem;
  font-weight: 600;
  color: #475569;
}

.social-icon-row {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.form-social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.form-social-icon svg {
  width: 20px;
  height: 20px;
}

.form-social-icon:hover {
  transform: translateY(-3px) scale(1.08);
}

.form-social-icon.fb {
  background-color: #1877f2;
}

.form-social-icon.fb:hover {
  box-shadow: 0 6px 15px rgba(24, 119, 242, 0.35);
}

.form-social-icon.ig {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.form-social-icon.ig:hover {
  box-shadow: 0 6px 15px rgba(220, 39, 67, 0.35);
}

.form-social-icon.wa {
  background-color: #25d366;
}

.form-social-icon.wa:hover {
  box-shadow: 0 6px 15px rgba(37, 211, 102, 0.35);
}

/* ==========================================================================
   Toast Notification System
   ========================================================================== */
.toast-container {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: #ffffff;
  border-left: 5px solid #00796b;
  color: #333;
  padding: 16px 24px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 300px;
  max-width: 450px;
  transform: translateX(-120%);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
  opacity: 0;
}

.toast.show {
  transform: translateX(0);
  opacity: 1;
}

.toast-success {
  border-left-color: #25D366;
}

.toast-icon {
  color: #25D366;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
}

.toast-content {
  flex-grow: 1;
}

.toast-content h4 {
  margin: 0 0 3px 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: #111;
}

.toast-content p {
  margin: 0;
  font-size: 0.85rem;
  color: #666;
}

/* ==========================================================================
   Reviews Actions & Write Review Button Styles
   ========================================================================== */
.reviews-actions {
  margin-top: 10px;
  margin-bottom: 40px;
}

.write-review-btn {
  background-color: #00796b;
  color: white;
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 600;
  font-family: inherit;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 121, 107, 0.2);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.write-review-btn:hover {
  background-color: #004d40;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 121, 107, 0.35);
}

.write-review-btn:active {
  transform: translateY(0);
}

/* ==========================================================================
   Social Media Links Under Contact Info Styles
   ========================================================================== */
.contact-social {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 2px solid #e8f5e9;
}

.contact-social h4 {
  color: #00796b;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.social-links-grid {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-link-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  color: white;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  flex: 1;
  min-width: 120px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.social-link-item svg {
  flex-shrink: 0;
}

.social-link-item.fb {
  background-color: #1877f2;
}

.social-link-item.fb:hover {
  background-color: #0d62d1;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(24, 119, 242, 0.3);
}

.social-link-item.ig {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link-item.ig:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(220, 39, 67, 0.3);
}

.social-link-item.wa {
  background-color: #25d366;
}

.social-link-item.wa:hover {
  background-color: #1ebea5;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
}

/* ==========================================================================
   Review Cards Expansion and Show More Styles
   ========================================================================== */
.review-card.hidden-review {
  display: none !important;
}

.reviews-grid.expanded .review-card.hidden-review {
  display: flex !important;
  animation: fadeInUp 0.4s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reviews-more-container {
  margin-top: 35px;
  text-align: center;
}

.more-reviews-btn {
  background-color: transparent;
  color: #00796b;
  border: 2px solid #00796b;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-family: inherit;
  font-size: 0.95rem;
}

.more-reviews-btn:hover {
  background-color: #00796b;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 121, 107, 0.15);
}

.more-reviews-btn:active {
  transform: translateY(0);
}

/* ==========================================================================
   Write a Review Modal Dialog Styles
   ========================================================================== */
.review-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.review-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.review-modal-content {
  background-color: #ffffff;
  width: 90%;
  max-width: 500px;
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  position: relative;
  transform: translateY(-30px);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.review-modal-overlay.active .review-modal-content {
  transform: translateY(0);
}

.close-modal-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 2rem;
  color: #888;
  cursor: pointer;
  transition: color 0.2s ease;
  line-height: 1;
}

.close-modal-btn:hover {
  color: #111;
}

.review-modal-content h3 {
  color: #00796b;
  font-size: 1.6rem;
  margin-bottom: 20px;
  font-weight: 700;
  border-bottom: 2px solid #e8f5e9;
  padding-bottom: 10px;
}

.review-modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Star Rating Input styling */
.star-rating-select {
  display: flex;
  gap: 6px;
  font-size: 2rem;
}

.modal-star {
  color: #cbd5e1;
  cursor: pointer;
  transition: color 0.15s ease, transform 0.15s ease;
}

.modal-star:hover {
  transform: scale(1.15);
}

.modal-star.active, .modal-star.hovered {
  color: #ffc107;
}

.review-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.submit-review-btn {
  background-color: #00796b;
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  flex: 1.2;
  box-shadow: 0 4px 10px rgba(0, 121, 107, 0.2);
  transition: all 0.2s ease;
  font-family: inherit;
}

.submit-review-btn:hover {
  background-color: #004d40;
  box-shadow: 0 6px 15px rgba(0, 121, 107, 0.3);
}

.cancel-review-btn {
  background-color: #f1f5f9;
  color: #475569;
  border: 1px solid #cbd5e1;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  flex: 0.8;
  transition: all 0.2s ease;
  font-family: inherit;
}

.cancel-review-btn:hover {
  background-color: #e2e8f0;
}

/* ==========================================================================
   Mobile Responsiveness & Media Queries
   ========================================================================== */

/* Tablet & Mobile Screens (max-width: 768px) */
@media (max-width: 768px) {
  /* Header & Navigation */
  header {
    position: sticky;
    top: 0;
    width: 100%;
    flex-direction: column;
    padding: 15px 20px;
    gap: 12px;
  }
  
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 15px;
    font-size: 0.9rem;
  }

  /* Hero Section */
  .hero {
    height: auto;
    min-height: 80vh;
    padding: 120px 20px 60px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-content {
    padding: 20px;
    width: 100%;
    max-width: 480px;
  }

  /* Section Spacings & Paddings */
  .about, .products, .services, .gallery, .reviews, .faq-section, .contact-section, .transport-section {
    padding: 50px 20px;
  }

  /* About Section Images */
  .about-images {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .about-images img {
    width: 100%;
    max-width: 450px;
  }

  /* Floating Action Buttons spacing adjust */
  .float-btn, .float-whatsapp {
    width: 48px;
    height: 48px;
    right: 15px;
  }

  .float-btn img, .float-whatsapp img {
    width: 22px;
    height: 22px;
  }

  /* Adjust positions to fit smaller screens without overlapping */
  .fb  { bottom: 185px; }
  .ig  { bottom: 130px; }
  .wa  { bottom: 75px; }
  .map { bottom: 20px; }

  /* Gallery Item Heights */
  .gallery-item img {
    height: 200px;
  }

  /* Contact Section Padding & Layout */
  .contact-info-card, .contact-form-card {
    padding: 25px 20px;
  }

  .contact-grid {
    gap: 25px;
  }

  /* Toast positioning for small screens */
  .toast-container {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .toast {
    min-width: auto;
    width: 100%;
  }
}

/* Very Small Mobile Screens (max-width: 480px) */
@media (max-width: 480px) {
  .logo {
    font-size: 1.2rem;
  }

  .nav-links {
    gap: 8px 12px;
  }

  .nav-links a {
    font-size: 0.85rem;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .transport-grid, .product-grid, .services-grid, .reviews-grid {
    grid-template-columns: 1fr;
  }

  .faq-question {
    padding: 16px 18px;
    font-size: 1rem;
  }

  .faq-answer {
    padding: 0 18px;
  }

  .faq-item.active .faq-answer {
    padding-bottom: 16px;
  }

  .submit-btn {
    width: 100%;
  }
}
